|
|
|
@ -60,7 +60,7 @@ const char *descrOfConnection = I18N_NOOP("test of conection from 5");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
KNutMainWindow::KNutMainWindow(TQStringList *tListKNutEvent, KNutVarData::upsInfoDef* tActiveUpsInfo, KNutVarData::SettingDataDef* tSettingData, KNutUpsData* tUpsRecords, KNutVarData* tAnalogRecords, TQWidget* parent, const char *name) : KMainWindow(parent, name),
|
|
|
|
|
KNutMainWindow::KNutMainWindow(TQStringList *tListKNutEvent, KNutVarData::upsInfoDef* tActiveUpsInfo, KNutVarData::SettingDataDef* tSettingData, KNutUpsData* tUpsRecords, KNutVarData* tAnalogRecords, TQWidget* parent, const char *name) : TDEMainWindow(parent, name),
|
|
|
|
|
m_listKNutEvent(tListKNutEvent), m_activeUpsInfo(tActiveUpsInfo),m_settingData (tSettingData),
|
|
|
|
|
m_upsRecords(tUpsRecords), m_analogRecords (tAnalogRecords) {
|
|
|
|
|
|
|
|
|
@ -732,7 +732,7 @@ void KNutMainWindow::initToolBar ( void ) {
|
|
|
|
|
// bude se pouze vybirat-------------------^^^
|
|
|
|
|
KComboBox *combo = toolBar("mainToolBar")->getCombo(1);
|
|
|
|
|
combo->clear();
|
|
|
|
|
toolBar("mainToolBar")->setBarPos (KToolBar::Top);
|
|
|
|
|
toolBar("mainToolBar")->setBarPos (TDEToolBar::Top);
|
|
|
|
|
//sets toolbarr no movable / nastavime toolBar nepresouvatelny
|
|
|
|
|
setToolBarsMovable(false);
|
|
|
|
|
}
|
|
|
|
@ -740,14 +740,14 @@ void KNutMainWindow::initToolBar ( void ) {
|
|
|
|
|
|
|
|
|
|
void KNutMainWindow::initAction ( void ) {
|
|
|
|
|
|
|
|
|
|
// KAction and KStdAction must be to make before command createGUI, function initToolBar is runed after create GUI
|
|
|
|
|
// TDEAction and KStdAction must be to make before command createGUI, function initToolBar is runed after create GUI
|
|
|
|
|
m_quit = KStdAction::quit (TQT_TQOBJECT(this), TQT_SLOT (slotCloseKnutClient()), actionCollection());
|
|
|
|
|
m_quit->setStatusText(i18n("Quits the application"));
|
|
|
|
|
|
|
|
|
|
m_preferencesUps = KStdAction::preferences (TQT_TQOBJECT(this), TQT_SLOT (slotPreferencesUps()), actionCollection(),"options_configure");
|
|
|
|
|
new KAction(i18n("&Showing UPS variables and commands"),0,TQT_TQOBJECT(this), TQT_SLOT(slotPrintUPSVars()),actionCollection(),"printupsvars");
|
|
|
|
|
new KAction(i18n("&Running instant commands"),0,TQT_TQOBJECT(this), TQT_SLOT(slotInstComms()),actionCollection(),"instcomms");
|
|
|
|
|
new KAction(i18n("Setting R&W variables"),0,TQT_TQOBJECT(this), TQT_SLOT(slotRWVars()),actionCollection(),"rwvars");
|
|
|
|
|
new TDEAction(i18n("&Showing UPS variables and commands"),0,TQT_TQOBJECT(this), TQT_SLOT(slotPrintUPSVars()),actionCollection(),"printupsvars");
|
|
|
|
|
new TDEAction(i18n("&Running instant commands"),0,TQT_TQOBJECT(this), TQT_SLOT(slotInstComms()),actionCollection(),"instcomms");
|
|
|
|
|
new TDEAction(i18n("Setting R&W variables"),0,TQT_TQOBJECT(this), TQT_SLOT(slotRWVars()),actionCollection(),"rwvars");
|
|
|
|
|
|
|
|
|
|
///////////////////
|
|
|
|
|
// KStdAction::showToolbar (TQT_TQOBJECT(this), TQT_SLOT (slotShowToolBar()), actionCollection());
|
|
|
|
@ -775,10 +775,10 @@ void KNutMainWindow::initAction ( void ) {
|
|
|
|
|
|
|
|
|
|
KStdAction::showStatusbar (TQT_TQOBJECT(this), TQT_SLOT (slotShowStatusBar()), actionCollection());
|
|
|
|
|
|
|
|
|
|
m_descriptionAction = new KToggleAction(i18n("&Using descriptions"),0,TQT_TQOBJECT(this), TQT_SLOT(slotDescription()),actionCollection(),"use_description");
|
|
|
|
|
m_descriptionAction = new TDEToggleAction(i18n("&Using descriptions"),0,TQT_TQOBJECT(this), TQT_SLOT(slotDescription()),actionCollection(),"use_description");
|
|
|
|
|
|
|
|
|
|
KStdAction::keyBindings( TQT_TQOBJECT(this), TQT_SLOT(slotConfigureKeys()),actionCollection());
|
|
|
|
|
new KAction (i18n("Reconnect"),"reload",Key_F5,TQT_TQOBJECT(this), TQT_SLOT(slotRefreshConnection()),actionCollection(),"reconnect");
|
|
|
|
|
new TDEAction (i18n("Reconnect"),"reload",Key_F5,TQT_TQOBJECT(this), TQT_SLOT(slotRefreshConnection()),actionCollection(),"reconnect");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void KNutMainWindow::initVars ( void ) {
|
|
|
|
|