-
Notifications
You must be signed in to change notification settings - Fork 163
/
MainWindow.h
115 lines (99 loc) · 3.06 KB
/
MainWindow.h
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
* Copyright (c) 2009 Novell, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* 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, contact Novell, Inc.
*
* To contact Novell about this file by physical or electronic mail,
* you may find current contact information at www.novell.com
*
* Author: Matt Barringer <mbarringer@suse.de>
*
*/
#ifndef __MAIN_WINDOW_H__
#define __MAIN_WINDOW_H__
#include <QtGui>
#include <QWidget>
#include <QDBusMessage>
#include <QLabel>
#include <QComboBox>
#include "MetaTypes.h"
#include "Platform.h"
#include "DeviceItem.h"
#define DROPDOWN_DIRECTIVE "Insert a USB device"
class MainWindow : public QWidget
{
Q_OBJECT
public:
MainWindow(Platform *platform,
const char *cmddevice,
const char *cmdfile,
bool unsafe = false,
bool maximized = false,
QWidget *parent = 0);
public slots:
void selectImage();
void deviceInserted(QDBusMessage message);
void deviceRemoved(QDBusMessage message);
void deviceInserted(const QDBusObjectPath &object_path, const QVariantMapMap &interfaces_and_properties);
void deviceRemoved(const QDBusObjectPath &object_path, const QStringList &interfaces);
private slots:
void write();
protected:
void dragEnterEvent(QDragEnterEvent *event);
void dropEvent(QDropEvent *event);
void setSizeLabel(const QString &fileName);
private:
void addMenuItem(const QString &item);
int removeMenuItem(const QString &item);
void setFile(const QString &newFile);
void divineMeaning(const QString &path);
void divineFurther(DeviceItem *item);
bool isMounted(const QString &path);
void writeData(const QString &path);
bool checkIso(const QString &fileName);
void centerWindow();
void useNewUI();
void useOldUI();
void reloadDeviceList(const char *cmddevice);
#if (QT_VERSION < 0x040400)
QLineEdit* fileLine;
#endif
QLabel *imageLabel, *directive;
QString file;
QLabel *fileSize, *fileLabel;
QComboBox *deviceComboBox;
Platform *pPlatform;
bool mMaximized;
bool mUnsafe;
};
// Rather than grabbing a mouse click for the entire window, just grab it for the part
// that contains the graphics
class CustomLabel : public QLabel
{
public:
CustomLabel(QWidget* parent);
protected:
void mousePressEvent(QMouseEvent *event);
};
// About box "link"
class AboutLabel : public QLabel
{
public:
AboutLabel(QWidget *parent = 0);
protected:
void mousePressEvent(QMouseEvent *event);
void enterEvent(QEvent *event);
void leaveEvent(QEvent *event);
};
#endif