Changeset 628500a5d6 in tspsg for src/mainwindow.cpp


Ignore:
Timestamp:
Mar 31, 2013, 9:25:38 PM (11 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.4.170-beta2-bb10
Children:
c039ebbe82
Parents:
ccdffe3a5f
git-author:
Oleksii Serdiuk <contacts@…> (03/31/13 21:25:38)
git-committer:
Oleksii Serdiuk <contacts@…> (03/31/13 21:46:09)
Message:

UI fixes:

  • made graph smaller;
  • made font smaller;
  • made output text color black;
  • start editing table cells on single tap;
  • don't show keyboard in about dialog.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mainwindow.cpp

    rccdffe3a5f r628500a5d6  
    5656    setupUi();
    5757    setAcceptDrops(true);
     58
     59#ifdef Q_OS_BLACKBERRY
     60    taskView->setEditTriggers(QAbstractItemView::AllEditTriggers);
     61#endif
    5862
    5963    initDocStyleSheet();
     
    630634    txtAbout->moveCursor(QTextCursor::Start);
    631635    txtAbout->setFrameShape(QFrame::NoFrame);
     636#ifdef Q_OS_BLACKBERRY
     637    txtAbout->setAttribute(Qt::WA_InputMethodEnabled, false);
     638#endif
    632639
    633640//      txtCredits->setWordWrapMode(QTextOption::NoWrap);
     
    636643    txtCredits->moveCursor(QTextCursor::Start);
    637644    txtCredits->setFrameShape(QFrame::NoFrame);
     645#ifdef Q_OS_BLACKBERRY
     646    txtCredits->setAttribute(Qt::WA_InputMethodEnabled, false);
     647#endif
    638648
    639649    txtLicense->setWordWrapMode(QTextOption::NoWrap);
     
    642652    txtLicense->moveCursor(QTextCursor::Start);
    643653    txtLicense->setFrameShape(QFrame::NoFrame);
     654#ifdef Q_OS_BLACKBERRY
     655    txtLicense->setAttribute(Qt::WA_InputMethodEnabled, false);
     656#endif
    644657
    645658    bb->button(QDialogButtonBox::Ok)->setCursor(QCursor(Qt::PointingHandCursor));
     
    743756    pd.setCancelButton(cancel);
    744757    pd.setMaximum(n);
     758    pd.setAutoClose(false);
    745759    pd.setAutoReset(false);
    746760    pd.setLabelText(tr("Calculating optimal route..."));
Note: See TracChangeset for help on using the changeset viewer.