Source: /app/hbasic/hbasic/dialogs/dlg_qtc_info.h
|
|
|
|
/* **************************************************************************
File: dlg_qtc_info.h
Desc: Window to display class information for Qt-C support
----------------------------------------------------------------------------
copyright : (C) 2001 HBasic project (Marcus Engels)
***************************************************************************/
/* **************************************************************************
* *
* 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. *
* *
***************************************************************************/
/* ----------------------------------------------------------------------- */
/* Classlist: List of classes that will be defined in this source file. */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* Changelog: Description of important changes within this file. */
/* Please report with date, maintainer and change description. */
/* ----------------------------------------------------------------------- */
#ifndef DLG_QTC_INFO_H
#define DLG_QTC_INFO_H
#include
#include
class QPushButton;
class QListView;
class QSplitter;
class QString;
class QListView;
class QListViewItem;
/**
CDlgProjectType : class that displays window to ask the user which new
project type should be generated.
*/
class CDlgQtcClassInfo : public QDialog
{
Q_OBJECT
public:
CDlgQtcClassInfo( QWidget *parent );
private:
QPushButton *btn_ok;
QListView *class_list;
QListView *member_list;
QSplitter *split_view;
void resizeEvent( QResizeEvent *evt );
private slots:
void class_selection_changed( QListViewItem *new_select );
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |