summaryrefslogtreecommitdiffstats
path: root/src/libgui/new_dialogs.h
blob: dbdb09e61727735d305135b083bdce0ef20ba857 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/***************************************************************************
 *   Copyright (C) 2005-2007 Nicolas Hadacek <hadacek@kde.org>             *
 *   Copyright (C) 2003-2004 Alain Gibaud <alain.gibaud@free.fr>           *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 ***************************************************************************/
#ifndef NEW_DIALOGS_H
#define NEW_DIALOGS_H

#include <tqlineedit.h>
#include <tqcheckbox.h>
#include <tqcombobox.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <kcombobox.h>

#include "common/global/purl.h"
#include "common/gui/dialog.h"
class Project;

//----------------------------------------------------------------------------
class NewDialog : public Dialog
{
Q_OBJECT
  
public:
  NewDialog(const TQString &caption, TQWidget *parent);

protected:
  TQGridLayout *_top;
  TQLabel      *_fLabel;
  TQLineEdit   *_filename, *_dir;

  virtual TQString startDir() const = 0;

private slots:
  void changed();
  void browse();
};

//----------------------------------------------------------------------------
class NewFileDialog : public NewDialog
{
Q_OBJECT
  
public:
  NewFileDialog(Project *project, TQWidget *parent);
  PURL::Url url() const;
  bool addToProject() const { return (_project ? _add->isChecked() : false); }

private:
  Project   *_project;
  TQCheckBox *_add;

  virtual TQString startDir() const;
};

#endif