Changeset 15 in flair-src for trunk/tools/FlairGCS/src/file_ui.h


Ignore:
Timestamp:
04/08/16 15:40:57 (8 years ago)
Author:
Bayard Gildas
Message:

sources reformatted with flair-format-dir script

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/FlairGCS/src/file_ui.h

    r10 r15  
    1515class QCloseEvent;
    1616
    17 class file_ui:public QObject
    18 {
    19     Q_OBJECT
     17class file_ui : public QObject {
     18  Q_OBJECT
    2019
    21     public:
    22         file_ui();
    23         ~file_ui();
    24         void log(QString text);
    25         void addFile(QString file_path);
    26         void endOfFiles(void);
     20public:
     21  file_ui();
     22  ~file_ui();
     23  void log(QString text);
     24  void addFile(QString file_path);
     25  void endOfFiles(void);
    2726
    28     private:
    29         QDialog *dialog;
    30         QStringList *file_names;
    31         QTextEdit *log_text,*input_text;
    32         QPushButton *ok_button;
    33         QComboBox *csv_combo;
    34         void save_comment(void);
    35         void save_csv(void);
    36         void save_txt(void);
    37         void dbt2csv(QString file_path);
    38         bool is_greater(qint64 ref_us,qint64 csv_us,int ref_ns,int csv_ns);
    39         void closeEvent(QCloseEvent * e);
    40         bool input_cleared;
     27private:
     28  QDialog *dialog;
     29  QStringList *file_names;
     30  QTextEdit *log_text, *input_text;
     31  QPushButton *ok_button;
     32  QComboBox *csv_combo;
     33  void save_comment(void);
     34  void save_csv(void);
     35  void save_txt(void);
     36  void dbt2csv(QString file_path);
     37  bool is_greater(qint64 ref_us, qint64 csv_us, int ref_ns, int csv_ns);
     38  void closeEvent(QCloseEvent *e);
     39  bool input_cleared;
    4140
    42     private slots:
    43         void save(void);
    44         void clearInputText(void);
     41private slots:
     42  void save(void);
     43  void clearInputText(void);
    4544
    46     signals:
    47         void showDialog(void);
    48         void appendToLog(QString);
    49         void finished();
     45signals:
     46  void showDialog(void);
     47  void appendToLog(QString);
     48  void finished();
    5049};
    5150
Note: See TracChangeset for help on using the changeset viewer.