ctk-draw.c

来自「伟大的Contiki工程, 短小精悍 的操作系统, 学习编程不可不看」· C语言 代码 · 共 174 行

C
174
字号
/* * Copyright (c) 2004, Adam Dunkels. * All rights reserved.  * * Redistribution and use in source and binary forms, with or without  * modification, are permitted provided that the following conditions  * are met:  * 1. Redistributions of source code must retain the above copyright  *    notice, this list of conditions and the following disclaimer.  * 2. Redistributions in binary form must reproduce the above copyright  *    notice, this list of conditions and the following disclaimer in the  *    documentation and/or other materials provided with the distribution.  * 3. Neither the name of the Institute nor the names of its contributors  *    may be used to endorse or promote products derived from this software  *    without specific prior written permission.  * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF  * SUCH DAMAGE.  * * This file is part of the Contiki operating system. *  * Author: Adam Dunkels <adam@sics.se> * * $Id: ctk-draw.c,v 1.1 2007/05/23 23:19:13 oliverschmidt Exp $ */#include "ctk/ctk-draw.h"#include "ctk/ctk.h"#include "ctk/ctk-draw-service.h"unsigned char ctk_draw_windowborder_width = 1,  ctk_draw_windowborder_height = 1,  ctk_draw_windowtitle_height = 1;/*---------------------------------------------------------------------------*/voidctk_draw_init(void){  const struct ctk_draw_service *i;  struct service *s;    s = SERVICE_FIND(ctk_draw_service);  if(s != NULL) {    i = s->interface;        i->draw_init();    ctk_draw_windowborder_width = i->windowborder_width;    ctk_draw_windowborder_height = i->windowborder_height;    ctk_draw_windowtitle_height = i->windowtitle_height;  }}/*---------------------------------------------------------------------------*/voidctk_draw_clear(unsigned char clipy1, unsigned char clipy2){  SERVICE_CALL(ctk_draw_service, draw_clear(clipy1, clipy2));}/*---------------------------------------------------------------------------*/voidctk_draw_clear_window(struct ctk_window *window,		      unsigned char focus,		      unsigned char clipy1,		      unsigned char clipy2){  SERVICE_CALL(ctk_draw_service, draw_clear_window(window, focus,						   clipy1, clipy2));}/*---------------------------------------------------------------------------*/voidctk_draw_window(struct ctk_window *window,		unsigned char focus,		unsigned char clipy1,		unsigned char clipy2,		unsigned char draw_borders){  SERVICE_CALL(ctk_draw_service, draw_window(window, focus,					     clipy1, clipy2, draw_borders));}/*---------------------------------------------------------------------------*/voidctk_draw_dialog(struct ctk_window *dialog){  SERVICE_CALL(ctk_draw_service, draw_dialog(dialog));}/*---------------------------------------------------------------------------*/voidctk_draw_widget(struct ctk_widget *widget,		unsigned char focus,		unsigned char clipy1,		unsigned char clipy2){  SERVICE_CALL(ctk_draw_service, draw_widget(widget, focus,					     clipy1, clipy2));}/*---------------------------------------------------------------------------*/voidctk_draw_menus(struct ctk_menus *menus){  SERVICE_CALL(ctk_draw_service, draw_menus(menus));}/*---------------------------------------------------------------------------*/unsigned charctk_draw_width(void){  struct service *s;  s = SERVICE_FIND(ctk_draw_service);  if(s != NULL) {    return ((struct ctk_draw_service *)s->interface)->width();  }  return 40;}/*---------------------------------------------------------------------------*/unsigned charctk_draw_height(void){  struct service *s;  s = SERVICE_FIND(ctk_draw_service);  if(s != NULL) {    return ((struct ctk_draw_service *)s->interface)->height();  }  return 24;}/*---------------------------------------------------------------------------*/unsigned shortctk_mouse_xtoc(unsigned short x){  struct service *s;  s = SERVICE_FIND(ctk_draw_service);  if(s != NULL) {    return ((struct ctk_draw_service *)s->interface)->mouse_xtoc(x);  }  return 0;}/*---------------------------------------------------------------------------*/unsigned shortctk_mouse_ytoc(unsigned short y){  struct service *s;  s = SERVICE_FIND(ctk_draw_service);  if(s != NULL) {    return ((struct ctk_draw_service *)s->interface)->mouse_ytoc(y);  }  return 0;}/*---------------------------------------------------------------------------*/voidctk_draw_quit(void){  /*  process_post(service.id, EK_EVENT_REQUEST_EXIT, NULL);*/  /*  process_service_reset(&service);  */}/*---------------------------------------------------------------------------*/

⌨️ 快捷键说明

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