|
|
|
@ -519,9 +519,9 @@ MainWidget::MainWidget ( TDEAboutData *about, bool tren, TQWidget *parent, const
|
|
|
|
|
m->setCheckable ( true );
|
|
|
|
|
|
|
|
|
|
KHelpMenu *h = new KHelpMenu ( tray, about );
|
|
|
|
|
m->insertItem ( "Font ...", this, TQT_SLOT ( chooseFont() ) );
|
|
|
|
|
m->insertItem ( i18n("Font ..."), this, TQT_SLOT ( chooseFont() ) );
|
|
|
|
|
|
|
|
|
|
mnu_autores = m->insertItem( "Auto resize font",this, TQT_SLOT ( toggleFontAutoRes() ) );
|
|
|
|
|
mnu_autores = m->insertItem( i18n("Auto resize font"),this, TQT_SLOT ( toggleFontAutoRes() ) );
|
|
|
|
|
bool fnt_autores = cfg->readBoolEntry("autoresfont",true);
|
|
|
|
|
m->setItemChecked(mnu_autores, fnt_autores);
|
|
|
|
|
|
|
|
|
@ -529,7 +529,7 @@ MainWidget::MainWidget ( TDEAboutData *about, bool tren, TQWidget *parent, const
|
|
|
|
|
m->insertItem ( i18n ("Keys color"), this, TQT_SLOT ( chooseKeysColor() ) );
|
|
|
|
|
|
|
|
|
|
m->insertSeparator();
|
|
|
|
|
mnu_dock = m->insertItem ( "Dock widget", this, TQT_SLOT ( showDock() ) );
|
|
|
|
|
mnu_dock = m->insertItem ( i18n("Dock widget"), this, TQT_SLOT ( showDock() ) );
|
|
|
|
|
bool show_dock = cfg->readBoolEntry("showdock",false);
|
|
|
|
|
m->setItemChecked(mnu_dock, show_dock);
|
|
|
|
|
|
|
|
|
@ -539,7 +539,7 @@ MainWidget::MainWidget ( TDEAboutData *about, bool tren, TQWidget *parent, const
|
|
|
|
|
|
|
|
|
|
//m->insertItem("Configure", this, TQT_SLOT(config()));
|
|
|
|
|
m->insertSeparator();
|
|
|
|
|
m->insertItem ( "Help", h->menu() );
|
|
|
|
|
m->insertItem ( i18n("Help"), h->menu() );
|
|
|
|
|
|
|
|
|
|
tray->show();
|
|
|
|
|
|
|
|
|
|