You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
piklab/src/tools/gui/toolchain_config_center.h

47 lines
1.4 KiB

/***************************************************************************
* 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