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

📄 tecommon.h

📁 Trolltech公司发布的图形界面操作系统。可在qt-embedded-2.3.10平台上编译为嵌入式图形界面操作系统。
💻 H
字号:
/************************************************************************ Copyright (C) 2000-2005 Trolltech AS and its licensors.** All rights reserved.**** This file is part of the Qtopia Environment.**** This file may be distributed and/or modified under the terms of the** GNU General Public License version 2 as published by the Free Software** Foundation and appearing in the file LICENSE.GPL included in the** packaging of this file.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.**** See http://www.trolltech.com/gpl/ for GPL licensing information.** See below for additional copyright and license information**** Contact info@trolltech.com if any conditions of this licensing are** not clear to you.************************************************************************//* -------------------------------------------------------------------------- *//*                                                                            *//* [TECommon.h]                  Common Definitions                           *//*                                                                            *//* -------------------------------------------------------------------------- *//*                                                                            *//* Copyright (c) 1997,1998 by Lars Doelle <lars.doelle@on-line.de>            *//*                                                                            *//* This file is part of Konsole - an X terminal for KDE                       *//*                                                                            *//* -------------------------------------------------------------------------- *//*                        *//* Konsole ported to Qt/Embedded by Trolltech                                 *//*                        *//* -------------------------------------------------------------------------- *//* \file TECommon.h    \brief Definitions shared between TEScreen and TEWidget.*/#ifndef TECOMMON_H#define TECOMMON_H#include <qcolor.h>#ifndef BOOLtypedef int BOOL;#endif#ifndef FALSE#define FALSE 0#endif#ifndef TRUE#define TRUE 1#endif#ifndef UINT8typedef unsigned char UINT8;#endif#ifndef UINT16typedef unsigned short UINT16;#endif// Attributed Character Representations ///////////////////////////////// Colors#define BASE_COLORS   (2+8)#define INTENSITIES   2#define TABLE_COLORS  (INTENSITIES*BASE_COLORS)#define DEFAULT_FORE_COLOR 0#define DEFAULT_BACK_COLOR 1#define DEFAULT_RENDITION  0#define RE_BOLD            (1 << 0)#define RE_BLINK           (1 << 1)#define RE_UNDERLINE       (1 << 2)#define RE_REVERSE         (1 << 3) // Screen only#define RE_INTENSIVE       (1 << 3) // Widget only/* \class ca *  \brief a character with rendition attributes.*/class ca{public:  inline ca(UINT16 _c = ' ',            UINT8 _f = DEFAULT_FORE_COLOR,            UINT8 _b = DEFAULT_BACK_COLOR,            UINT8 _r = DEFAULT_RENDITION)       : c(_c), f(_f), b(_b), r(_r) {}public:  UINT16 c; // character  UINT8  f; // foreground color  UINT8  b; // background color  UINT8  r; // renditionpublic:  friend BOOL operator == (ca a, ca b);  friend BOOL operator != (ca a, ca b);};inline BOOL operator == (ca a, ca b){  return a.c == b.c && a.f == b.f && a.b == b.b && a.r == b.r;}inline BOOL operator != (ca a, ca b){  return a.c != b.c || a.f != b.f || a.b != b.b || a.r != b.r;}/**/struct ColorEntry{  ColorEntry(QColor c, bool tr, bool b) : color(c), transparent(tr), bold(b) {}  ColorEntry() : transparent(false), bold(false) {} // default constructors  void operator=(const ColorEntry& rhs) {        color = rhs.color;        transparent = rhs.transparent;        bold = rhs.bold;   }  QColor color;  bool   transparent; // if used on bg  bool   bold;        // if used on fg};#endif // TECOMMON_H

⌨️ 快捷键说明

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