summaryrefslogtreecommitdiffstats
path: root/src/tools/gui/toolchain_config_center.h
blob: ffed24c2903f9466d259419d86121be47468791a (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
/***************************************************************************
 *   Copyright (C) 2005 Nicolas Hadacek <hadacek@kde.org>                  *
 *   Copyright (C) 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 TOOLCHAIN_CONFIG_CENTER_H
#define TOOLCHAIN_CONFIG_CENTER_H

#include <tqcheckbox.h>
#include <tqcombobox.h>
#include <tqlineedit.h>
#include <tqwidgetstack.h>

#include "tools/gui/tool_config_widget.h"
#include "common/gui/dialog.h"
class ToolchainConfigWidget;

class ToolchainsConfigCenter : public TreeListDialog
{
TQ_OBJECT
  
public:
  ToolchainsConfigCenter(const Tool::Group &group, TQWidget *parent);

public slots:
  virtual void slotOk();
  virtual void slotApply();
  virtual void slotUser1();
  virtual void slotUser2();

private slots:
  void aboutToShowPageSlot(TQWidget *page);
  void showInformationDialog();

private:
  KPushButton *_infoButton;
  TQMap<TQWidget *, ToolchainConfigWidget *> _pages;

  ToolchainConfigWidget *current() const;
};

#endif