File: webpublishdialog_config.h

package info (click to toggle)
texstudio 2.3%2Bdebian-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 20,992 kB
  • sloc: cpp: 61,734; ansic: 4,300; xml: 726; sh: 125; makefile: 25
file content (24 lines) | stat: -rw-r--r-- 613 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef WEBPUBLISHDIALOGCONFIG_H
#define WEBPUBLISHDIALOGCONFIG_H

//having the configuration in a single file allows to change it, 
//without having a relationship between completer and configmanager
//so modifying one doesn't lead to a recompilation of the other

#include <QSettings>

class WebPublishDialogConfig
{
public:
	int userwidth, compil, tocdepth, startindex, navigation;
	bool noindex;
	QString title, address, browser, contentname, align, lastdir, dviopt;

	void readSettings(QSettings& settings);
	void saveSettings(QSettings& settings);
private:
};

//implemented in webpublishdialog.cpp

#endif