~ubuntu-branches/ubuntu/trusty/kphotoalbum/trusty

« back to all changes in this revision

Viewing changes to .pc/01_kphotoalbum_stable_branch_pull.diff/Settings/ViewerPage.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2010-05-03 20:15:11 UTC
  • mfrom: (3.2.5 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100503201511-9boxoxf942irgfjl
Tags: 4.1.1-3
Update Build-Depends for KDE SC 4.4.3 (Closes: #579986) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef VIEWERPAGE_H
 
2
#define VIEWERPAGE_H
 
3
#include <QWidget>
 
4
 
 
5
class KComboBox;
 
6
class QSpinBox;
 
7
class QComboBox;
 
8
namespace Settings
 
9
{
 
10
class SettingsData;
 
11
class ViewerSizeConfig;
 
12
 
 
13
class ViewerPage :public QWidget
 
14
{
 
15
public:
 
16
    ViewerPage( QWidget* parent );
 
17
    void loadSettings( Settings::SettingsData* );
 
18
    void saveSettings( Settings::SettingsData* );
 
19
    void reset(Settings::SettingsData* opt );
 
20
 
 
21
private:
 
22
    Settings::ViewerSizeConfig* _slideShowSetup;
 
23
    Settings::ViewerSizeConfig* _viewImageSetup;
 
24
    QComboBox* _smoothScale;
 
25
    QSpinBox* _slideShowInterval;
 
26
    QSpinBox* _cacheSize;
 
27
    KComboBox* _viewerStandardSize;
 
28
};
 
29
 
 
30
 
 
31
}
 
32
 
 
33
 
 
34
#endif /* VIEWERPAGE_H */
 
35