File: missing.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 (36 lines) | stat: -rw-r--r-- 637 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
#ifndef MISSINGFONT_H
#define MISSINGFONT_H

#include <qdialog.h>
#include <qlabel.h>
#include <qlayout.h>
#include <qpushbutton.h>
#include "scribusdoc.h"
#include "fontcombo.h"

class DmF : public QDialog
{
    Q_OBJECT

public:
    DmF( QWidget* parent, QString fon, preV *Prefs );
    ~DmF() {};

    QPushButton* PushButton1;
    QLabel* TextLabel6;
    QLabel* PixmapLabel1;
    FontCombo* Replace;
    QLabel* TextLabel1;
    QLabel* TextLabel4;
    QString Ersatz;

public slots:
    virtual void NeuerFont(const QString& e);

protected:
    QHBoxLayout* MissingFontLayout;
    QGridLayout* Layout1;

};

#endif // MISSINGFONT_H