Source: /app/hbasic/hbasic/gui_db_access/db_read_join.h
|
|
|
|
/* **************************************************************************
File: dlg_read_join.h
Desc: Window to ask the user what type of join should be used
----------------------------------------------------------------------------
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. */
/* ----------------------------------------------------------------------- */
/**
class dlgReadJoin : widget to get type of join that should be created.
*/
/* ----------------------------------------------------------------------- */
/* Changelog: Description of important changes within this file. */
/* Please report with date, maintainer and change description. */
/* ----------------------------------------------------------------------- */
#ifndef READJOIN_H
#define READJOIN_H
#include
#include "structs.h"
class QPushButton;
class QLabel;
class QButtonGroup;
class QRadioButton;
class HBDesignConnect;
/**
dlgReadJoin : Get type of join for database query.
*/
class dlgReadJoin : public QDialog
{
Q_OBJECT
public:
dlgReadJoin( QWidget *parent, HBDesignConnect *connect_ptr );
/* If the user changed the join type store it in this method. */
void storeJoinType( void );
private:
HBDesignConnect *current_connect;
QLabel *header_label;
QPushButton* buttonOk;
QPushButton* buttonCancel;
QButtonGroup *bg_query_type;
QRadioButton *rb_inner_join;
QRadioButton *rb_left_join;
QRadioButton *rb_right_join;
void setQueryType( void );
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |