r14054 by cbradney - Add missing prefs_pane.h

scribus-commit scribus-commit at lists.scribus.net
Sun Sep 27 01:30:13 CEST 2009


Revision: 14054
Author: cbradney
Date: 2009-09-26T23:27:37.305968Z
Commit message: Add missing prefs_pane.h

Changeset: 
A  /trunk/Scribus/scribus/ui/prefs_pane.h

Diffs:
Index: scribus/ui/prefs_pane.h
===================================================================
--- scribus/ui/prefs_pane.h	(revision 0)
+++ scribus/ui/prefs_pane.h	(revision 14054)
@@ -0,0 +1,24 @@
+/*
+For general Scribus (>=1.3.2) copyright and licensing information please refer
+to the COPYING file provided with the program. Following this notice may exist
+a copyright and/or license notice that predates the release of Scribus 1.3.2
+for which a new license (GPL+exception) is in place.
+*/
+
+#ifndef PREFS_PANE_H
+#define PREFS_PANE_H
+
+#include <QWidget>
+
+class Prefs_Pane : public QWidget
+{
+	Q_OBJECT
+
+	public:
+		Prefs_Pane(QWidget* parent) : QWidget(parent) {};
+		~Prefs_Pane() {} ;
+		virtual void restoreDefaults(struct ApplicationPrefs *prefsData) = 0;
+		virtual void saveGuiToPrefs(struct ApplicationPrefs *prefsData) const = 0;
+};
+
+#endif // PREFS_PANE_H




More information about the scribus-commit mailing list