File: muster.h

package info (click to toggle)
scribus 1.2.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 29,928 kB
  • ctags: 8,814
  • sloc: cpp: 98,550; sh: 16,484; ansic: 10,295; perl: 2,818; makefile: 1,340; python: 1,177; xml: 83
file content (59 lines) | stat: -rw-r--r-- 1,370 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/****************************************************************************
** Form interface generated from reading ui file 'Muster.ui'
**
** Created: Thu Nov 1 09:45:36 2001
**      by:  The User Interface Compiler (uic)
**
** WARNING! All changes made in this file will be lost!
****************************************************************************/
#ifndef MUSTERSEITEN_H
#define MUSTERSEITEN_H

#include <qdialog.h>
#include <qlistbox.h>
#include <qpushbutton.h>
#include <qlayout.h>
#include <qtooltip.h>
#include "scribusdoc.h"
#include "scribusview.h"

class MusterSeiten : public QDialog
{ 
    Q_OBJECT

public:
    MusterSeiten( QWidget* parent, ScribusDoc *doc, ScribusView *view, QString temp);
    ~MusterSeiten() {};
    void closeEvent(QCloseEvent *ce);

private:
    void updateMList(QString nam);
    QListBox* ListBox1;
	QPushButton* LoadM;
    QPushButton* NewB;
    QPushButton* DuplicateB;
    QPushButton* DeleteB;
    QPushButton* ExitB;
    ScribusDoc *Doc;
    ScribusView *View;
    QString sMuster;

private slots:
	void ExitEditor();
	void DuplTemp();
	void DelTemp();
	void NewTemp();
	void loadMpage();
	void selTemplate(QListBoxItem *c);
	
signals:
	void CreateNew(int);
	void LoadPage(QString, int, bool);
	void Fertig();
		
protected:
    QHBoxLayout* MusterSeitenLayout;
    QVBoxLayout* Layout2;
};

#endif // MUSTERSEITEN_H