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.
tdegraphics/kpovmodeler/pmrendermodesdialog.h

180 lines
4.4 KiB

/*
**************************************************************************
description
--------------------
copyright : (C) 2001 by Andreas Zehender
email : zehender@kde.org
**************************************************************************
**************************************************************************
* *
* 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 PMRENDERMODESDIALOG_H
#define PMRENDERMODESDIALOG_H
#include "pmrendermode.h"
#include <kdialogbase.h>
class TQCheckBox;
class TQComboBox;
class TQLineEdit;
class TQListBox;
class TQPushButton;
class TQTabWidget;
class TDEConfig;
class PMIntEdit;
class PMFloatEdit;
/**
* Dialog for editing a list of render modes.
* @see PMRenderMode
*/
class PMRenderModesDialog : public KDialogBase
{
TQ_OBJECT
public:
/**
* Creates a dialog for the modes list
*/
PMRenderModesDialog( PMRenderModeList* modes, TQWidget* parent = 0, const char* name = 0 );
static void saveConfig( TDEConfig* cfg );
static void restoreConfig( TDEConfig* cfg );
protected slots:
/**
* Called when a mode is selected in the list view
*/
void slotModeSelected( int index );
/**
* Called when the add button is klicked
*/
void slotAdd( );
/**
* Called when the remove button is klicked
*/
void slotRemove( );
/**
* Called when the up button is klicked
*/
void slotUp( );
/**
* Called when the down button is klicked
*/
void slotDown( );
/**
* Called when the edit button is klicked
*/
void slotEdit( );
/**
* Called when the modes are changed
*/
void slotChanged( );
virtual void slotOk( );
protected:
virtual void resizeEvent( TQResizeEvent* ev );
private:
void displayList( );
void checkButtons( );
PMRenderModeList* m_pOriginalModes;
PMRenderModeList m_workingModes;
int m_selectionIndex;
TQListBox* m_pListBox;
TQPushButton* m_pAddButton;
TQPushButton* m_pRemoveButton;
TQPushButton* m_pUpButton;
TQPushButton* m_pDownButton;
TQPushButton* m_pEditButton;
static TQSize s_size;
};
/**
* Dialog for editing one render mode
* @see PMRenderMode
*/
class PMRenderModeDialog : public KDialogBase
{
TQ_OBJECT
public:
/**
* Creates a dialog for the mode
*/
PMRenderModeDialog( PMRenderMode* mode, TQWidget* parent = 0, const char* name = 0 );
static void saveConfig( TDEConfig* cfg );
static void restoreConfig( TDEConfig* cfg );
protected:
virtual void resizeEvent( TQResizeEvent* ev );
protected slots:
virtual void slotOk( );
void slotChanged( );
void slotTextChanged( const TQString& );
void slotActivated( int );
void slotSubsectionToggled( bool );
void slotAntialiasingToggled( bool );
void slotJitterToggled( bool );
void slotToggled( bool );
private:
/**
* Saves the current changes. Returns true if successful.
*/
bool saveChanges( );
/**
* Returns true if the data is valid
*/
bool validate( );
/**
* Displays the selected mode
*/
void displayMode( );
void enableSubsection( bool yes );
void enableAntialiasing( bool yes );
void enableJitter( bool yes );
int qualityToIndex( int quality );
int indexToQuality( int index );
PMRenderMode* m_pMode;
TQTabWidget* m_pTabWidget;
TQLineEdit* m_pDescriptionEdit;
PMIntEdit* m_pHeightEdit;
PMIntEdit* m_pWidthEdit;
TQCheckBox* m_pSubsectionBox;
PMFloatEdit* m_pStartRowEdit;
PMFloatEdit* m_pEndRowEdit;
PMFloatEdit* m_pStartColumnEdit;
PMFloatEdit* m_pEndColumnEdit;
// quality
TQComboBox* m_pQualityCombo;
TQCheckBox* m_pAntialiasingBox;
TQComboBox* m_pSamplingCombo;
PMFloatEdit* m_pThresholdEdit;
TQCheckBox* m_pJitterBox;
PMFloatEdit* m_pJitterAmountEdit;
PMIntEdit* m_pAntialiasDepthEdit;
// output
TQCheckBox* m_pAlphaBox;
static TQSize s_size;
};
#endif