forked from simulationcraft/simc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsc_importWindow.hpp
39 lines (29 loc) · 984 Bytes
/
sc_importWindow.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// ==========================================================================
// Dedmonwakeen's Raid DPS/TPS Simulator.
// Send questions to [email protected]
// ==========================================================================
#ifndef SC_IMPORTWINDOW_HPP
#define SC_IMPORTWINDOW_HPP
#include <QDebug>
#include <QtWidgets/QShortcut>
#include <QtWidgets/QtWidgets>
class SC_MainWindow;
#include "sc_importWidget.hpp"
class BattleNetImportWindow : public QWidget
{
Q_OBJECT
// Components
SC_MainWindow* m_mainWindow;
QShortcut* m_shortcut;
BattleNetImportWidget* m_importWidget;
bool m_embedded;
public:
BattleNetImportWindow( SC_MainWindow* parent, bool embedded = false );
QSize sizeHint() const override
{ return m_importWidget -> sizeHint(); }
BattleNetImportWidget* widget() const
{ return m_importWidget; }
public slots:
void toggle();
};
#endif /* SC_IMPORTWINDOW_HPP */