~ubuntu-branches/ubuntu/saucy/acetoneiso/saucy

« back to all changes in this revision

Viewing changes to acetoneiso/sources/options.h

  • Committer: Bazaar Package Importer
  • Author(s): Nick Andrik
  • Date: 2010-01-19 20:16:15 UTC
  • Revision ID: james.westby@ubuntu.com-20100119201615-bdokwbbqhn1fo1iq
Tags: upstream-2.2.1
ImportĀ upstreamĀ versionĀ 2.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//This file is part of AcetoneISO. Copyright 2006,2007,2008,2009 Marco Di Antonio and Fabrizio Di Marco (acetoneiso@gmail.com)
 
2
//
 
3
//    AcetoneISO is free software: you can redistribute it and/or modify
 
4
//    it under the terms of the GNU General Public License as published by
 
5
//    the Free Software Foundation, either version 3 of the License, or
 
6
//    (at your option) any later version.
 
7
//
 
8
//    AcetoneISO is distributed in the hope that it will be useful,
 
9
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
//    GNU General Public License for more details.
 
12
//
 
13
//    You should have received a copy of the GNU General Public License
 
14
//    along with AcetoneISO.  If not, see <http://www.gnu.org/licenses/>.
 
15
#ifndef OPTIONS_H
 
16
#define OPTIONS_H
 
17
#include <QFile>
 
18
#include <QDialog>
 
19
#include "../build/ui_options.h"
 
20
//
 
21
class optionsDiag : public QDialog, public Ui::options
 
22
{
 
23
Q_OBJECT
 
24
public:
 
25
        optionsDiag( QWidget * parent = 0, Qt::WFlags f = 0 );
 
26
private slots:
 
27
   void optionss();
 
28
   void update_options();
 
29
   void setDefaults();
 
30
   void getDbDir();
 
31
   void whatisdatabase();
 
32
   void setDefaultsadvanced();
 
33
   void advanceoptions();
 
34
   void update_options_advance();
 
35
   void clickedtrayenable(int stato);
 
36
   void recursivedb (int statodb);
 
37
   void cleanhistory(int cleanh);
 
38
};
 
39
#endif
 
40
 
 
41
 
 
42
 
 
43
 
 
44