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

📄 dx_brush.cpp

📁 彩信浏览器
💻 CPP
字号:
// This file is part of Ambulant Player, www.ambulantplayer.org.//// Copyright (C) 2003-2007 Stichting CWI, // Kruislaan 413, 1098 SJ Amsterdam, The Netherlands.//// Ambulant Player is free software; you can redistribute it and/or modify// it under the terms of the GNU Lesser General Public License as published by// the Free Software Foundation; either version 2.1 of the License, or// (at your option) any later version.//// Ambulant Player is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the// GNU Lesser General Public License for more details.//// You should have received a copy of the GNU Lesser General Public License// along with Ambulant Player; if not, write to the Free Software// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA/*  * @$Id: dx_brush.cpp,v 1.26 2007/02/12 14:14:55 jackjansen Exp $  */#include "ambulant/gui/dx/dx_brush.h"#include "ambulant/gui/dx/dx_viewport.h"#include "ambulant/gui/dx/dx_window.h"#include "ambulant/gui/dx/dx_transition.h"#include "ambulant/common/region_info.h"#include "ambulant/lib/node.h"#include "ambulant/lib/logger.h"#ifndef AM_DBG#define AM_DBG if(0)#endifusing namespace ambulant;gui::dx::dx_brush::dx_brush(	common::playable_notification *context,	common::playable_notification::cookie_type cookie,	const lib::node *node,	lib::event_processor* evp,	dx_playables_context *dxplayer):   dx_renderer_playable(context, cookie, node, evp, dxplayer),	m_color(0) {	AM_DBG lib::logger::get_logger()->debug("dx_brush::dx_brush(0x%x)", this);}gui::dx::dx_brush::~dx_brush() {	AM_DBG lib::logger::get_logger()->debug("~dx_brush()");}void gui::dx::dx_brush::start(double t) {	AM_DBG lib::logger::get_logger()->debug("dx_brush::start(0x%x)", this);		// Has this been activated	if(m_activated) {		// repeat		return;		}		const char *color_attr = m_node->get_attribute("color");	if(color_attr && lib::is_color(color_attr))		m_color = lib::to_color(color_attr);	else {		const common::region_info *ri = m_dest->get_info();		m_color = ri?ri->get_bgcolor():0;	}		// Activate this renderer.	// Add this renderer to the display list of the region	m_dest->show(this);	m_dest->need_events(m_wantclicks);	m_activated = true;			// Request a redraw	m_dest->need_redraw();	m_context->started(m_cookie);	m_context->stopped(m_cookie);}void gui::dx::dx_brush::stop() {	AM_DBG lib::logger::get_logger()->debug("dx_brush::stop(0x%x)", this);	m_dest->renderer_done(this);	m_activated = false;	m_dxplayer->stopped(this);	m_context->stopped(m_cookie);}void gui::dx::dx_brush::user_event(const lib::point& pt, int what) {	if(what == common::user_event_click)		m_context->clicked(m_cookie);	else if(what == common::user_event_mouse_over) {		m_context->pointed(m_cookie);	}}void gui::dx::dx_brush::redraw(const lib::rect &dirty, common::gui_window *window) {//	AM_DBG lib::logger::get_logger()->debug("dx_brush::redraw(): %s", repr(dirty).c_str());	// Get the top-level surface	dx_window *dxwindow = static_cast<dx_window*>(window);	viewport *v = dxwindow->get_viewport();	if(!v) return;		// Draw the pixels of this renderer to the surface specified by m_dest.	lib::rect rc = dirty;	lib::point pt = m_dest->get_global_topleft();	rc.translate(pt);		dx_transition *tr = get_transition();	if (tr && tr->is_fullscreen()) {		v->set_fullscreen_transition(tr);		tr = NULL;	}	v->clear(rc, m_color, tr);} 

⌨️ 快捷键说明

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