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.
tdewebdev/kommander/editor/newformimpl.h

75 lines
2.0 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

/**********************************************************************
This file is based on TQt Designer, Copyright (C) 2000 Trolltech AS.  All rights reserved.
This file may be distributed and/or modified under the terms of the
GNU General Public License version 2 as published by the Free Software
Foundation and appearing in the file LICENSE.GPL included in the
packaging of this file.
This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
See http://www.trolltech.com/gpl/ for GPL licensing information.
Modified for Kommander:
(C) 2004 Michal Rudolf <mrudolf@tdewebdev.org>
**********************************************************************/
#ifndef NEWFORMIMPL_H
#define NEWFORMIMPL_H
#include "newform.h"
#include <tqiconview.h>
class FormFile;
class NewItem : public TQIconViewItem
{
public:
enum Type {Form, CustomForm};
NewItem( TQIconView *view, const TQString &text ) : TQIconViewItem( view, text ) {}
virtual void insert( ) = 0;
};
class FormItem : public NewItem
{
public:
enum FormType {Dialog, Wizard, MainWindow};
FormItem( TQIconView *view, const TQString &text);
void insert();
int rtti() const {return (int)Form;}
void setFormType(FormType ft) {fType = ft;}
FormType formType() const {return fType;}
private:
FormType fType;
};
class CustomFormItem : public NewItem
{
public:
CustomFormItem( TQIconView *view, const TQString &text );
void insert();
int rtti() const {return (int)CustomForm; }
void setTemplateFile(const TQString &tf) {templFile = tf;}
TQString templateFileName() const {return templFile;}
private:
TQString templFile;
};
class NewForm : public NewFormBase
{
Q_OBJECT
TQ_OBJECT
public:
NewForm( TQWidget *parent, const TQString &templatePath );
void accept();
protected slots:
void itemChanged(TQIconViewItem *item);
private:
TQPtrList<TQIconViewItem> allItems;
};
#endif