language stringlengths 0 24 | filename stringlengths 9 214 | code stringlengths 99 9.93M |
|---|---|---|
C++ | wireshark/ui/qt/manuf_dialog.cpp | /*
* manuf_dialog.c
*
* 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 "manuf_dialog.h"
#include <ui_manuf_dialog.h>
#include <cstdio>
#include <cstdint>
#include <QComboB... |
C/C++ | wireshark/ui/qt/manuf_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 MANUF_DIALOG_H
#define MANUF_DIALOG_H
#include <wireshark_dialog.h>
#include <models/manuf_table_model.h>
namespace Ui {
class Manu... |
User Interface | wireshark/ui/qt/manuf_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ManufDialog</class>
<widget class="QDialog" name="ManufDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>503</width>
<height>394</height>
</rect>
</property>
<property name="windowTitle">
<string>MAC Addr... |
C++ | wireshark/ui/qt/module_preferences_scroll_area.cpp | /* module_preferences_scroll_area.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "module_preferences_scroll_area.h"
#include <ui_module_preferences_scroll_area.h>
#include <ui/qt/widget... |
C/C++ | wireshark/ui/qt/module_preferences_scroll_area.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 MODULE_PREFERENCES_SCROLL_AREA_H
#define MODULE_PREFERENCES_SCROLL_AREA_H
#include <config.h>
#include <glib.h>
#include <epan/pre... |
User Interface | wireshark/ui/qt/module_preferences_scroll_area.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ModulePreferencesScrollArea</class>
<widget class="QScrollArea" name="ModulePreferencesScrollArea">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property nam... |
C++ | wireshark/ui/qt/mtp3_summary_dialog.cpp | /* mtp3_summary_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include... |
C/C++ | wireshark/ui/qt/mtp3_summary_dialog.h | /** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef MTP3_SUMMARY_DIAL... |
User Interface | wireshark/ui/qt/mtp3_summary_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Mtp3SummaryDialog</class>
<widget class="QDialog" name="Mtp3SummaryDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>640</width>
<height>420</height>
</rect>
</property>
<property name="windowTitle">
<str... |
C++ | wireshark/ui/qt/multicast_statistics_dialog.cpp | /* multicast_statistics_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 "multicast_statistics_dialog.h"
#include <QFormLayout>
#include <QLabel>
#include <QPushButton>
#include <... |
C/C++ | wireshark/ui/qt/multicast_statistics_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 MULTICASTSTATISTICSDIALOG_H
#define MULTICASTSTATISTICSDIALOG_H
#include "tap_parameter_dialog.h"
#include "ui/mcast_stream.h"
clas... |
C++ | wireshark/ui/qt/packet_comment_dialog.cpp | /* packet_comment_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 "packet_comment_dialog.h"
#include <ui_packet_comment_dialog.h>
#include "main_application.h"
PacketCommentDial... |
C/C++ | wireshark/ui/qt/packet_comment_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 PACKET_COMMENT_DIALOG_H
#define PACKET_COMMENT_DIALOG_H
#include <glib.h>
#include "geometry_state_dialog.h"
namespace Ui {
class ... |
User Interface | wireshark/ui/qt/packet_comment_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PacketCommentDialog</class>
<widget class="QDialog" name="PacketCommentDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="modal">
<bool>... |
C++ | wireshark/ui/qt/packet_diagram.cpp | /* packet_diagram.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "packet_diagram.h"
#include "math.h"
#include "epan/epan.h"
#include "epan/epan_dissect.h"
#include "wsutil/utf8_enti... |
C/C++ | wireshark/ui/qt/packet_diagram.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 PACKET_DIAGRAM_H
#define PACKET_DIAGRAM_H
#include <config.h>
#include <epan/proto.h>
#include "cfile.h"
#include <ui/qt/utils/fi... |
C++ | wireshark/ui/qt/packet_dialog.cpp | /* packet_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 "packet_dialog.h"
#include <ui_packet_dialog.h>
#include "file.h"
#include "epan/column.h"
#include "epan/ftypes/ftypes... |
C/C++ | wireshark/ui/qt/packet_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 PACKET_DIALOG_H
#define PACKET_DIALOG_H
#include "wireshark_dialog.h"
#include "epan/epan_dissect.h"
#include "wiretap/wtap.h"
#inc... |
User Interface | wireshark/ui/qt/packet_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PacketDialog</class>
<widget class="QDialog" name="PacketDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>641</width>
<height>450</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog... |
C++ | wireshark/ui/qt/packet_format_group_box.cpp | /* packet_format_group_box.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "packet_format_group_box.h"
#include <ui_packet_format_group_box.h>
#include <epan/print.h>
#include <QStyle>... |
C/C++ | wireshark/ui/qt/packet_format_group_box.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 PACKET_FORMAT_GROUP_BOX_H
#define PACKET_FORMAT_GROUP_BOX_H
#include <QGroupBox>
namespace Ui {
class PacketFormatGroupBox;
}
cla... |
User Interface | wireshark/ui/qt/packet_format_group_box.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PacketFormatGroupBox</class>
<widget class="QGroupBox" name="PacketFormatGroupBox">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>199</height>
</rect>
</property>
<property name="windowTitle">... |
C++ | wireshark/ui/qt/packet_list.cpp | /* packet_list.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <ui/qt/packet_list.h>
#include "config.h"
#include <glib.h>
#include "file.h"
#include <epan/epan.h>
#include <epan/epa... |
C/C++ | wireshark/ui/qt/packet_list.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 PACKET_LIST_H
#define PACKET_LIST_H
#include "byte_view_tab.h"
#include <ui/qt/models/packet_list_model.h>
#include "proto_tree.h"
#... |
C++ | wireshark/ui/qt/packet_range_group_box.cpp | /* packet_range_group_box.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "packet_range_group_box.h"
#include <ui_packet_range_group_box.h>
#include <wsutil/ws_assert.h>
PacketRangeGrou... |
C/C++ | wireshark/ui/qt/packet_range_group_box.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 PACKET_RANGE_GROUP_BOX_H
#define PACKET_RANGE_GROUP_BOX_H
#include <config.h>
#include <glib.h>
#include <ui/packet_range.h>
#inc... |
User Interface | wireshark/ui/qt/packet_range_group_box.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PacketRangeGroupBox</class>
<widget class="QGroupBox" name="PacketRangeGroupBox">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>454</width>
<height>241</height>
</rect>
</property>
<property name="windowTitle">
... |
C++ | wireshark/ui/qt/preferences_dialog.cpp | /* preferences_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 "preferences_dialog.h"
#include <ui_preferences_dialog.h>
#include "module_preferences_scroll_area.h"
#include <ep... |
C/C++ | wireshark/ui/qt/preferences_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 PREFERENCES_DIALOG_H
#define PREFERENCES_DIALOG_H
#include <config.h>
#include <epan/prefs.h>
#include <ui/qt/models/pref_models.h... |
User Interface | wireshark/ui/qt/preferences_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PreferencesDialog</class>
<widget class="QDialog" name="PreferencesDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>680</width>
<height>475</height>
</rect>
</property>
<layout class="QVBoxLayout" name="ver... |
C++ | wireshark/ui/qt/preference_editor_frame.cpp | /* preference_editor_frame.h
*
* 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/prefs.h>
#include <epan/prefs-int.h>
#include <epan/decode_as.h>
#... |
C/C++ | wireshark/ui/qt/preference_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 PREFERENCE_EDITOR_FRAME_H
#define PREFERENCE_EDITOR_FRAME_H
#include "accordion_frame.h"
struct pref_module;
struct preference;
str... |
User Interface | wireshark/ui/qt/preference_editor_frame.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PreferenceEditorFrame</class>
<widget class="AccordionFrame" name="PreferenceEditorFrame">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>458</width>
<height>34</height>
</rect>
</property>
<property name="windowT... |
C++ | wireshark/ui/qt/print_dialog.cpp | /* print_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 "print_dialog.h"
#include <ui_print_dialog.h>
#include <wsutil/utf8_entities.h>
#ifdef Q_OS_WIN
#include <windows.h>
#in... |
C/C++ | wireshark/ui/qt/print_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 PRINT_DIALOG_H
#define PRINT_DIALOG_H
#include <config.h>
#include <glib.h>
#include "file.h"
#include <QDialog>
#include <QPrint... |
User Interface | wireshark/ui/qt/print_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PrintDialog</class>
<widget class="QDialog" name="PrintDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>496</width>
<height>328</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_... |
C++ | wireshark/ui/qt/profile_dialog.cpp | /* profile_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 <glib.h>
#include "wsutil/filesystem.h"
#include "wsutil/utf8_entities.h"
#include "epan/prefs.h"
... |
C/C++ | wireshark/ui/qt/profile_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 PROFILE_DIALOG_H
#define PROFILE_DIALOG_H
#include "config.h"
#include <ui/qt/geometry_state_dialog.h>
#include <ui/qt/models/profi... |
User Interface | wireshark/ui/qt/profile_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ProfileDialog</class>
<widget class="QDialog" name="ProfileDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>570</width>
<height>400</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLay... |
C++ | wireshark/ui/qt/progress_frame.cpp | /* progress_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 "progress_frame.h"
#include <ui_progress_frame.h>
#include "ui/progress_dlg.h"
#include <QDialogB... |
C/C++ | wireshark/ui/qt/progress_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 PROGRESS_FRAME_H
#define PROGRESS_FRAME_H
#include <glib.h>
#include <QFrame>
namespace Ui {
class ProgressFrame;
}
#if (QT_VERSI... |
User Interface | wireshark/ui/qt/progress_frame.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ProgressFrame</class>
<widget class="QFrame" name="ProgressFrame">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>210</width>
<height>38</height>
</rect>
</property>
<property name="windowTitle">
<string>Frame<... |
C++ | wireshark/ui/qt/protocol_hierarchy_dialog.cpp | /* protocol_hierarchy_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 "protocol_hierarchy_dialog.h"
#include <ui_protocol_hierarchy_dialog.h>
#include "cfile.h"
#include "ui/pro... |
C/C++ | wireshark/ui/qt/protocol_hierarchy_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 PROTOCOL_HIERARCHY_DIALOG_H
#define PROTOCOL_HIERARCHY_DIALOG_H
#include <QMenu>
#include <QSet>
#include "filter_action.h"
#includ... |
User Interface | wireshark/ui/qt/protocol_hierarchy_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ProtocolHierarchyDialog</class>
<widget class="QDialog" name="ProtocolHierarchyDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>620</width>
<height>480</height>
</rect>
</property>
<property name="windowTit... |
C++ | wireshark/ui/qt/protocol_preferences_menu.cpp | /* protocol_preferences_menu.h
*
* 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/prefs.h>
#include <epan/prefs-int.h>
#include <epan/proto.h>
#in... |
C/C++ | wireshark/ui/qt/protocol_preferences_menu.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 __PROTOCOL_PREFERENCES_MENU_H__
#define __PROTOCOL_PREFERENCES_MENU_H__
#include <QMenu>
struct _protocol;
struct pref_module;
stru... |
C++ | wireshark/ui/qt/proto_tree.cpp | /* proto_tree.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <stdio.h>
#include <ui/qt/proto_tree.h>
#include <ui/qt/models/proto_tree_model.h>
#include <epan/ftypes/ftypes.h>
#includ... |
C/C++ | wireshark/ui/qt/proto_tree.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 PROTO_TREE_H
#define PROTO_TREE_H
#include <config.h>
#include <epan/proto.h>
#include "cfile.h"
#include "protocol_preferences_m... |
Text | wireshark/ui/qt/qt6-migration-links.txt | https://doc.qt.io/qt-5/qtmac-obsolete.html
https://doc.qt.io/qt-6/extras-changes-qt6.html
https://doc.qt.io/qt-6/modulechanges.html
https://doc.qt.io/qt-6/cmake-qt5-and-qt6-compatibility.html
https://www.qt.io/blog/porting-from-qt-5-to-qt-6-using-qt5compat-library
https://dangelog.wordpress.com/2012/04/07/qregularexpre... |
C++ | wireshark/ui/qt/recent_file_status.cpp | /* recent_file_status.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "recent_file_status.h"
RecentFileStatus::RecentFileStatus(const QString filename, QObject *parent) :
QObject(pa... |
C/C++ | wireshark/ui/qt/recent_file_status.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 RECENT_FILE_STATUS_H
#define RECENT_FILE_STATUS_H
#include <QRunnable>
#include <QFileInfo>
class RecentFileStatus : public QObject... |
C++ | wireshark/ui/qt/remote_capture_dialog.cpp | /* remote_capture_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
// XXX This shouldn't exist. These controls should be in ManageInterfacesDialog instead.
#include "config.h"
#ifdef HAVE_... |
C/C++ | wireshark/ui/qt/remote_capture_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 REMOTE_CAPTURE_DIALOG_H
#define REMOTE_CAPTURE_DIALOG_H
#include <config.h>
#ifdef HAVE_PCAP_REMOTE
#include <QDialog>
#include <gl... |
User Interface | wireshark/ui/qt/remote_capture_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>RemoteCaptureDialog</class>
<widget class="QDialog" name="RemoteCaptureDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>233</width>
<height>256</height>
</rect>
</property>
<property name="windowTitle">
... |
C++ | wireshark/ui/qt/remote_settings_dialog.cpp | /* remote_settings_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
// XXX This shouldn't exist. These controls should be in ManageInterfacesDialog instead.
#include "config.h"
#ifdef HAVE... |
C/C++ | wireshark/ui/qt/remote_settings_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 REMOTE_SETTINGS_DIALOG_H
#define REMOTE_SETTINGS_DIALOG_H
#include <config.h>
#ifdef HAVE_PCAP_REMOTE
#include <QDialog>
#include "... |
User Interface | wireshark/ui/qt/remote_settings_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>RemoteSettingsDialog</class>
<widget class="QDialog" name="RemoteSettingsDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>231</width>
<height>229</height>
</rect>
</property>
<property name="sizePolicy">
... |
C++ | wireshark/ui/qt/resolved_addresses_dialog.cpp | /* resolved_addresses_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 "resolved_addresses_dialog.h"
#include <ui_resolved_addresses_dialog.h>
#include "config.h"
#include <glib.... |
C/C++ | wireshark/ui/qt/resolved_addresses_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 RESOLVED_ADDRESSES_DIALOG_H
#define RESOLVED_ADDRESSES_DIALOG_H
#include "geometry_state_dialog.h"
#include <wiretap/wtap.h>
class... |
User Interface | wireshark/ui/qt/resolved_addresses_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ResolvedAddressesDialog</class>
<widget class="QDialog" name="ResolvedAddressesDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>620</width>
<height>450</height>
</rect>
</property>
<property name="windowTit... |
C++ | wireshark/ui/qt/response_time_delay_dialog.cpp | /* response_time_delay_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 "response_time_delay_dialog.h"
#include "file.h"
#include "epan/proto.h"
#include "epan/rtd_table.h"
#inc... |
C/C++ | wireshark/ui/qt/response_time_delay_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 __RESPONSE_TIME_DELAY_DIALOG_H__
#define __RESPONSE_TIME_DELAY_DIALOG_H__
#include "tap_parameter_dialog.h"
struct _rtd_stat_table;... |
C++ | wireshark/ui/qt/rpc_service_response_time_dialog.cpp | /* rpc_service_response_time_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
// warning C4267: 'argument' : conversion from 'size_t' to 'int', possible loss of data
#ifdef _MSC_VER
#pragma... |
C/C++ | wireshark/ui/qt/rpc_service_response_time_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 __RPC_SERVICE_RESPONSE_TIME_DIALOG_H__
#define __RPC_SERVICE_RESPONSE_TIME_DIALOG_H__
#include "service_response_time_dialog.h"
cla... |
C++ | wireshark/ui/qt/rsa_keys_frame.cpp | /* rsa_keys_frame.cpp
*
* Copyright 2019 Peter Wu <peter@lekensteyn.nl>
*
* 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 "rsa_keys_frame.h"
#include <ui_rsa_keys_frame.... |
C/C++ | wireshark/ui/qt/rsa_keys_frame.h | /** @file
*
* Copyright 2019 Peter Wu <peter@lekensteyn.nl>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef RSA_KEYS_FRAME_H
#define RSA_KEYS_FRAME_H
#include <config.h>
#include <QFrame>... |
User Interface | wireshark/ui/qt/rsa_keys_frame.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>RsaKeysFrame</class>
<widget class="QFrame" name="RsaKeysFrame">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout... |
C++ | wireshark/ui/qt/rtp_analysis_dialog.cpp | /* rtp_analysis_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 "rtp_analysis_dialog.h"
#include <ui_rtp_analysis_dialog.h>
#include "file.h"
#include "frame_tvbuff.h"
#include ... |
C/C++ | wireshark/ui/qt/rtp_analysis_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 RTP_ANALYSIS_DIALOG_H
#define RTP_ANALYSIS_DIALOG_H
#include <config.h>
#include <glib.h>
#include <mutex>
#include "epan/address.... |
User Interface | wireshark/ui/qt/rtp_analysis_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>RtpAnalysisDialog</class>
<widget class="QDialog" name="RtpAnalysisDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>650</width>
<height>475</height>
</rect>
</property>
<property name="windowTitle">
<str... |
C++ | wireshark/ui/qt/rtp_audio_stream.cpp | /* rtp_audio_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 "rtp_audio_stream.h"
#ifdef QT_MULTIMEDIA_LIB
#include <speex/speex_resampler.h>
#include <epan/rtp_pt.h>
#include <... |
C/C++ | wireshark/ui/qt/rtp_audio_stream.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 RTPAUDIOSTREAM_H
#define RTPAUDIOSTREAM_H
#include "config.h"
#ifdef QT_MULTIMEDIA_LIB
#include <glib.h>
#include <epan/address.h... |
C++ | wireshark/ui/qt/rtp_player_dialog.cpp | /* rtp_player_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/rtp_media.h>
#include <ui/tap-rtp-common.h>
#include "rtp_player_dialog.h"
#include <ui_rtp_... |
C/C++ | wireshark/ui/qt/rtp_player_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 RTP_PLAYER_DIALOG_H
#define RTP_PLAYER_DIALOG_H
#include "config.h"
#include <glib.h>
#include <mutex>
#include "ui/rtp_stream.h"
... |
User Interface | wireshark/ui/qt/rtp_player_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>RtpPlayerDialog</class>
<widget class="QDialog" name="RtpPlayerDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>750</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>... |
C++ | wireshark/ui/qt/rtp_stream_dialog.cpp | /* rtp_stream_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 "rtp_stream_dialog.h"
#include <ui_rtp_stream_dialog.h>
#include "file.h"
#include "epan/addr_resolv.h"
#include <e... |
C/C++ | wireshark/ui/qt/rtp_stream_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 RTP_STREAM_DIALOG_H
#define RTP_STREAM_DIALOG_H
#include "wireshark_dialog.h"
#include <mutex>
#include "ui/rtp_stream.h"
#include... |
User Interface | wireshark/ui/qt/rtp_stream_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>RtpStreamDialog</class>
<widget class="QDialog" name="RtpStreamDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>600</width>
<height>460</height>
</rect>
</property>
<property name="windowTitle">
<string>... |
C++ | wireshark/ui/qt/scsi_service_response_time_dialog.cpp | /* scsi_service_response_time_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 "scsi_service_response_time_dialog.h"
#include <algorithm>
#include <stdio.h>
#include <epan/srt_ta... |
C/C++ | wireshark/ui/qt/scsi_service_response_time_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 __SCSI_SERVICE_RESPONSE_TIME_DIALOG_H__
#define __SCSI_SERVICE_RESPONSE_TIME_DIALOG_H__
#include "service_response_time_dialog.h"
c... |
C++ | wireshark/ui/qt/sctp_all_assocs_dialog.cpp | /* sctp_all_assocs_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 "sctp_all_assocs_dialog.h"
#include <ui_sctp_all_assocs_dialog.h>
#include "sctp_assoc_analyse_dialog.h"
#inclu... |
C/C++ | wireshark/ui/qt/sctp_all_assocs_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 SCTP_ALL_ASSOCS_DIALOG_H
#define SCTP_ALL_ASSOCS_DIALOG_H
#include <config.h>
#include <glib.h>
#include <file.h>
#include <epan/... |
User Interface | wireshark/ui/qt/sctp_all_assocs_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SCTPAllAssocsDialog</class>
<widget class="QDialog" name="SCTPAllAssocsDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>827</width>
<height>546</height>
</rect>
</property>
<property name="windowTitle">
... |
C++ | wireshark/ui/qt/sctp_assoc_analyse_dialog.cpp | /* sctp_assoc_analyse_dialog.cpp
*
* Copyright 2021 Thomas Dreibholz <dreibh [AT] iem.uni-due.de>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "epan/to_str.h"
#include "sctp_assoc_anal... |
C/C++ | wireshark/ui/qt/sctp_assoc_analyse_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 SCTP_ASSOC_ANALYSE_DIALOG_H
#define SCTP_ASSOC_ANALYSE_DIALOG_H
#include <config.h>
#include <glib.h>
#include <file.h>
#include ... |
User Interface | wireshark/ui/qt/sctp_assoc_analyse_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SCTPAssocAnalyseDialog</class>
<widget class="QDialog" name="SCTPAssocAnalyseDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>826</width>
<height>672</height>
</rect>
</property>
<property name="sizePolicy"... |
C++ | wireshark/ui/qt/sctp_chunk_statistics_dialog.cpp | /* sctp_chunk_statistics_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 "sctp_chunk_statistics_dialog.h"
#include "sctp_assoc_analyse_dialog.h"
#include <ui_sctp_chunk_statistics... |
C/C++ | wireshark/ui/qt/sctp_chunk_statistics_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 SCTP_CHUNK_STATISTICS_DIALOG_H
#define SCTP_CHUNK_STATISTICS_DIALOG_H
#include <config.h>
#include <glib.h>
#include <file.h>
#incl... |
User Interface | wireshark/ui/qt/sctp_chunk_statistics_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SCTPChunkStatisticsDialog</class>
<widget class="QDialog" name="SCTPChunkStatisticsDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>830</width>
<height>673</height>
</rect>
</property>
<property name="sizeP... |
C++ | wireshark/ui/qt/sctp_graph_arwnd_dialog.cpp | /* sctp_graph_arwnd_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 "sctp_graph_arwnd_dialog.h"
#include <ui_sctp_graph_arwnd_dialog.h>
#include "sctp_assoc_analyse_dialog.h"
#in... |
C/C++ | wireshark/ui/qt/sctp_graph_arwnd_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 SCTP_GRAPH_ARWND_DIALOG_H
#define SCTP_GRAPH_ARWND_DIALOG_H
#include <config.h>
#include <glib.h>
#include "cfile.h"
#include <QDi... |
User Interface | wireshark/ui/qt/sctp_graph_arwnd_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SCTPGraphArwndDialog</class>
<widget class="QDialog" name="SCTPGraphArwndDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>826</width>
<height>546</height>
</rect>
</property>
<property name="windowTitle">
... |
C++ | wireshark/ui/qt/sctp_graph_byte_dialog.cpp | /* sctp_graph_byte_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 "sctp_graph_byte_dialog.h"
#include <ui_sctp_graph_byte_dialog.h>
#include <file.h>
#include <math.h>
#include ... |
C/C++ | wireshark/ui/qt/sctp_graph_byte_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 SCTP_GRAPH_BYTE_DIALOG_H
#define SCTP_GRAPH_BYTE_DIALOG_H
#include <config.h>
#include <glib.h>
#include "cfile.h"
#include <QDial... |
User Interface | wireshark/ui/qt/sctp_graph_byte_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SCTPGraphByteDialog</class>
<widget class="QDialog" name="SCTPGraphByteDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>987</width>
<height>546</height>
</rect>
</property>
<property name="windowTitle">
... |
C++ | wireshark/ui/qt/sctp_graph_dialog.cpp | /* sctp_graph_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 <wsutil/utf8_entities.h>
#include "sctp_graph_dialog.h"
#include <ui_sctp_graph_dialog.h>
#include "sctp_assoc_analy... |
C/C++ | wireshark/ui/qt/sctp_graph_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 SCTP_GRAPH_DIALOG_H
#define SCTP_GRAPH_DIALOG_H
#include <config.h>
#include <glib.h>
#include "cfile.h"
#include <QDialog>
names... |
User Interface | wireshark/ui/qt/sctp_graph_dialog.ui | <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SCTPGraphDialog</class>
<widget class="QDialog" name="SCTPGraphDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>546</height>
</rect>
</property>
<property name="windowTitle">
<string>... |
C++ | wireshark/ui/qt/search_frame.cpp | /* search_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 "search_frame.h"
#include <ui_search_frame.h>
#include "file.h"
#include "ui/recent.h"
#include <epan/proto.h>
#include ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.