• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • KDevelop Generic Shell
 

KDevelop Generic Shell

  • src
languageselectwidget.h
1 /***************************************************************************
2  * Copyright (C) 2003 by Harald Fernengel *
3  * harry@kdevelop.org *
4  * *
5  * This program is free software; you can redistribute it and/or modify *
6  * it under the terms of the GNU General Public License as published by *
7  * the Free Software Foundation; either version 2 of the License, or *
8  * (at your option) any later version. *
9  * *
10  ***************************************************************************/
11 
12 #ifndef _LANGUAGESELECTWIDGET_H_
13 #define _LANGUAGESELECTWIDGET_H_
14 
15 #include <tqdialog.h>
16 #include <tqdom.h>
17 #include <tqstringlist.h>
18 
19 class TQListView;
20 
21 class LanguageSelectWidget : public TQWidget
22 {
23  Q_OBJECT
24 
25 
26 public:
27  /* for selection of project parts */
28  LanguageSelectWidget( TQDomDocument &projectDom, TQWidget *parent=0, const char *name=0 );
29  ~LanguageSelectWidget();
30 
31 public slots:
32  void accept();
33 
34 signals:
35  void accepted();
36 
37 private slots:
38  void itemSelected( TQListViewItem * );
39 
40 private:
41  void init();
42  void readProjectConfig();
43  void saveProjectConfig();
44 
45  TQDomDocument m_projectDom;
46  TQListView * _pluginList;
47  TQLabel * _pluginDescription;
48  TQLabel * _currentLanguage;
49 
50 };
51 
52 #endif

KDevelop Generic Shell

Skip menu "KDevelop Generic Shell"
  • Main Page
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Class Members
  • Related Pages

KDevelop Generic Shell

Skip menu "KDevelop Generic Shell"
  • buildtools
  •   lib
  •     base
  •     parsers
  •       autotools
  •       qmake
  •     widgets
  •   api
  • languages
  •   lib
  •     debugger
  •     designer_integration
  •     interfaces
  • lib
  •   catalog
  •   interfaces
  •     extensions
  •     external
  •     extras
  •   util
  •   widgets
  •     propeditor
  • parts
  •   documentation
  •     interfaces
  • src
  •   profileengine
  •     lib
Generated for KDevelop Generic Shell by doxygen 1.8.13
This website is maintained by Timothy Pearson.