~verzegnassi-stefano/+junk/ubuntu-terminal-app-uitk13

« back to all changes in this revision

Viewing changes to src/plugin/qmltermwidget/qtermwidget/src/main.cpp

  • Committer: Filippo Scognamiglio
  • Date: 2014-10-25 04:42:31 UTC
  • Revision ID: flscogna@gmail.com-20141025044231-javjhusbqa171127
Initial reboot commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  Copyright (C) 2008 e_k (e_k@users.sourceforge.net)
 
2
 
 
3
    This library is free software; you can redistribute it and/or
 
4
    modify it under the terms of the GNU Library General Public
 
5
    License as published by the Free Software Foundation; either
 
6
    version 2 of the License, or (at your option) any later version.
 
7
                
 
8
    This library is distributed in the hope that it will be useful,
 
9
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
    Library General Public License for more details.
 
12
                                
 
13
    You should have received a copy of the GNU Library General Public License
 
14
    along with this library; see the file COPYING.LIB.  If not, write to
 
15
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
16
    Boston, MA 02110-1301, USA.
 
17
*/
 
18
 
 
19
 
 
20
#include <QApplication>
 
21
#include <QtDebug>
 
22
#include <QIcon>
 
23
#include <QMainWindow>
 
24
#include <QMenuBar>
 
25
 
 
26
#include "qtermwidget.h"
 
27
 
 
28
int main(int argc, char *argv[])
 
29
{
 
30
    QApplication app(argc, argv);
 
31
    QIcon::setThemeName("oxygen");
 
32
    QMainWindow *mainWindow = new QMainWindow();
 
33
   
 
34
    QTermWidget *console = new QTermWidget();
 
35
 
 
36
    QMenuBar *menuBar = new QMenuBar(mainWindow);
 
37
    QMenu *actionsMenu = new QMenu("Actions", menuBar);
 
38
    menuBar->addMenu(actionsMenu);
 
39
    actionsMenu->addAction("Find..", console, SLOT(toggleShowSearchBar()), QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_F));
 
40
    actionsMenu->addAction("About Qt", &app, SLOT(aboutQt()));
 
41
    mainWindow->setMenuBar(menuBar);       
 
42
    
 
43
    QFont font = QApplication::font();
 
44
#ifdef Q_WS_MAC
 
45
    font.setFamily("Monaco");
 
46
#elif defined(Q_WS_QWS)
 
47
    font.setFamily("fixed");
 
48
#else
 
49
    font.setFamily("Monospace");
 
50
#endif
 
51
    font.setPointSize(12);
 
52
    
 
53
    console->setTerminalFont(font);
 
54
    
 
55
   // console->setColorScheme(COLOR_SCHEME_BLACK_ON_LIGHT_YELLOW);
 
56
    console->setScrollBarPosition(QTermWidget::ScrollBarRight);
 
57
 
 
58
    foreach (QString arg, QApplication::arguments())
 
59
    {
 
60
        if (console->availableColorSchemes().contains(arg))
 
61
            console->setColorScheme(arg);
 
62
        if (console->availableKeyBindings().contains(arg))
 
63
            console->setKeyBindings(arg);
 
64
    }
 
65
    
 
66
    mainWindow->setCentralWidget(console);
 
67
    mainWindow->resize(600, 400);
 
68
    
 
69
    // info output
 
70
    qDebug() << "* INFO *************************";
 
71
    qDebug() << " availableKeyBindings:" << console->availableKeyBindings();
 
72
    qDebug() << " keyBindings:" << console->keyBindings();
 
73
    qDebug() << " availableColorSchemes:" << console->availableColorSchemes();
 
74
    qDebug() << "* INFO END *********************";
 
75
    
 
76
    // real startup
 
77
    QObject::connect(console, SIGNAL(finished()), mainWindow, SLOT(close()));
 
78
 
 
79
    mainWindow->show();    
 
80
    return app.exec();
 
81
 
82