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

📄 table.h

📁 很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.
💻 H
字号:
/////////////////////////////////////////////////////////////////////////////// Name:        table.h// Purpose:     Table utilities// Author:      Julian Smart// Modified by:// Created:     7.9.93// RCS-ID:      $Id: table.h,v 1.3 2004/06/04 17:58:55 ABX Exp $// Copyright:   (c) Julian Smart// Licence:     wxWindows licence//////////////////////////////////////////////////////////////////////////////* * Table dimensions * */struct ColumnData{  char justification; // l, r, c  int width;          // -1 or a width in twips  int spacing;        // Space between columns in twips  bool leftBorder;  bool rightBorder;  bool absWidth;      // If false (the default), don't use an absolute width if you can help it.};extern ColumnData TableData[];extern bool inTabular;extern bool startRows;extern bool tableVerticalLineLeft;extern bool tableVerticalLineRight;extern int noColumns;   // Current number of columns in tableextern int ruleTop;extern int ruleBottom;extern int currentRowNumber;extern bool ParseTableArgument(wxChar *value);

⌨️ 快捷键说明

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