📄 frame_silver.h
字号:
/* $Id: frame_silver.h,v 1.6 2004/01/02 15:42:44 mbn Exp $
ClanGUI, copyrights by various people. Have a look in the CREDITS file.
This sourcecode is distributed using the Library GNU Public Licence,
version 2 or (at your option) any later version. Please read LICENSE
for details.
*/
//! clanGUI="Style: Silver"
//! header=guistylesilver.h
#ifndef header_frame_silver
#define header_frame_silver
#if _MSC_VER > 1000
#pragma once
#endif
#include "../GUI/frame.h"
#include "../GUI/component_style.h"
class CL_Surface;
class CL_StyleManager_Silver;
//: Frame default style.
//- !group=GUI/Style: Silver!
//- !header=guistylesilver.h!
class CL_Frame_Silver : public CL_ComponentStyle
{
//! Construction:
public:
//: Constructor
CL_Frame_Silver(
CL_Frame *frame,
CL_StyleManager_Silver *style);
//: Destructor
virtual ~CL_Frame_Silver();
//! Implementation:
private:
CL_Slot slot_set_options;
CL_Slot slot_paint;
void on_set_options(const CL_DomElement &options);
void on_paint();
CL_Frame *frame;
enum Mode
{
center,
stretch,
tile
} mode;
CL_StyleManager_Silver *style;
CL_ResourceManager *resources;
CL_Surface *sur_surface;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -