Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
mainwindow.h
Go to the documentation of this file.
1
// Copyright (C) 2016 The Qt Company Ltd.
2
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
4
#
ifndef
MAINWINDOW_H
5
#
define
MAINWINDOW_H
6
7
#
include
<
QMainWindow
>
8
#
include
<
QPixmap
>
9
#
include
<
QPoint
>
10
11
QT_BEGIN_NAMESPACE
12
13
class
QLabel;
14
class
QLineEdit;
15
class
QMouseEvent;
16
class
QTextEdit;
17
18
class
MainWindow
:
public
QMainWindow
19
{
20
Q_OBJECT
21
22
public
:
23
explicit
MainWindow
(
QWidget
*
parent
=
nullptr
);
24
25
protected
:
26
void
mousePressEvent
(QMouseEvent *event)
override
;
27
28
private
:
29
QLabel *iconLabel;
30
QLineEdit *nameEdit;
31
QPixmap iconPixmap;
32
QPoint dragStartPosition;
33
QTextEdit *commentEdit;
34
};
35
36
QT_END_NAMESPACE
37
38
#
endif
MainWindow
[6]
Definition
src_corelib_kernel_qmetaobject.cpp:74
MainWindow::mousePressEvent
void mousePressEvent(QMouseEvent *event) override
[0]
Definition
mainwindow.cpp:35
main
int main(int argc, char *argv[])
[ctor_close]
Definition
src_corelib_animation_qpropertyanimation.cpp:100
qtbase
src
gui
doc
snippets
dragging
mainwindow.h
Generated on
for Qt by
1.14.0