⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 window_zz.cpp

📁 这是一款2d游戏引擎
💻 CPP
字号:
#include <ClanLib/display.h>
#include <ClanLib/gl.h>

#include "window_zz.h"
#include "stylemanager_zz.h"

CL_Window_ZZ::CL_Window_ZZ(
	CL_Window *window,
	CL_StyleManager_ZZ *style)
:
	CL_ComponentStyle(window),
	window(window),
	style(style),
    move_handler(0),
	resources(style->get_resources()),
    title_font(0),
    first_paint(true)
{
	slot_paint = window->sig_paint().connect(this, &CL_Window_ZZ::on_paint);

	button_quit = new CL_Button(CL_Rect(window->get_width() - 12,3,
        window->get_width(),15), "X", window, style);

    title_font = new CL_Font("Window/font", resources);

    rc_title = CL_Rect(0,0, title_font->get_width(window->get_title()) + 16,
        title_font->get_height(window->get_title()) + 10);

    move_handler = new CL_ComponentMoveHandler(rc_title, window);
    rc_main = CL_Rect(12,12, window->get_width(), window->get_height());

	slot_quit = button_quit->sig_clicked().connect(this, &CL_Window_ZZ::on_quit);
}

CL_Window_ZZ::~CL_Window_ZZ()
{
    delete title_font;
    delete move_handler;
}

void CL_Window_ZZ::on_paint()
{
    if (first_paint)
    {
        button_quit->set_position(CL_Rect(window->get_width() - 12,3,
            window->get_width(),15));
        
        rc_title = CL_Rect(0,0, title_font->get_width(window->get_title()) + 16,
            title_font->get_height(window->get_title()) + 10);
        
        delete move_handler;
        move_handler = new CL_ComponentMoveHandler(rc_title, window);
        rc_main = CL_Rect(12,12, window->get_width(), window->get_height());

        window->get_client_area()->set_position(CL_Rect(rc_main.left, rc_main.top,
            window->get_width(), window->get_height()));

        first_paint = false;
    }

	int width = window->get_width();
	int height = window->get_height();

	// Fill
    //-------
    CL_Color const clr_background(100, 120, 100, 180);
    CL_Rect const rc_main(12, 12, window->get_width(), window->get_height());
    style->fill_rounded_rect(rc_main, clr_background);

    // Outline
    CL_Color clr_outline(175, 205, 148);
    style->draw_rounded_rect(rc_main, clr_outline);

    
    CL_Color clr_title_bgnd(93, 156, 39);
    // title
    style->fill_rounded_rect(rc_title, clr_title_bgnd);
    style->draw_rounded_rect(rc_title, clr_outline);

    // draw title text
    title_font->draw(rc_title.left + 8, rc_title.top + 6,
        window->get_title());

}

void CL_Window_ZZ::on_quit()
{
	if (window->is_modal())
		window->quit();
	else
        window->close();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -