summaryrefslogtreecommitdiffstats
path: root/kcontrol/tdefontinst/viewpart/FontViewerApp.cpp
blob: 45aeffe886d3efbfd299284df750187cceff15aa (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
////////////////////////////////////////////////////////////////////////////////
//
// Class Names   : KFI::CFontViewerApp, KFI::CFontViewerAppMainWindow
// Author        : Craig Drummond
// Project       : K Font Installer (tdefontinst-kcontrol)
// Creation Date : 30/04/2004
// Version       : $Revision$ $Date$
//
////////////////////////////////////////////////////////////////////////////////
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
//
////////////////////////////////////////////////////////////////////////////////
// (C) Craig Drummond, 2004
////////////////////////////////////////////////////////////////////////////////

#include "FontViewerApp.h"
#include "KfiConstants.h"
#include <tdeaboutdata.h>
#include <tdecmdlineargs.h>
#include <klibloader.h>
#include <klocale.h>
#include <kglobal.h>
#include <tdefiledialog.h>
#include <tdeconfig.h>

#define CFG_GROUP    "FontViewer Settings"
#define CFG_SIZE_KEY "Window Size"

namespace KFI
{

CFontViewerAppMainWindow::CFontViewerAppMainWindow()
                        : KParts::MainWindow((TQWidget *)0L)
{
    KLibFactory *factory=KLibLoader::self()->factory("libtdefontviewpart");

    if(factory)
    {
        KStdAction::open(TQT_TQOBJECT(this), TQT_SLOT(fileOpen()), actionCollection());
        KStdAction::quit(TQT_TQOBJECT(kapp), TQT_SLOT(quit()), actionCollection());

        itsPreview=(KParts::ReadOnlyPart *)factory->create(TQT_TQOBJECT(this), "fontvier", "KParts::ReadOnlyPart");

        TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
        KURL         openURL;

        if(args->count() > 0)
        {
            KURL url(args->url(args->count() - 1));

            if(url.isValid())
                openURL = url;
        }

        setCentralWidget(itsPreview->widget());
        createGUI(itsPreview);

        if(!openURL.isEmpty())
            itsPreview->openURL(openURL);

        TQSize             defSize(450, 380);
        TDEConfigGroupSaver saver(kapp->config(), CFG_GROUP);

        resize(kapp->config()->readSizeEntry(CFG_SIZE_KEY, &defSize));
        show();
    }
    else
        exit(0);
}

CFontViewerAppMainWindow::~CFontViewerAppMainWindow()
{
    TDEConfigGroupSaver saver(kapp->config(), CFG_GROUP);
    kapp->config()->writeEntry(CFG_SIZE_KEY, size());
    kapp->config()->sync();
}

void CFontViewerAppMainWindow::fileOpen()
{
    KURL url(KFileDialog::getOpenURL(TQString::null, "application/x-font-ttf application/x-font-otf "
                                                    "application/x-font-ttc application/x-font-type1 "
                                                    "application/x-font-bdf application/x-font-pcf ",
                                     this, i18n("Select Font to View")));
    if(url.isValid())
        itsPreview->openURL(url);
}

CFontViewerApp::CFontViewerApp()
{
    TDEGlobal::locale()->insertCatalogue(KFI_CATALOGUE);
    setMainWidget(new CFontViewerAppMainWindow());
}

}

static TDECmdLineOptions options[] =
{
    { "+[URL]", I18N_NOOP("URL to open"), 0 },
    TDECmdLineLastOption
};

static TDEAboutData aboutData("tdefontview", I18N_NOOP("Font Viewer"), 0, I18N_NOOP("Simple font viewer"),
                            TDEAboutData::License_GPL,
                            I18N_NOOP("(c) Craig Drummond, 2004"));

int main(int argc, char **argv)
{
    TDECmdLineArgs::init(argc, argv, &aboutData);
    TDECmdLineArgs::addCmdLineOptions(options);
    KFI::CFontViewerApp::addCmdLineOptions();

    KFI::CFontViewerApp app;

    return app.exec();
}

#include "FontViewerApp.moc"