table.h

来自「很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.」· C头文件 代码 · 共 37 行

H
37
字号
/////////////////////////////////////////////////////////////////////////////// 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 + =
减小字号Ctrl + -
显示快捷键?