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.
filelight/src/part/settingsDialog.h

50 lines
1.0 KiB

//Author: Max Howell <max.howell@methylblue.com>, (C) 2003-4
//Copyright: See COPYING file that comes with this distribution
#ifndef SETTINGSDLG_H
#define SETTINGSDLG_H
#include "dialog.h" //generated by uic
#include <tqtimer.h>
class SettingsDialog : public Dialog
{
Q_OBJECT
TQ_OBJECT
public:
SettingsDialog( TQWidget* =0, const char* =0 );
protected:
virtual void closeEvent( TQCloseEvent * );
virtual void reject();
public slots:
void addDirectory();
void removeDirectory();
void toggleScanAcrossMounts( bool );
void toggleDontScanRemoteMounts( bool );
void toggleDontScanRemovableMedia( bool );
void reset();
void startTimer();
void toggleUseAntialiasing( bool = true );
void toggleVaryLabelFontSizes( bool );
void changeContrast( int );
void changeScheme( int );
void changeMinFontPitch( int );
void toggleShowSmallFiles( bool );
void slotSliderReleased();
signals:
void mapIsInvalid();
void canvasIsDirty( int );
private:
TQTimer m_timer;
static const uint TIMEOUT=1000;
};
#endif