File: segment_editor_dialog.hpp

package info (click to toggle)
frogatto 1.3.1%2Bdfsg-7
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid, trixie
  • size: 3,980 kB
  • sloc: cpp: 74,685; objc: 526; ansic: 375; sh: 79; makefile: 77
file content (31 lines) | stat: -rw-r--r-- 444 bytes parent folder | download | duplicates (6)
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
29
30
31
#ifndef SEGMENT_EDITOR_DIALOG_HPP_INCLUDED
#define SEGMENT_EDITOR_DIALOG_HPP_INCLUDED
#ifndef NO_EDITOR

#include "dialog.hpp"

class editor;

namespace editor_dialogs
{

class segment_editor_dialog : public gui::dialog
{
public:
	explicit segment_editor_dialog(editor& e);
	void init();

	void set_segment(int num);

private:
	void set_segment_start_difficulty(int value);

	editor& editor_;
	int segment_;
};

}

#endif
#endif // !NO_EDITOR