Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
bibletime/bibletime/frontend/cprofile.h

103 rindas
2.3 KiB

/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2006 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/
#ifndef CPROFILE_H
#define CPROFILE_H
#include "cprofilewindow.h"
//TQt includes
#include <tqptrlist.h>
namespace Profile {
/** Manages one profile file. Provides functions to save and restore settings of the available display windows.
* @author The BibleTime team
*/
class CProfile {
public:
CProfile(const TQString& fileName, const TQString& name = TQString());
~CProfile();
/**
* Saves the profile to the file given in the constructor.
* @param windows The list of windows available in the profile.
*/
const bool save( TQPtrList<CProfileWindow> windows );
/**
* Saves the profile to the file given in the constructor.
*/
const bool save();
/**
* Loads the profile from the file given in the constructor.
* @return The list of profiled window which exist in the profile.
*/
TQPtrList<CProfileWindow> load();
/**
* Returns the name of this profile.
*/
const TQString& name();
/**
* Returns the filename used for this profile.
*/
const TQString& filename();
/**
* Initializes the XML for the first time (use to create a new profile)
*/
void init(const TQString);
/**
* Chnages the name of this profile.
*/
void setName( const TQString& );
/**
* Returns true if the main window was in fullscreen mode as the profile was saved.
*/
const bool fullscreen() const;
/**
* Set the parameter to true if the main window coveres the full screen size.
*/
void setFullscreen( const bool fullscreen );
/**
* Returns true if the main window was maximized as the profile was saved.
*/
const bool maximized() const;
/**
* Set the parameter to true if the main window is maximized.
*/
void setMaximized( const bool maximized );
/**
* Sets the geoemtry of the main window
*/
void setGeometry( const TQRect rect );
/**
* Returns the geometry of the main window
*/
const TQRect geometry();
private:
/**
* Loads the basic settings requires for proper operation.
*/
void loadBasics();
void saveBasics();
TQPtrList<CProfileWindow> m_profileWindows;
TQString m_name;
TQString m_filename;
bool m_fullscreen;
bool m_maximized;
TQRect m_geometry;
};
} //end of namespace Profile
#endif