~ubuntu-branches/ubuntu/utopic/knutclient/utopic

« back to all changes in this revision

Viewing changes to src/knutprefdlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Quette
  • Date: 2009-03-30 09:29:30 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090330092930-fohi8lm9okac7mtl
Tags: 0.9.5-1
* New upstream release
* debian/rules: remove the empty TODO file from dh_installdocs
* debian/control: add a missing comma on Depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
class QRadioButton;
41
41
class QSpinBox;
42
42
 
 
43
 
43
44
/**
44
45
  *@author Daniel Prynych
45
46
  */
49
50
 * Tato trida je vytvari konfiguracni dialog.
50
51
 * @author Daniel Prynych
51
52
 * @short Konfiguracni dialog
52
 
 * @version 0.7.1
 
53
 * @version 0.8
53
54
 */
54
55
class KNutPrefDlg : public KDialogBase
55
56
{
113
114
 *
114
115
 * @since  0.5
115
116
 **/
116
 
  KNutPrefDlg(KNutUpsData* const upsData, KNutVarData* const analogData, SettingDataDef* const settingData, const QString upsName, QWidget* parent = 0, const char* name = 0, const bool modal = true);
 
117
  KNutPrefDlg(KNutUpsData* const upsData, KNutVarData* const analogData, KNutVarData::SettingDataDef* const settingData, const QString upsName, QWidget* parent = 0, const char* name = 0, const bool modal = true);
117
118
 
118
119
/**
119
120
 * @since  0.3
265
266
  QString m_activeUpsName; // name of UPS which is active
266
267
  KNutUpsData* m_myUpsData;
267
268
  KNutVarData* m_myAnalogData;
268
 
  SettingDataDef* m_prefData;
 
269
  KNutVarData::SettingDataDef* m_settingData;
269
270
  KNutNewUpsDlg* newUpsDlg;
270
271
 
271
272
  KListBox* m_listBox2; // uses in part UPS, contain name of UPS
277
278
  KColorButton *m_BGButton;
278
279
  QCheckBox *m_checkBoxCbc;
279
280
  QCheckBox *m_checkBoxAys;
280
 
  QCheckBox *m_checkBoxMW;
 
281
//  QCheckBox *m_checkBoxMW;
281
282
  QCheckBox *m_checkBoxMesW;
 
283
  KComboBox *m_comboBoxMainWindow;
282
284
  QCheckBox *m_xfer;
283
285
 
284
286
  QCheckBox *m_checkBoxOver;
345
347
  QFont m_mPanelFont; // Main panel font
346
348
 
347
349
  int m_settingFont; // which font is setted (selected)
 
350
 
 
351
  QPixmap m_panelPix;
 
352
  QPixmap m_mSetPix;
 
353
  QPixmap m_upsesPix;
 
354
  QPixmap m_analogPix;
 
355
  QPixmap m_dockPix;
 
356
 
348
357
};
349
358
 
350
359
#endif