• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • KDevelop Buildtool Widgets Library
 

KDevelop Buildtool Widgets Library

  • buildtools
  • lib
  • widgets
addfilesdialog.h
1 /* This file is part of the KDE project
2  Copyright (C) 2003 Alexander Dymo <cloudtemple@mksat.net>
3 
4  This library is free software; you can redistribute it and/or
5  modify it under the terms of the GNU Library General Public
6  License as published by the Free Software Foundation; either
7  version 2 of the License, or (at your option) any later version.
8 
9  This library is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  Library General Public License for more details.
13 
14  You should have received a copy of the GNU Library General Public License
15  along with this library; see the file COPYING.LIB. If not, write to
16  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  Boston, MA 02110-1301, USA.
18 */
19 #ifndef ADDFILESDIALOG_H
20 #define ADDFILESDIALOG_H
21 
22 #include <tdeversion.h>
23 #include <tdefiledialog.h>
24 
25 class TQComboBox;
26 
34 class AddFilesDialog : public KFileDialog
35 {
36  Q_OBJECT
37 
38 public:
39  enum Mode { Copy, Link, Relative };
40 
41  AddFilesDialog(const TQString& startDir, const TQString& filter,
42  TQWidget *parent, const char *name, bool modal);
43 
44  AddFilesDialog(const TQString& startDir, const TQString& filter,
45  TQWidget *parent, const char *name, bool modal, TQComboBox *extraWidget);
46 
47  virtual ~AddFilesDialog();
48 
49  virtual AddFilesDialog::Mode mode();
50 
51 private:
52  TQComboBox * m_extraWidget;
53 
54 private slots:
55  void storePreferred(int index);
56 };
57 
58 #endif
AddFilesDialog
This class allows you to choose additional modes when adding files to the project.
Definition: addfilesdialog.h:34

KDevelop Buildtool Widgets Library

Skip menu "KDevelop Buildtool Widgets Library"
  • Main Page
  • Namespace List
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members

KDevelop Buildtool Widgets Library

Skip menu "KDevelop Buildtool Widgets Library"
  • 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 Buildtool Widgets Library by doxygen 1.8.13
This website is maintained by Timothy Pearson.