KGantt

kganttdatetimetimelinedialog.h
1/*
2 * SPDX-FileCopyrightText: 2020 Dag Andersen <danders@get2net.dk>
3 *
4 * This file is part of the KGantt library.
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9#ifndef KGANTTDATETIMETIMELINEDIALOG_H
10#define KGANTTDATETIMETIMELINEDIALOG_H
11
12#include "kganttglobal.h"
13#include <QDialog>
14
15QT_BEGIN_NAMESPACE
16class QWidget;
18
19namespace KGantt {
20 class DateTimeTimeLine;
21
22 class DateTimeTimeLineDialog : public QDialog {
24 public:
25 explicit DateTimeTimeLineDialog(DateTimeTimeLine *timeLine, QWidget* parent = nullptr);
26 ~DateTimeTimeLineDialog() override;
27
28 private Q_SLOTS:
29 void ok();
30 void openColorDialog();
31 void updateColorButton();
32
33 private:
34 class Private;
35 Private *d;
36 };
37}
38
39#endif
Contains KGantt macros.
Global namespace.
Q_OBJECTQ_OBJECT
Q_SLOTSQ_SLOTS
QObject * parent() const const
T qobject_cast(QObject *object)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:21 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.