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

sublime

view.h

00001 /***************************************************************************
00002  *   Copyright 2006-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 #ifndef SUBLIMEVIEW_H
00020 #define SUBLIMEVIEW_H
00021 
00022 #include <QtCore/QObject>
00023 
00024 #include "sublimeexport.h"
00025 
00026 class QAction;
00027 
00028 namespace Sublime {
00029 
00030 class Document;
00031 
00045 class SUBLIME_EXPORT View: public QObject {
00046     Q_OBJECT
00047 public:
00048     ~View();
00049 
00051     QList<QAction*> toolBarActions() const;
00052 
00054     Document *document() const;
00056     QWidget *widget(QWidget *parent = 0);
00058     bool hasWidget() const;
00059 
00061     virtual QString viewStatus() const;
00062 
00064     virtual QString viewState() const;
00066     virtual void setState(const QString& state);
00067 
00068 Q_SIGNALS:
00069     void raise(Sublime::View*);
00071     void statusChanged(Sublime::View*);
00072 
00073 public Q_SLOTS:
00074     void requestRaise();
00075 
00076 protected:
00077     View(Document *doc);
00083     virtual QWidget *createWidget(QWidget *parent);
00084 
00085 private:
00086     Q_PRIVATE_SLOT(d, void unsetWidget())
00087 
00088 
00089     //copy is not allowed, create a new view from the document instead
00090     View(const View &v);
00091     struct ViewPrivate *const d;
00092 
00093     friend class Document;
00094 };
00095 
00096 }
00097 
00098 #endif
00099 

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
  •   codegen
  •   duchain
  •   editor
  • outputview
  •     interfaces
  • 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