-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindow.cpp
More file actions
28 lines (26 loc) · 755 Bytes
/
Copy pathwindow.cpp
File metadata and controls
28 lines (26 loc) · 755 Bytes
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
/***************************************************************************************************
*
* FILE: window.h
*
* CREATED: 24-11-2013
*
* AUTHOR: Benjamin Caspari (mail@becait.de)
*
* PURPOSE: base class for applications windows
*
* This program is licensed under the terms of the GPL Version 2
*
* Copyright 2013 by Benjamin Caspari
*
***************************************************************************************************/
#include "window.h"
#include <QIcon>
#include "appsettings.h"
Window::Window(const QString &title,
const QString & /*windowID*/,
QSize /*defaultSize*/)
: QDialog(NULL, Qt::Window)
{
setWindowIcon(QIcon(DEF_APPLICATION_ICON));
setWindowTitle(title);
}