~cyril-jacquet/plume-creator/devel

« back to all changes in this revision

Viewing changes to src/menubar.cpp

  • Committer: Cyril Jacquet
  • Date: 2013-11-07 04:45:49 UTC
  • Revision ID: git-v1:38361c408fd4ab7f9ac51c0a8a40ec45f28e3d31
0.66.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
 
117
117
    connect(settingsDialog, SIGNAL(accepted()), this, SLOT(applyConfig()));
118
118
    connect(settingsDialog, SIGNAL(setDisplayModeSignal(QString, bool)), this, SIGNAL(setDisplayModeSignal(QString, bool)));
119
 
    connect(settingsDialog, SIGNAL(resetFullscreenTextWidthSignal()), this, SIGNAL(resetFullscreenTextWidthSignal()));
120
119
    connect(settingsDialog, SIGNAL(changeAllDocsTextStylesSignal()), textStyles, SLOT(changeAllDocsTextStyles()));
121
120
    connect(settingsDialog, SIGNAL(spellDictsChangedSignal(QString)), hub, SLOT(spellDictsChangedSlot(QString)));
122
121
    connect(settingsDialog, SIGNAL(applyStyleSheetSignal()), this, SIGNAL(applyStyleSheetSignal()));
126
125
 
127
126
    settingsDialog->setModal(true);
128
127
    settingsDialog->exec();
129
 
    emit resetFullscreenTextWidthSignal();
130
128
    //    //    Config config;
131
129
    //    ConfigDialog dialog(/*config, */this);
132
130
    //    if (dialog.exec() == QDialog::Accepted) {
501
499
    showToolsDockAct->setToolTip(tr("Show the tool dock"));
502
500
    connect(showToolsDockAct, SIGNAL(toggled(bool)), this, SIGNAL(showToolsDockSignal(bool)));
503
501
 
504
 
    launchOutlinerAct = new QAction(QIcon(":/pics/view-time-schedule.png"),tr("&Outliner"),this);
 
502
    launchOutlinerAct = new QAction(QIcon(":/pics/view-time-schedule.png"),tr("&Workbench"),this);
505
503
    launchOutlinerAct->setShortcut(Qt::Key_F6);
506
 
    launchOutlinerAct->setToolTip(tr("Show the outliner"));
 
504
    launchOutlinerAct->setToolTip(tr("Show the workbench"));
507
505
    connect(launchOutlinerAct, SIGNAL(triggered()), this, SIGNAL(launchOutlinerSignal()));
508
506
 
509
507
    showFullscreenAct = new QAction(QIcon(":/pics/view-fullscreen.png"),tr("&Fullscreen"), this);