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.
tdeedu/kstars/kstars/conbridlg.h

65 lines
1.8 KiB

/***************************************************************************
conbridlg.h - Contrast/Brightness Dialog
-------------------
begin : Fri Feb 6th 2004
copyright : (C) 2004 by Jasem Mutlaq
email : mutlaqja@ikarustech.com
***************************************************************************/
/***************************************************************************
* *
* 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 CONTRASTBRIGHTNESSDLG_H
#define CONTRASTBRIGHTNESSDLG_H
#include <kdialogbase.h>
#include <tdelocale.h>
class ConBriForm;
class FITSViewer;
class TQImage;
class ContrastBrightnessDlg : public KDialogBase {
Q_OBJECT
public:
ContrastBrightnessDlg(TQWidget *parent=0);
~ContrastBrightnessDlg();
TQSize sizeHint() const;
void range(int min, int max, int & num);
void range(float min, float max, float & num);
float *localImgBuffer;
float offs;
float scale;
private:
int contrast;
int brightness;
int height;
int width;
FITSViewer *viewer;
ConBriForm *ConBriDlg;
//unsigned char *localImgBuffer;
TQImage *displayImage;
TQImage *tempImage;
public slots:
void setContrast(int contrastValue);
void setBrightness(int brightnessValue);
};
#endif