File: video.h

package info (click to toggle)
snes9express 1.26.2-1
  • links: PTS
  • area: contrib
  • in suites: woody
  • size: 504 kB
  • ctags: 809
  • sloc: cpp: 5,279; sh: 186; makefile: 116
file content (28 lines) | stat: -rw-r--r-- 757 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef S9X_VIDEO_H
#define S9X_VIDEO_H

#include "defines.h"
#include "frend.h"
#include "misc.h"

class s9x_Video :       public s9x_Notepage {
 private:
   fr_Checkbox		Scale, HiRes, TVmode, FullScreen;
   fr_PulldownMenu	VideoSystem;
   fr_Window		FrameWindow;
   fr_Checkbox		UseFrameSkip, UseFrameTime, DisplayFrameRate;
   fr_NumEntry		FrameSkip, FrameTime;
   fr_Label		FrameSkipLabel, FrameTimeLabel;
   fr_Button		FrameWindowBtn, FrameWindowClose;
   fr_MenuItem		*NTSC, *PAL;
   void			EventOccurred(fr_Event*e);
 public:
                        s9x_Video(fr_Element*parent);
   			~s9x_Video();
   void			SetToDefaults();
   void			Set9xVersion(float version);
   void			SiftArgs(fr_ArgList& L);
   void			CompileArgs(fr_ArgList& L);
};

#endif