Fixed #53
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<ui version="4.0">
|
<ui version="4.0">
|
||||||
<class>AbsenceDialog</class>
|
<class>AbsenceDialog</class>
|
||||||
<widget class="ZeiterfassungDialog" name="AbsenceDialog">
|
<widget class="QDialog" name="AbsenceDialog">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
|
@@ -22,7 +22,7 @@
|
|||||||
#include "models/timeassignmentsmodel.h"
|
#include "models/timeassignmentsmodel.h"
|
||||||
|
|
||||||
AdvancedViewDialog::AdvancedViewDialog(StripsWidget &stripsWidget, QWidget *parent) :
|
AdvancedViewDialog::AdvancedViewDialog(StripsWidget &stripsWidget, QWidget *parent) :
|
||||||
QDialog(parent),
|
ZeiterfassungDialog(parent),
|
||||||
ui(new Ui::AdvancedViewDialog),
|
ui(new Ui::AdvancedViewDialog),
|
||||||
m_stripsWidget(stripsWidget),
|
m_stripsWidget(stripsWidget),
|
||||||
m_bookingsModel(new BookingsModel(stripsWidget, this)),
|
m_bookingsModel(new BookingsModel(stripsWidget, this)),
|
||||||
@@ -30,12 +30,6 @@ AdvancedViewDialog::AdvancedViewDialog(StripsWidget &stripsWidget, QWidget *pare
|
|||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
#else
|
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
ui->bookingsView->setModel(m_bookingsModel);
|
ui->bookingsView->setModel(m_bookingsModel);
|
||||||
ui->bookingsView->setEnabled(m_bookingsModel->enabled());
|
ui->bookingsView->setEnabled(m_bookingsModel->enabled());
|
||||||
connect(m_bookingsModel, &BookingsModel::enabledChanged, ui->bookingsView, &QWidget::setEnabled);
|
connect(m_bookingsModel, &BookingsModel::enabledChanged, ui->bookingsView, &QWidget::setEnabled);
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QDialog>
|
#include "zeiterfassungdialog.h"
|
||||||
|
|
||||||
namespace Ui { class AdvancedViewDialog; }
|
namespace Ui { class AdvancedViewDialog; }
|
||||||
class StripsWidget;
|
class StripsWidget;
|
||||||
class BookingsModel;
|
class BookingsModel;
|
||||||
class TimeAssignmentsModel;
|
class TimeAssignmentsModel;
|
||||||
|
|
||||||
class AdvancedViewDialog : public QDialog
|
class AdvancedViewDialog : public ZeiterfassungDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@@ -2,16 +2,10 @@
|
|||||||
#include "ui_bookingdialog.h"
|
#include "ui_bookingdialog.h"
|
||||||
|
|
||||||
BookingDialog::BookingDialog(QWidget *parent) :
|
BookingDialog::BookingDialog(QWidget *parent) :
|
||||||
QDialog(parent),
|
ZeiterfassungDialog(parent),
|
||||||
ui(new Ui::BookingDialog)
|
ui(new Ui::BookingDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
#else
|
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BookingDialog::~BookingDialog()
|
BookingDialog::~BookingDialog()
|
||||||
|
@@ -1,11 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QDialog>
|
|
||||||
#include <QTime>
|
#include <QTime>
|
||||||
|
|
||||||
|
#include "zeiterfassungdialog.h"
|
||||||
|
|
||||||
namespace Ui { class BookingDialog; }
|
namespace Ui { class BookingDialog; }
|
||||||
|
|
||||||
class BookingDialog : public QDialog
|
class BookingDialog : public ZeiterfassungDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@@ -9,17 +9,11 @@
|
|||||||
|
|
||||||
TimeAssignmentDialog::TimeAssignmentDialog(const QMap<QString, QString> &projects, const ZeiterfassungSettings &settings,
|
TimeAssignmentDialog::TimeAssignmentDialog(const QMap<QString, QString> &projects, const ZeiterfassungSettings &settings,
|
||||||
QWidget *parent) :
|
QWidget *parent) :
|
||||||
QDialog(parent),
|
ZeiterfassungDialog(parent),
|
||||||
ui(new Ui::TimeAssignmentDialog)
|
ui(new Ui::TimeAssignmentDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
#else
|
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
{
|
{
|
||||||
for(const auto &preferedProject : settings.projects())
|
for(const auto &preferedProject : settings.projects())
|
||||||
{
|
{
|
||||||
|
@@ -1,15 +1,16 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QDialog>
|
|
||||||
#include <QTime>
|
#include <QTime>
|
||||||
|
|
||||||
|
#include "zeiterfassungdialog.h"
|
||||||
|
|
||||||
template <class Key, class T> class QMap;
|
template <class Key, class T> class QMap;
|
||||||
|
|
||||||
class ZeiterfassungSettings;
|
class ZeiterfassungSettings;
|
||||||
|
|
||||||
namespace Ui { class TimeAssignmentDialog; }
|
namespace Ui { class TimeAssignmentDialog; }
|
||||||
|
|
||||||
class TimeAssignmentDialog : public QDialog
|
class TimeAssignmentDialog : public ZeiterfassungDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@@ -2,16 +2,10 @@
|
|||||||
#include "ui_logdialog.h"
|
#include "ui_logdialog.h"
|
||||||
|
|
||||||
LogDialog::LogDialog(QWidget *parent) :
|
LogDialog::LogDialog(QWidget *parent) :
|
||||||
QDialog(parent),
|
ZeiterfassungDialog(parent),
|
||||||
ui(new Ui::LogDialog)
|
ui(new Ui::LogDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
#else
|
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
LogDialog::~LogDialog()
|
LogDialog::~LogDialog()
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QDialog>
|
#include "zeiterfassungdialog.h"
|
||||||
|
|
||||||
class QAbstractItemModel;
|
class QAbstractItemModel;
|
||||||
|
|
||||||
namespace Ui { class LogDialog; }
|
namespace Ui { class LogDialog; }
|
||||||
|
|
||||||
class LogDialog : public QDialog
|
class LogDialog : public ZeiterfassungDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@@ -4,17 +4,11 @@
|
|||||||
#include <QDate>
|
#include <QDate>
|
||||||
|
|
||||||
LunchMealDialog::LunchMealDialog(const QDate &date, const QString &content, QWidget *parent) :
|
LunchMealDialog::LunchMealDialog(const QDate &date, const QString &content, QWidget *parent) :
|
||||||
QDialog(parent),
|
ZeiterfassungDialog(parent),
|
||||||
ui(new Ui::LunchMealDialog)
|
ui(new Ui::LunchMealDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
#else
|
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
ui->labelTitle->setText(tr("Lunch meal for %0").arg(date.toString(tr("dd.MM.yyyy"))));
|
ui->labelTitle->setText(tr("Lunch meal for %0").arg(date.toString(tr("dd.MM.yyyy"))));
|
||||||
ui->labelLunchMeal->setText(content);
|
ui->labelLunchMeal->setText(content);
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QDialog>
|
#include "zeiterfassungdialog.h"
|
||||||
|
|
||||||
class QDate;
|
class QDate;
|
||||||
|
|
||||||
@@ -8,7 +8,7 @@ class StripsWidget;
|
|||||||
|
|
||||||
namespace Ui { class LunchMealDialog; }
|
namespace Ui { class LunchMealDialog; }
|
||||||
|
|
||||||
class LunchMealDialog : public QDialog
|
class LunchMealDialog : public ZeiterfassungDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@@ -2,17 +2,11 @@
|
|||||||
#include "ui_profiledialog.h"
|
#include "ui_profiledialog.h"
|
||||||
|
|
||||||
ProfileDialog::ProfileDialog(const GetUserInfoReply::UserInfo &userInfo, QWidget *parent) :
|
ProfileDialog::ProfileDialog(const GetUserInfoReply::UserInfo &userInfo, QWidget *parent) :
|
||||||
QDialog(parent),
|
ZeiterfassungDialog(parent),
|
||||||
ui(new Ui::ProfileDialog)
|
ui(new Ui::ProfileDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
#else
|
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
ui->spinBoxUserId->setValue(userInfo.userId);
|
ui->spinBoxUserId->setValue(userInfo.userId);
|
||||||
ui->lineEditEmail->setText(userInfo.email);
|
ui->lineEditEmail->setText(userInfo.email);
|
||||||
ui->lineEditLongUsername->setText(userInfo.longUsername);
|
ui->lineEditLongUsername->setText(userInfo.longUsername);
|
||||||
|
@@ -1,12 +1,11 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QDialog>
|
#include "zeiterfassungdialog.h"
|
||||||
|
|
||||||
#include "replies/getuserinforeply.h"
|
#include "replies/getuserinforeply.h"
|
||||||
|
|
||||||
namespace Ui { class ProfileDialog; }
|
namespace Ui { class ProfileDialog; }
|
||||||
|
|
||||||
class ProfileDialog : public QDialog
|
class ProfileDialog : public ZeiterfassungDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@@ -19,18 +19,12 @@
|
|||||||
#include "zeiterfassungapi.h"
|
#include "zeiterfassungapi.h"
|
||||||
|
|
||||||
UpdaterDialog::UpdaterDialog(MainWindow &mainWindow) :
|
UpdaterDialog::UpdaterDialog(MainWindow &mainWindow) :
|
||||||
QDialog(&mainWindow),
|
ZeiterfassungDialog(&mainWindow),
|
||||||
ui(new Ui::UpdaterDialog),
|
ui(new Ui::UpdaterDialog),
|
||||||
m_mainWindow(mainWindow)
|
m_mainWindow(mainWindow)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
#else
|
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
setAttribute(Qt::WA_DeleteOnClose);
|
setAttribute(Qt::WA_DeleteOnClose);
|
||||||
|
|
||||||
connect(ui->buttonBox, &QDialogButtonBox::accepted, this, &UpdaterDialog::acceptedSlot);
|
connect(ui->buttonBox, &QDialogButtonBox::accepted, this, &UpdaterDialog::acceptedSlot);
|
||||||
|
@@ -1,14 +1,15 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QDialog>
|
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
|
|
||||||
|
#include "zeiterfassungdialog.h"
|
||||||
|
|
||||||
class QNetworkReply;
|
class QNetworkReply;
|
||||||
|
|
||||||
namespace Ui { class UpdaterDialog; }
|
namespace Ui { class UpdaterDialog; }
|
||||||
class MainWindow;
|
class MainWindow;
|
||||||
|
|
||||||
class UpdaterDialog : public QDialog
|
class UpdaterDialog : public ZeiterfassungDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@@ -5,18 +5,12 @@
|
|||||||
#include "zeiterfassungsettings.h"
|
#include "zeiterfassungsettings.h"
|
||||||
|
|
||||||
WebRadioDialog::WebRadioDialog(MainWindow &mainWindow) :
|
WebRadioDialog::WebRadioDialog(MainWindow &mainWindow) :
|
||||||
QDialog(&mainWindow),
|
ZeiterfassungDialog(&mainWindow),
|
||||||
ui(new Ui::WebRadioDialog),
|
ui(new Ui::WebRadioDialog),
|
||||||
m_mainWindow(mainWindow)
|
m_mainWindow(mainWindow)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
#else
|
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
m_player = new QMediaPlayer(this);
|
m_player = new QMediaPlayer(this);
|
||||||
connect(m_player, &QMediaPlayer::stateChanged, this, &WebRadioDialog::stateChanged);
|
connect(m_player, &QMediaPlayer::stateChanged, this, &WebRadioDialog::stateChanged);
|
||||||
connect(m_player, &QMediaPlayer::stateChanged, this, &WebRadioDialog::updateWidgets);
|
connect(m_player, &QMediaPlayer::stateChanged, this, &WebRadioDialog::updateWidgets);
|
||||||
|
@@ -1,13 +1,14 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QDialog>
|
|
||||||
#include <QMediaPlayer>
|
#include <QMediaPlayer>
|
||||||
|
|
||||||
|
#include "zeiterfassungdialog.h"
|
||||||
|
|
||||||
class MainWindow;
|
class MainWindow;
|
||||||
|
|
||||||
namespace Ui { class WebRadioDialog; }
|
namespace Ui { class WebRadioDialog; }
|
||||||
|
|
||||||
class WebRadioDialog : public QDialog
|
class WebRadioDialog : public ZeiterfassungDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@@ -2,16 +2,10 @@
|
|||||||
#include "ui_authenticationdialog.h"
|
#include "ui_authenticationdialog.h"
|
||||||
|
|
||||||
AuthenticationDialog::AuthenticationDialog(QWidget *parent) :
|
AuthenticationDialog::AuthenticationDialog(QWidget *parent) :
|
||||||
QDialog(parent),
|
ZeiterfassungDialog(parent),
|
||||||
ui(new Ui::AuthenticationDialog)
|
ui(new Ui::AuthenticationDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
#else
|
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
AuthenticationDialog::~AuthenticationDialog()
|
AuthenticationDialog::~AuthenticationDialog()
|
||||||
|
@@ -1,12 +1,11 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QDialog>
|
|
||||||
|
|
||||||
#include "zeiterfassungguilib_global.h"
|
#include "zeiterfassungguilib_global.h"
|
||||||
|
#include "zeiterfassungdialog.h"
|
||||||
|
|
||||||
namespace Ui { class AuthenticationDialog; }
|
namespace Ui { class AuthenticationDialog; }
|
||||||
|
|
||||||
class ZEITERFASSUNGGUILIBSHARED_EXPORT AuthenticationDialog : public QDialog
|
class ZEITERFASSUNGGUILIBSHARED_EXPORT AuthenticationDialog : public ZeiterfassungDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@@ -2,17 +2,11 @@
|
|||||||
#include "ui_languageselectiondialog.h"
|
#include "ui_languageselectiondialog.h"
|
||||||
|
|
||||||
LanguageSelectionDialog::LanguageSelectionDialog(QWidget *parent) :
|
LanguageSelectionDialog::LanguageSelectionDialog(QWidget *parent) :
|
||||||
QDialog(parent),
|
ZeiterfassungDialog(parent),
|
||||||
ui(new Ui::LanguageSelectionDialog)
|
ui(new Ui::LanguageSelectionDialog)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
#else
|
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
ui->comboBoxLanguage->addItem(tr("English"), QLocale::English);
|
ui->comboBoxLanguage->addItem(tr("English"), QLocale::English);
|
||||||
ui->comboBoxLanguage->addItem(tr("German"), QLocale::German);
|
ui->comboBoxLanguage->addItem(tr("German"), QLocale::German);
|
||||||
}
|
}
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QDialog>
|
|
||||||
#include <QLocale>
|
#include <QLocale>
|
||||||
|
|
||||||
#include "zeiterfassungguilib_global.h"
|
#include "zeiterfassungguilib_global.h"
|
||||||
|
#include "zeiterfassungdialog.h"
|
||||||
|
|
||||||
namespace Ui { class LanguageSelectionDialog; }
|
namespace Ui { class LanguageSelectionDialog; }
|
||||||
|
|
||||||
class ZEITERFASSUNGGUILIBSHARED_EXPORT LanguageSelectionDialog : public QDialog
|
class ZEITERFASSUNGGUILIBSHARED_EXPORT LanguageSelectionDialog : public ZeiterfassungDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@@ -11,18 +11,12 @@
|
|||||||
#include "zeiterfassungsettings.h"
|
#include "zeiterfassungsettings.h"
|
||||||
|
|
||||||
SettingsDialog::SettingsDialog(ZeiterfassungSettings &settings, QWidget *parent) :
|
SettingsDialog::SettingsDialog(ZeiterfassungSettings &settings, QWidget *parent) :
|
||||||
QDialog(parent),
|
ZeiterfassungDialog(parent),
|
||||||
ui(new Ui::SettingsDialog),
|
ui(new Ui::SettingsDialog),
|
||||||
m_settings(settings)
|
m_settings(settings)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
|
|
||||||
setWindowFlag(Qt::WindowContextHelpButtonHint, false);
|
|
||||||
#else
|
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
ui->comboBoxLanguage->addItem(tr("English"), QLocale::English);
|
ui->comboBoxLanguage->addItem(tr("English"), QLocale::English);
|
||||||
ui->comboBoxLanguage->addItem(tr("German"), QLocale::German);
|
ui->comboBoxLanguage->addItem(tr("German"), QLocale::German);
|
||||||
|
|
||||||
|
@@ -1,13 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QDialog>
|
|
||||||
|
|
||||||
#include "zeiterfassungguilib_global.h"
|
#include "zeiterfassungguilib_global.h"
|
||||||
|
#include "zeiterfassungdialog.h"
|
||||||
|
|
||||||
class ZeiterfassungSettings;
|
class ZeiterfassungSettings;
|
||||||
namespace Ui { class SettingsDialog; }
|
namespace Ui { class SettingsDialog; }
|
||||||
|
|
||||||
class ZEITERFASSUNGGUILIBSHARED_EXPORT SettingsDialog : public QDialog
|
class ZEITERFASSUNGGUILIBSHARED_EXPORT SettingsDialog : public ZeiterfassungDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user