• Skip to content
  • Skip to link menu
KDE 4.2 API Reference
  • KDE API Reference
  • KDevelop Platform Libraries
  • Sitemap
  • Contact Us
 

sublime

example2.cpp

00001 /***************************************************************************
00002  *   Copyright 2007 Alexander Dymo <adymo@kdevelop.org>                    *
00003  *                                                                         *
00004  *   This program is free software; you can redistribute it and/or modify  *
00005  *   it under the terms of the GNU Library General Public License as       *
00006  *   published by the Free Software Foundation; either version 2 of the    *
00007  *   License, or (at your option) any later version.                       *
00008  *                                                                         *
00009  *   This program is distributed in the hope that it will be useful,       *
00010  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00011  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
00012  *   GNU General Public License for more details.                          *
00013  *                                                                         *
00014  *   You should have received a copy of the GNU Library General Public     *
00015  *   License along with this program; if not, write to the                 *
00016  *   Free Software Foundation, Inc.,                                       *
00017  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
00018  ***************************************************************************/
00019 #include <kaboutdata.h>
00020 #include <kapplication.h>
00021 #include <kcmdlineargs.h>
00022 #include <klocale.h>
00023 #include <kurl.h>
00024 
00025 #include <sublime/area.h>
00026 #include <sublime/urldocument.h>
00027 #include <sublime/controller.h>
00028 
00029 #include "example2main.h"
00030 
00031 int main(int argc, char **argv)
00032 {
00033     static const char description[] = "Sublime UI Library: Splitting Example";
00034     KAboutData aboutData("example2", 0, ki18n("Example 2"),
00035                          "1.0", ki18n(description), KAboutData::License_LGPL,
00036                          ki18n("(c) 2007, Alexander Dymo"), KLocalizedString(), "http://www.kdevelop.org" );
00037 
00038     KCmdLineArgs::init(argc, argv, &aboutData);
00039     KApplication app;
00040 
00041     Sublime::Controller *controller = new Sublime::Controller(&app);
00042     Sublime::Area *area = new Sublime::Area(controller, "Area");
00043     Sublime::Document *doc = new Sublime::UrlDocument(controller, KUrl::fromPath("~/foo.cpp"));
00044     area->addView(doc->createView());
00045     Example2Main *window = new Example2Main(controller);
00046     controller->showArea(area, window);
00047     window->resize(800, 600);
00048     window->show();
00049 
00050     return app.exec();
00051 }
00052 

sublime

Skip menu "sublime"
  • Main Page
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Class Members
  • Related Pages

KDevelop Platform Libraries

Skip menu "KDevelop Platform Libraries"
  • interfaces
  • language
  •   duchain
  •   editor
  • outputview
  • project
  • shell
  • sublime
  • util
  • vcs
Generated for KDevelop Platform Libraries by doxygen 1.5.4
This website is maintained by Adriaan de Groot and Allen Winter.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal