summaryrefslogtreecommitdiff
path: root/ui/qt/dissector_tables_dialog.ui
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-09-25 14:33:54 -0700
committerGerald Combs <gerald@wireshark.org>2015-09-27 16:19:05 +0000
commit6d10efc6dd66c70110581b8c49cc3da0f0a72a25 (patch)
tree6f922060b2096a8747763eaecb13522b918d109e /ui/qt/dissector_tables_dialog.ui
parentd4b3a96830d580572ac42e7d03b78c47fe34bbf2 (diff)
downloadwireshark-6d10efc6dd66c70110581b8c49cc3da0f0a72a25.tar.gz
Qt: Add the Dissector Tables dialog.
Add the "Internals" menu under the View menu instead of at the top level for now at least. Add the Dissector Tables dialog there. Change-Id: Ieb23b0015591bac196e4ef94e3443832288333f9 Reviewed-on: https://code.wireshark.org/review/10654 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/qt/dissector_tables_dialog.ui')
-rw-r--r--ui/qt/dissector_tables_dialog.ui78
1 files changed, 78 insertions, 0 deletions
diff --git a/ui/qt/dissector_tables_dialog.ui b/ui/qt/dissector_tables_dialog.ui
new file mode 100644
index 0000000000..8a882d8422
--- /dev/null
+++ b/ui/qt/dissector_tables_dialog.ui
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>DissectorTablesDialog</class>
+ <widget class="QDialog" name="DissectorTablesDialog">
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>400</width>
+ <height>300</height>
+ </rect>
+ </property>
+ <property name="windowTitle">
+ <string>Dialog</string>
+ </property>
+ <layout class="QVBoxLayout" name="verticalLayout">
+ <item>
+ <widget class="QTreeWidget" name="tableTreeWidget">
+ <column>
+ <property name="text">
+ <string>Table Name</string>
+ </property>
+ </column>
+ <column>
+ <property name="text">
+ <string>Short Name</string>
+ </property>
+ </column>
+ </widget>
+ </item>
+ <item>
+ <widget class="QDialogButtonBox" name="buttonBox">
+ <property name="orientation">
+ <enum>Qt::Horizontal</enum>
+ </property>
+ <property name="standardButtons">
+ <set>QDialogButtonBox::Close</set>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ <resources/>
+ <connections>
+ <connection>
+ <sender>buttonBox</sender>
+ <signal>accepted()</signal>
+ <receiver>DissectorTablesDialog</receiver>
+ <slot>accept()</slot>
+ <hints>
+ <hint type="sourcelabel">
+ <x>248</x>
+ <y>254</y>
+ </hint>
+ <hint type="destinationlabel">
+ <x>157</x>
+ <y>274</y>
+ </hint>
+ </hints>
+ </connection>
+ <connection>
+ <sender>buttonBox</sender>
+ <signal>rejected()</signal>
+ <receiver>DissectorTablesDialog</receiver>
+ <slot>reject()</slot>
+ <hints>
+ <hint type="sourcelabel">
+ <x>316</x>
+ <y>260</y>
+ </hint>
+ <hint type="destinationlabel">
+ <x>286</x>
+ <y>274</y>
+ </hint>
+ </hints>
+ </connection>
+ </connections>
+</ui>