wireshark/ui/qt/main_welcome.h

87 lines
2.2 KiB
C++

/* main_welcome.h
*
* 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 MAIN_WELCOME_H
#define MAIN_WELCOME_H
#include <QFrame>
#include <QListWidget>
#include <QTreeWidgetItem>
#include "splash_overlay.h"
#include "interface_tree.h"
namespace Ui {
class MainWelcome;
}
class MainWelcome : public QFrame
{
Q_OBJECT
public:
explicit MainWelcome(QWidget *parent = 0);
InterfaceTree *getInterfaceTree();
protected:
void resizeEvent(QResizeEvent *event);
private:
Ui::MainWelcome *welcome_ui_;
SplashOverlay *splash_overlay_;
// QListWidget doesn't activate items when the return or enter keys are pressed on OS X.
// We may want to subclass it at some point.
QListWidget *task_list_;
QListWidget *recent_files_;
// MWOverlay *overlay;
signals:
void startCapture();
void recentFileActivated(QString& cfile);
void pushFilterSyntaxStatus(QString&);
void popFilterSyntaxStatus();
void captureFilterSyntaxChanged(bool valid);
private slots:
void destroySplashOverlay();
void showTask();
void interfaceDoubleClicked(QTreeWidgetItem *item, int column);
void updateRecentFiles();
void openRecentItem(QListWidgetItem *item);
void changeEvent(QEvent* event);
};
#endif // MAIN_WELCOME_H
/*
* Editor modelines
*
* Local Variables:
* c-basic-offset: 4
* tab-width: 8
* indent-tabs-mode: nil
* End:
*
* ex: set shiftwidth=4 tabstop=8 expandtab:
* :indentSize=4:tabSize=8:noTabs=true:
*/