mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-18 08:31:16 +02:00
2016-05-24 Fred Gleason <fredg@paravelsystems.com>
* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
This commit is contained in:
@@ -4,8 +4,6 @@
|
||||
//
|
||||
// Stefan Gabriel <stg@st-gabriel.de>
|
||||
//
|
||||
//
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
// published by the Free Software Foundation.
|
||||
@@ -20,8 +18,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
|
||||
|
||||
#ifndef EDIT_SCHEDCODERULES_H
|
||||
#define EDIT_SCHEDCODERULES_H
|
||||
|
||||
@@ -39,36 +35,36 @@ class QSpinBox;
|
||||
|
||||
class editSchedCodeRules : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_OBJECT
|
||||
public:
|
||||
editSchedCodeRules(QListViewItem *item, SchedRulesList *sched_rules_list,
|
||||
QWidget *parent=0);
|
||||
~editSchedCodeRules();
|
||||
QSize sizeHint() const;
|
||||
QSizePolicy sizePolicy() const;
|
||||
|
||||
public:
|
||||
editSchedCodeRules(QListViewItem *item, SchedRulesList *sched_rules_list, QWidget* parent = 0, const char* name = 0);
|
||||
~editSchedCodeRules();
|
||||
QSize sizeHint() const;
|
||||
QSizePolicy sizePolicy() const;
|
||||
|
||||
private:
|
||||
QPushButton* buttonOk;
|
||||
QPushButton* buttonCancel;
|
||||
QLabel* label_code_name;
|
||||
QLabel* label_max_row;
|
||||
QLabel* label_min_wait;
|
||||
QLabel* label_not_after;
|
||||
QLabel* label_or_after;
|
||||
QLabel* label_or_after_II;
|
||||
QSpinBox* spinBox_max_row;
|
||||
QSpinBox* spinBox_min_wait;
|
||||
QLabel* label_code;
|
||||
QComboBox* comboBox_not_after;
|
||||
QComboBox* comboBox_or_after;
|
||||
QComboBox* comboBox_or_after_II;
|
||||
QLabel* label_description;
|
||||
QListViewItem *item_edit;
|
||||
|
||||
private slots:
|
||||
void okData();
|
||||
void cancelData();
|
||||
|
||||
private:
|
||||
QPushButton* buttonOk;
|
||||
QPushButton* buttonCancel;
|
||||
QLabel* label_code_name;
|
||||
QLabel* label_max_row;
|
||||
QLabel* label_min_wait;
|
||||
QLabel* label_not_after;
|
||||
QLabel* label_or_after;
|
||||
QLabel* label_or_after_II;
|
||||
QSpinBox* spinBox_max_row;
|
||||
QSpinBox* spinBox_min_wait;
|
||||
QLabel* label_code;
|
||||
QComboBox* comboBox_not_after;
|
||||
QComboBox* comboBox_or_after;
|
||||
QComboBox* comboBox_or_after_II;
|
||||
QLabel* label_description;
|
||||
QListViewItem *item_edit;
|
||||
|
||||
protected:
|
||||
void closeEvent(QCloseEvent *e);
|
||||
};
|
||||
|
Reference in New Issue
Block a user