You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
793 B
C++
41 lines
793 B
C++
/* INDI Options (subclass)
|
|
Copyright (C) 2005 Jasem Mutlaq
|
|
|
|
This application 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 INDIFITSCONF_H
|
|
#define INDIFITSCONF_H
|
|
|
|
#include "indiconf.h"
|
|
|
|
class INDIFITSConf : public INDIConf
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
INDIFITSConf(TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
|
|
~INDIFITSConf();
|
|
/*$PUBLIC_FUNCTIONS$*/
|
|
|
|
void loadOptions();
|
|
void saveOptions();
|
|
|
|
public slots:
|
|
void comboUpdate(int newIndex);
|
|
void saveFITSDirectory();
|
|
|
|
private:
|
|
int lastIndex;
|
|
TQStringList filterList;
|
|
|
|
|
|
};
|
|
|
|
#endif
|
|
|