aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/column_preferences_frame.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-01-23 19:04:36 +0000
committerGerald Combs <gerald@wireshark.org>2013-01-23 19:04:36 +0000
commit21e66f0c6f38d20dc4ac3968324fff0959113b14 (patch)
treee801135c51e407d67516e1969c1ef788af48292e /ui/qt/column_preferences_frame.h
parentd59e9cf574976b1e9849f5c35be1fd2abdf8ed6d (diff)
Add column preferences.
svn path=/trunk/; revision=47231
Diffstat (limited to 'ui/qt/column_preferences_frame.h')
-rw-r--r--ui/qt/column_preferences_frame.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/ui/qt/column_preferences_frame.h b/ui/qt/column_preferences_frame.h
new file mode 100644
index 0000000000..3eabae0cc4
--- /dev/null
+++ b/ui/qt/column_preferences_frame.h
@@ -0,0 +1,76 @@
+/* column_preferences_frame.h
+ *
+ * $Id$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef COLUMN_PREFERENCES_FRAME_H
+#define COLUMN_PREFERENCES_FRAME_H
+
+#include <QFrame>
+#include <QComboBox>
+#include <QTreeWidgetItem>
+
+namespace Ui {
+class ColumnPreferencesFrame;
+}
+
+class ColumnPreferencesFrame : public QFrame
+{
+ Q_OBJECT
+
+public:
+ explicit ColumnPreferencesFrame(QWidget *parent = 0);
+ ~ColumnPreferencesFrame();
+
+ void unstash();
+
+protected:
+ void showEvent(QShowEvent *evt);
+ void keyPressEvent(QKeyEvent *evt);
+
+private:
+ Ui::ColumnPreferencesFrame *ui;
+
+ int cur_column_;
+ QLineEdit *cur_line_edit_;
+ QString saved_col_string_;
+ QComboBox *cur_combo_box_;
+ int saved_combo_idx_;
+
+ void addColumn(bool visible, const char *title, int fmt, const char *custom_field, int custom_occurrence);
+ void updateWidgets(void);
+
+private slots:
+ void on_columnTreeWidget_currentItemChanged(QTreeWidgetItem *current, QTreeWidgetItem *previous);
+ void on_columnTreeWidget_itemActivated(QTreeWidgetItem *item, int column);
+ void lineEditDestroyed();
+ void comboDestroyed();
+ void columnTitleEditingFinished();
+ void columnTypeCurrentIndexChanged(int index);
+ void customFieldTextChanged(QString);
+ void customFieldEditingFinished();
+ void customOccurrenceTextChanged(QString);
+ void customOccurrenceEditingFinished();
+ void on_newToolButton_clicked();
+ void on_deleteToolButton_clicked();
+};
+
+#endif // COLUMN_PREFERENCES_FRAME_H