defuze.me  Client
parameterspage.hpp
00001 /**************************************************************************
00002 ** defuze.me Epitech Innovative Project
00003 **
00004 ** Copyright 2010-2011
00005 **   Athena Calmettes - Jocelyn De La Rosa - Francois Gaillard
00006 **   Adrien Jarthon - Alexandre Moore - Luc Peres - Arnaud Sellier
00007 **
00008 ** All rights reserved.
00009 **************************************************************************/
00010 
00011 #ifndef PARAMETERSPAGE_HPP
00012 #define PARAMETERSPAGE_HPP
00013 
00014 #include <QWidget>
00015 
00016 namespace Gui
00017 {
00018     class ParametersPage : public QWidget
00019     {
00020         Q_OBJECT
00021     public:
00022         explicit ParametersPage(const QString &title, const QString &category, QWidget *parent = 0);
00023         const QString&  getPath() const;
00024         const QString&  getTitle() const;
00025         const QString&  getCategory() const;
00026 
00027     private:
00028         QString         title;
00029         QString         path;
00030         QString         category;
00031 
00032     };
00033 }
00034 
00035 #endif // PARAMETERSPAGE_HPP