language stringlengths 0 24 | filename stringlengths 9 214 | code stringlengths 99 9.93M |
|---|---|---|
C/C++ | wireshark/ui/logray/logray_main_window.h | /** @file
*
* Logray - Event log analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef LOGRAY_MAIN_WINDOW_H
#define LOGRAY_MAIN_WINDOW_H
/** @defgroup main_window_group Main window
* The main window has the following submodules... |
User Interface | wireshark/ui/logray/logray_main_window.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>LograyMainWindow</class>
<widget class="QMainWindow" name="LograyMainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>960</width>
<height>768</height>
</rect>
</property>
<property name="acceptDrops">
<b... |
C++ | wireshark/ui/logray/logray_main_window_slots.cpp | /* main_window_slots.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <config.h>
// Qt 5.5.0 + Visual C++ 2013
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4996)
#endif
... |
C/C++ | wireshark/ui/macosx/cocoa_bridge.h | /** @file
*
* This code was taken directly from:
* https://forum.qt.io/topic/82609/remove-native-mac-menu-items-such-as-show-tab-bar
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef COCOABR... |
wireshark/ui/macosx/cocoa_bridge.mm | /* cocoa_bridge.mm
*
* This code was taken directly from:
* https://forum.qt.io/topic/82609/remove-native-mac-menu-items-such-as-show-tab-bar
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#inclu... | |
C/C++ | wireshark/ui/macosx/macos_compat.h | /** @file
*
* This code was taken directly from:
* https://forum.qt.io/topic/82609/remove-native-mac-menu-items-such-as-show-tab-bar
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or... |
C/C++ | wireshark/ui/macosx/sparkle_bridge.h | /** @file
*
* C wrapper for the Sparkle API
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
// XXX We could alternatively do this via C++:
// https://github.com/sparkle-project/Sparkle/issues/1137
... |
wireshark/ui/macosx/sparkle_bridge.m | /* sparkle_bridge.m
*
* C wrapper for the Sparkle API
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <ui/macosx/sparkle_bridge.h>
#import <Cocoa/Cocoa.h>
#import <Sparkle.h>
// https:/... | |
C++ | wireshark/ui/qt/about_dialog.cpp | /* about_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include "about_dialog.h"
#include <ui_about_dialog.h>
#include "main_application.h"
#include <wsutil/filesys... |
C/C++ | wireshark/ui/qt/about_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef ABOUT_DIALOG_H
#define ABOUT_DIALOG_H
#include "config.h"
#include <ui/qt/models/astringlist_list_model.h>
#include <QDialog>
#inc... |
User Interface | wireshark/ui/qt/about_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>AboutDialog</class>
<widget class="QDialog" name="AboutDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>740</width>
<height>650</height>
</rect>
</property>
<property name="windowTitle">
<string>About Wi... |
C++ | wireshark/ui/qt/accordion_frame.cpp | /* accordion_frame.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <glib.h>
#include "accordion_frame.h"
#include "ui/util.h"
#include <QLayout>
#include <QPropert... |
C/C++ | wireshark/ui/qt/accordion_frame.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef ACCORDION_FRAME_H
#define ACCORDION_FRAME_H
#include <QFrame>
class QPropertyAnimation;
class AccordionFrame : public QFrame
{
... |
C++ | wireshark/ui/qt/address_editor_frame.cpp | /* address_editor_frame.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <glib.h>
#include "file.h"
#include "frame_tvbuff.h"
#include "epan/addr_resolv.h"
#include... |
C/C++ | wireshark/ui/qt/address_editor_frame.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef ADDRESS_EDITOR_FRAME_H
#define ADDRESS_EDITOR_FRAME_H
#include "accordion_frame.h"
#include "capture_file.h"
namespace Ui {
class ... |
User Interface | wireshark/ui/qt/address_editor_frame.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>AddressEditorFrame</class>
<widget class="AccordionFrame" name="AddressEditorFrame">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>833</width>
<height>34</height>
</rect>
</property>
<property name="windowTitle">... |
C++ | wireshark/ui/qt/bluetooth_att_server_attributes_dialog.cpp | /* bluetooth_att_server_attributes_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "bluetooth_att_server_attributes_dialog.h"
#include <ui_bluetooth_att_server_attributes_dialog.h... |
C/C++ | wireshark/ui/qt/bluetooth_att_server_attributes_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef BLUETOOTH_ATT_SERVER_ATTRIBUTES_DIALOG_H
#define BLUETOOTH_ATT_SERVER_ATTRIBUTES_DIALOG_H
#include <config.h>
#include <glib.h>
#i... |
User Interface | wireshark/ui/qt/bluetooth_att_server_attributes_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>BluetoothAttServerAttributesDialog</class>
<widget class="QDialog" name="BluetoothAttServerAttributesDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>880</width>
<height>477</height>
</rect>
</property>
<pr... |
C++ | wireshark/ui/qt/bluetooth_devices_dialog.cpp | /* bluetooth_devices_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "bluetooth_devices_dialog.h"
#include <ui_bluetooth_devices_dialog.h>
#include "bluetooth_device_dialog.h"
#... |
C/C++ | wireshark/ui/qt/bluetooth_devices_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef BLUETOOTH_DEVICES_DIALOG_H
#define BLUETOOTH_DEVICES_DIALOG_H
#include "config.h"
#include <glib.h>
#include "wireshark_dialog.h"
... |
User Interface | wireshark/ui/qt/bluetooth_devices_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>BluetoothDevicesDialog</class>
<widget class="QDialog" name="BluetoothDevicesDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>880</width>
<height>477</height>
</rect>
</property>
<property name="baseSize">
... |
C++ | wireshark/ui/qt/bluetooth_device_dialog.cpp | /* bluetooth_device_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "bluetooth_device_dialog.h"
#include <ui_bluetooth_device_dialog.h>
#include <ui/qt/utils/color_utils.h>
#inc... |
C/C++ | wireshark/ui/qt/bluetooth_device_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef BLUETOOTH_DEVICE_DIALOG_H
#define BLUETOOTH_DEVICE_DIALOG_H
#include "config.h"
#include <glib.h>
#include "wireshark_dialog.h"
#i... |
User Interface | wireshark/ui/qt/bluetooth_device_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>BluetoothDeviceDialog</class>
<widget class="QDialog" name="BluetoothDeviceDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>544</width>
<height>679</height>
</rect>
</property>
<property name="baseSize">
... |
C++ | wireshark/ui/qt/bluetooth_hci_summary_dialog.cpp | /* bluetooth_hci_summary_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "bluetooth_hci_summary_dialog.h"
#include <ui_bluetooth_hci_summary_dialog.h>
#include "bluetooth_device_... |
C/C++ | wireshark/ui/qt/bluetooth_hci_summary_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef BLUETOOTH_HCI_SUMMARY_DIALOG_H
#define BLUETOOTH_HCI_SUMMARY_DIALOG_H
#include "config.h"
#include <glib.h>
#include "wireshark_di... |
User Interface | wireshark/ui/qt/bluetooth_hci_summary_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>BluetoothHciSummaryDialog</class>
<widget class="QDialog" name="BluetoothHciSummaryDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>880</width>
<height>477</height>
</rect>
</property>
<property name="baseS... |
C++ | wireshark/ui/qt/byte_view_tab.cpp | /* byte_view_tab.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "byte_view_tab.h"
#include <QApplication>
#include <QClipboard>
#include <QMimeData>
#include <QTabBar>
#include "cfile... |
C/C++ | wireshark/ui/qt/byte_view_tab.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef BYTE_VIEW_TAB_H
#define BYTE_VIEW_TAB_H
#include <config.h>
#include <epan/packet.h>
#include <epan/proto.h>
#include <epan/tvbuff.... |
C/C++ | wireshark/ui/qt/capture_event.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CAPTURE_EVENT_H
#define CAPTURE_EVENT_H
#include <QEvent>
typedef struct _capture_session capture_session;
struct _packet_info;
c... |
C++ | wireshark/ui/qt/capture_file.cpp | /* capture_file.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "capture_file.h"
/*
* @file Capture file class
*
* Wraps the capture_file struct, cfile global, and callbacks.
*/
#i... |
C/C++ | wireshark/ui/qt/capture_file.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CAPTURE_FILE_H
#define CAPTURE_FILE_H
#include <QObject>
#include <config.h>
#include <glib.h>
#include "cfile.h"
#include "captu... |
C++ | wireshark/ui/qt/capture_file_dialog.cpp | /* capture_file_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include "file.h"
#include <wiretap/wtap.h>
#include "packet_range_group_box.h"
#include "capture_fil... |
C/C++ | wireshark/ui/qt/capture_file_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CAPTURE_FILE_DIALOG_H
#define CAPTURE_FILE_DIALOG_H
#include <ui/qt/widgets/wireshark_file_dialog.h>
#ifndef Q_OS_WIN
#include <ui/... |
C++ | wireshark/ui/qt/capture_file_properties_dialog.cpp | /* capture_file_properties_dialog.cpp
*
* GSoC 2013 - QtShark
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "capture_file_properties_dialog.h"
#include <ui_capture_file_properties_dialog... |
C/C++ | wireshark/ui/qt/capture_file_properties_dialog.h | /** @file
*
* GSoC 2013 - QtShark
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CAPTURE_FILE_PROPERTIES_DIALOG_H
#define CAPTURE_FILE_PROPERTIES_DIALOG_H
#include <config.h>
#include <g... |
User Interface | wireshark/ui/qt/capture_file_properties_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CaptureFilePropertiesDialog</class>
<widget class="QDialog" name="CaptureFilePropertiesDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>799</width>
<height>585</height>
</rect>
</property>
<property name="s... |
C++ | wireshark/ui/qt/capture_filter_syntax_worker.cpp | /* capture_filter_syntax_worker.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#ifdef HAVE_LIBPCAP
#include <glib.h>
#ifdef __MINGW32__
#include <_bsd_types.h>
#endif
#incl... |
C/C++ | wireshark/ui/qt/capture_filter_syntax_worker.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CAPTURE_FILTER_SYNTAX_WORKER_H
#define CAPTURE_FILTER_SYNTAX_WORKER_H
#include <QMutex>
#include <QObject>
#include <QWaitCondition>... |
C++ | wireshark/ui/qt/capture_info_dialog.cpp | /* capture_info_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include "wireshark.h"
#include "ui/capture_info.h"
#include "epan/capture_dissectors.h"
#include "ep... |
C/C++ | wireshark/ui/qt/capture_info_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CAPTURE_INFO_DIALOG_H
#define CAPTURE_INFO_DIALOG_H
#include "geometry_state_dialog.h"
#include <QAbstractTableModel>
#include <QEl... |
User Interface | wireshark/ui/qt/capture_info_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CaptureInfoDialog</class>
<widget class="QDialog" name="CaptureInfoDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>275</height>
</rect>
</property>
<property name="sizeGripEnabled">
... |
C++ | wireshark/ui/qt/capture_options_dialog.cpp | /* capture_options_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <wireshark.h>
#include "capture_options_dialog.h"
#include <ui/qt/widgets/capture_filter_c... |
C/C++ | wireshark/ui/qt/capture_options_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CAPTURE_OPTIONS_DIALOG_H
#define CAPTURE_OPTIONS_DIALOG_H
#include <config.h>
#ifdef HAVE_LIBPCAP
#include <ui/qt/models/interfac... |
User Interface | wireshark/ui/qt/capture_options_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CaptureOptionsDialog</class>
<widget class="QDialog" name="CaptureOptionsDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>950</width>
<height>440</height>
</rect>
</property>
<layout class="QVBoxLayout" nam... |
C++ | wireshark/ui/qt/capture_preferences_frame.cpp | /* capture_preferences_frame.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <wireshark.h>
#ifdef HAVE_LIBPCAP
#include "ui/capture_globals.h"
#endif
#include "cap... |
C/C++ | wireshark/ui/qt/capture_preferences_frame.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CAPTURE_PREFERENCES_FRAME_H
#define CAPTURE_PREFERENCES_FRAME_H
#include <QFrame>
#include <epan/prefs.h>
namespace Ui {
class Cap... |
User Interface | wireshark/ui/qt/capture_preferences_frame.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CapturePreferencesFrame</class>
<widget class="QFrame" name="CapturePreferencesFrame">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>354</width>
<height>220</height>
</rect>
</property>
<property name="minimumSiz... |
Text | wireshark/ui/qt/CMakeLists.txt | # CMakeLists.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
if(USE_qt6)
set(qtver "6")
else()
set(qtver "5")
endif()
ADD_CUSTOM_CMAKE_INCLUDE()
set(WIRESHARK_WIDGET_HEADERS
widgets/additional_toolb... |
wireshark/ui/qt/CMakeListsCustom.txt.example | # CMakeListsCustom.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
# You can add custom GUI files here by replacing the commented out file foo with your file.
#Add GUI source files here
set(WIRESHARK_CUS... | |
C++ | wireshark/ui/qt/coloring_rules_dialog.cpp | /* coloring_rules_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include "coloring_rules_dialog.h"
#include <ui_coloring_rules_dialog.h>
#include "ui/simple_dialog.... |
C/C++ | wireshark/ui/qt/coloring_rules_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef COLORING_RULES_DIALOG_H
#define COLORING_RULES_DIALOG_H
#include "geometry_state_dialog.h"
#include "filter_action.h"
#include <ui/... |
User Interface | wireshark/ui/qt/coloring_rules_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ColoringRulesDialog</class>
<widget class="QDialog" name="ColoringRulesDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>650</width>
<height>480</height>
</rect>
</property>
<property name="windowTitle">
... |
C++ | wireshark/ui/qt/column_editor_frame.cpp | /* column_editor_frame.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <glib.h>
#include <epan/column.h>
#include <epan/prefs.h>
#include <ui/recent.h>
#include <u... |
C/C++ | wireshark/ui/qt/column_editor_frame.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef COLUMN_EDITOR_FRAME_H
#define COLUMN_EDITOR_FRAME_H
#include "accordion_frame.h"
namespace Ui {
class ColumnEditorFrame;
}
class C... |
User Interface | wireshark/ui/qt/column_editor_frame.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ColumnEditorFrame</class>
<widget class="AccordionFrame" name="ColumnEditorFrame">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1018</width>
<height>34</height>
</rect>
</property>
<property name="windowTitle">
... |
C++ | wireshark/ui/qt/column_preferences_frame.cpp | /* column_preferences_frame.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <glib.h>
#include <epan/column.h>
#include <epan/prefs.h>
#include <epan/proto.h>
#incl... |
C/C++ | wireshark/ui/qt/column_preferences_frame.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef COLUMN_PREFERENCES_FRAME_H
#define COLUMN_PREFERENCES_FRAME_H
#include <ui/qt/models/column_list_model.h>
#include <QFrame>
#includ... |
User Interface | wireshark/ui/qt/column_preferences_frame.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ColumnPreferencesFrame</class>
<widget class="QFrame" name="ColumnPreferencesFrame">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>550</width>
<height>456</height>
</rect>
</property>
<property name="sizePolicy">... |
C++ | wireshark/ui/qt/compiled_filter_output.cpp | /* compiled_filter_output.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <ui_compiled_filter_output.h>
#include "compiled_filter_output.h"
#ifdef HAVE_LIBPCAP
#ifd... |
C/C++ | wireshark/ui/qt/compiled_filter_output.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef COMPILEDFILTEROUTPUT_H
#define COMPILEDFILTEROUTPUT_H
#include "geometry_state_dialog.h"
#include <config.h>
#include <QList>
#incl... |
User Interface | wireshark/ui/qt/compiled_filter_output.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CompiledFilterOutput</class>
<widget class="QDialog" name="CompiledFilterOutput">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>654</width>
<height>380</height>
</rect>
</property>
<property name="windowTitle">
... |
C++ | wireshark/ui/qt/conversation_colorize_action.cpp | /* conversation_colorize_action.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "conversation_colorize_action.h"
#include <config.h>
#include <glib.h>
#include "epan/conversation_filt... |
C/C++ | wireshark/ui/qt/conversation_colorize_action.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CONVERSATIONCOLORIZEACTION_H
#define CONVERSATIONCOLORIZEACTION_H
#include <QAction>
struct conversation_filter_s;
struct _packet_i... |
C++ | wireshark/ui/qt/conversation_dialog.cpp | /* conversation_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "conversation_dialog.h"
#include <epan/prefs.h>
#include <epan/to_str.h>
#include <epan/dissectors/packet-tcp.h>
... |
C/C++ | wireshark/ui/qt/conversation_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CONVERSATION_DIALOG_H
#define CONVERSATION_DIALOG_H
#include "traffic_table_dialog.h"
class ConversationDialog : public TrafficTabl... |
C++ | wireshark/ui/qt/conversation_hash_tables_dialog.cpp | /* conversation_hash_tables_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "conversation_hash_tables_dialog.h"
#include <ui_conversation_hash_tables_dialog.h>
#include "config.h... |
C/C++ | wireshark/ui/qt/conversation_hash_tables_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CONVERSATION_HASH_TABLES_DIALOG_H
#define CONVERSATION_HASH_TABLES_DIALOG_H
#include "geometry_state_dialog.h"
#include <epan/wmem_s... |
User Interface | wireshark/ui/qt/conversation_hash_tables_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ConversationHashTablesDialog</class>
<widget class="QDialog" name="ConversationHashTablesDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>640</width>
<height>450</height>
</rect>
</property>
<property name=... |
C++ | wireshark/ui/qt/credentials_dialog.cpp | /*
* credentials_dialog.c
*
* Copyright 2019 - Dario Lombardo <lomato@gmail.com>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <config.h>
#include "file.h"
#include "credentials_dialo... |
C/C++ | wireshark/ui/qt/credentials_dialog.h | /** @file
*
* Copyright 2019 - Dario Lombardo <lomato@gmail.com>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CREDENTIALS_DIALOG_H
#define CREDENTIALS_DIALOG_H
#include "config.h"
#inc... |
User Interface | wireshark/ui/qt/credentials_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CredentialsDialog</class>
<widget class="QDialog" name="CredentialsDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>634</width>
<height>454</height>
</rect>
</property>
<property name="windowTitle">
<str... |
C++ | wireshark/ui/qt/decode_as_dialog.cpp | /* decode_as_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "decode_as_dialog.h"
#include <ui_decode_as_dialog.h>
#include "epan/decode_as.h"
#include "epan/epan_dissect.h"
#in... |
C/C++ | wireshark/ui/qt/decode_as_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef DECODE_AS_DIALOG_H
#define DECODE_AS_DIALOG_H
#include <config.h>
#include <glib.h>
#include "cfile.h"
#include <ui/qt/models/deco... |
User Interface | wireshark/ui/qt/decode_as_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>DecodeAsDialog</class>
<widget class="QDialog" name="DecodeAsDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>750</width>
<height>460</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalL... |
C++ | wireshark/ui/qt/display_filter_expression_dialog.cpp | /* display_filter_expression_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <algorithm>
#include "display_filter_expression_dialog.h"
#include <ui_display_filter_expression_dial... |
C/C++ | wireshark/ui/qt/display_filter_expression_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef DISPLAY_FILTER_EXPRESSION_DIALOG_H
#define DISPLAY_FILTER_EXPRESSION_DIALOG_H
#include "config.h"
#include <epan/ftypes/ftypes.h>
... |
User Interface | wireshark/ui/qt/display_filter_expression_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>DisplayFilterExpressionDialog</class>
<widget class="QDialog" name="DisplayFilterExpressionDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>657</width>
<height>588</height>
</rect>
</property>
<property nam... |
C++ | wireshark/ui/qt/dissector_tables_dialog.cpp | /* dissector_tables_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <ui/qt/dissector_tables_dialog.h>
#include <ui_dissector_tables_dialog.h>
#include "main... |
C/C++ | wireshark/ui/qt/dissector_tables_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef DISSECTOR_TABLES_DIALOG_H
#define DISSECTOR_TABLES_DIALOG_H
#include <ui/qt/geometry_state_dialog.h>
#include <ui/qt/models/dissecto... |
User Interface | wireshark/ui/qt/dissector_tables_dialog.ui | <?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>351</height>
</rect>
</property>
<property name="windowTitle">... |
C++ | wireshark/ui/qt/enabled_protocols_dialog.cpp | /* enabled_protocols_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "enabled_protocols_dialog.h"
#include <ui_enabled_protocols_dialog.h>
#include <QElapsedTimer>
#include <epa... |
C/C++ | wireshark/ui/qt/enabled_protocols_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef ENABLED_PROTOCOLS_DIALOG_H
#define ENABLED_PROTOCOLS_DIALOG_H
#include "geometry_state_dialog.h"
#include "wireshark_dialog.h"
#incl... |
User Interface | wireshark/ui/qt/enabled_protocols_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>EnabledProtocolsDialog</class>
<widget class="QDialog" name="EnabledProtocolsDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>987</width>
<height>595</height>
</rect>
</property>
<property name="windowTitle... |
C++ | wireshark/ui/qt/endpoint_dialog.cpp | /* endpoint_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "endpoint_dialog.h"
#include <epan/maxmind_db.h>
#include <epan/prefs.h>
#include <epan/to_str.h>
#include "ui/recen... |
C/C++ | wireshark/ui/qt/endpoint_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef ENDPOINT_DIALOG_H
#define ENDPOINT_DIALOG_H
#include <QFile>
#include "traffic_table_dialog.h"
#include <ui/qt/models/atap_data_mo... |
C++ | wireshark/ui/qt/expert_info_dialog.cpp | /* expert_info_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "expert_info_dialog.h"
#include <ui_expert_info_dialog.h>
#include "file.h"
#include <epan/epan_dissect.h>
#includ... |
C/C++ | wireshark/ui/qt/expert_info_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef EXPERT_INFO_DIALOG_H
#define EXPERT_INFO_DIALOG_H
#include <config.h>
#include <glib.h>
#include "filter_action.h"
#include "wires... |
User Interface | wireshark/ui/qt/expert_info_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ExpertInfoDialog</class>
<widget class="QDialog" name="ExpertInfoDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>620</width>
<height>540</height>
</rect>
</property>
<property name="windowTitle">
<strin... |
C++ | wireshark/ui/qt/export_dissection_dialog.cpp | /* export_dissection_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "export_dissection_dialog.h"
#ifdef Q_OS_WIN
#include <windows.h>
#include "ui/packet_range.h"
#include "ui/w... |
C/C++ | wireshark/ui/qt/export_dissection_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef EXPORT_DISSECTION_DIALOG_H
#define EXPORT_DISSECTION_DIALOG_H
#include <config.h>
#include <glib.h>
#include "file.h"
#include "ep... |
C++ | wireshark/ui/qt/export_object_action.cpp | /* conversation_colorize_action.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <config.h>
#include <glib.h>
#include <epan/packet_info.h>
#include <epan/proto_data.h>
#include <epan/pa... |
C/C++ | wireshark/ui/qt/export_object_action.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef EXPORTOBJECTACTION_H
#define EXPORTOBJECTACTION_H
#include "config.h"
#include <glib.h>
#include <epan/packet_info.h>
#include <epa... |
C++ | wireshark/ui/qt/export_object_dialog.cpp | /* export_object_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "export_object_dialog.h"
#include <ui_export_object_dialog.h>
#include <ui/alert_box.h>
#include <wsutil/utf8_ent... |
C/C++ | wireshark/ui/qt/export_object_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef EXPORT_OBJECT_DIALOG_H
#define EXPORT_OBJECT_DIALOG_H
#include <config.h>
#include <file.h>
#include <ui/qt/models/export_objects_... |
User Interface | wireshark/ui/qt/export_object_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ExportObjectDialog</class>
<widget class="QDialog" name="ExportObjectDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>750</width>
<height>520</height>
</rect>
</property>
<property name="windowTitle">
<s... |
C++ | wireshark/ui/qt/export_pdu_dialog.cpp | /* export_pdu_dialog.cpp
* Dialog for exporting PDUs to file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include "export_pdu_dialog.h"
#include <ui_export_pdu_dialog.h>
#i... |
C/C++ | wireshark/ui/qt/export_pdu_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef EXPORT_PDU_DIALOG_H
#define EXPORT_PDU_DIALOG_H
#include <QDialog>
#include <QDebug>
namespace Ui {
class ExportPDUDialog;
}
class... |
User Interface | wireshark/ui/qt/export_pdu_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ExportPDUDialog</class>
<widget class="QDialog" name="ExportPDUDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>393</width>
<height>158</height>
</rect>
</property>
<property name="windowTitle">
<string>... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.