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.
codeine/src/app/videoSettings.h

27 lines
607 B

// (C) 2005 Max Howell (max.howell@methylblue.com)
// See COPYING file for licensing information
#ifndef CODEINE_VIDEO_SETTINGS_H
#define CODEINE_VIDEO_SETTINGS_H
#include "codeine.h"
#include <kdialog.h>
namespace Codeine
{
class VideoSettingsDialog : public KDialog
{
VideoSettingsDialog(); //disable
VideoSettingsDialog( const VideoSettingsDialog& ); //disable
VideoSettingsDialog &operator=( const VideoSettingsDialog& ); //disable
public:
VideoSettingsDialog( TQWidget *parent );
static void stateChanged( TQWidget *parent, Engine::State );
};
}
#endif