digiKam
presentation_advpage.h
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is a part of digiKam project
4  * https://www.digikam.org
5  *
6  * Date : 2008-09-09
7  * Description : a presentation tool.
8  *
9  * Copyright (C) 2008 by Valerio Fuoglio <valerio dot fuoglio at gmail dot com>
10  *
11  * This program is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU General
13  * Public License as published by the Free Software Foundation;
14  * either version 2, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * ============================================================ */
22 
23 #ifndef DIGIKAM_PRESENTATION_ADV_PAGE_H
24 #define DIGIKAM_PRESENTATION_ADV_PAGE_H
25 
26 // Local includes
27 
28 #include "ui_presentation_advpage.h"
29 
31 {
32 
33 class PresentationContainer;
34 
35 class PresentationAdvPage : public QWidget,
36  public Ui::PresentationAdvPage
37 {
38  Q_OBJECT
39 
40 public:
41 
42  explicit PresentationAdvPage(QWidget* const parent,
43  PresentationContainer* const sharedData);
44  ~PresentationAdvPage() override;
45 
46  void readSettings();
47  void saveSettings();
48 
49 Q_SIGNALS:
50 
52 
53 private Q_SLOTS:
54 
55  void slotUseMillisecondsToggled();
56 
57 private:
58 
59  PresentationContainer* m_sharedData;
60 };
61 
62 } // namespace DigikamGenericPresentationPlugin
63 
64 #endif // DIGIKAM_PRESENTATION_ADV_PAGE_H
Definition: presentation_advpage.h:37
PresentationAdvPage(QWidget *const parent, PresentationContainer *const sharedData)
Definition: presentation_advpage.cpp:41
void saveSettings()
Definition: presentation_advpage.cpp:82
~PresentationAdvPage() override
Definition: presentation_advpage.cpp:64
void readSettings()
Definition: presentation_advpage.cpp:68
Definition: presentationcontainer.h:54
Definition: presentation_audiopage.cpp:46