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

📄 flv_cstyle.cxx

📁 PIXIL is a small footprint operating environment, complete with PDA PIM applications, a browser and
💻 CXX
字号:
//      ======================================================================//      File:    Flv_CStyle.cxx - Flv_CStyle implementation//      Program: Flv_Style - FLTK Virtual List/Table Styles Widget//      Version: 0.1.0//      Started: 11/21/99////      Copyright (C) 1999 Laurence Charlton////      Description://      The complex styles will be used in the complex table.  Should be basically//      the same as Flv_Style with x,y positional data.//      ======================================================================#include <Flek/Flv_CStyle.H>#include <stdio.h>#ifdef WIN32#include <mem.h>#else#include <memory.h>#endif#define ADDSIZE 10//      **********************************************************************//      Routines for Flv_CStyle////      Defines the additional properties for a complex layout table.//      A complex layout table allows the placement of cells (columns) within//      a row.  The overall layout is used to determine minimum row heights///      widths, etc.//      **********************************************************************Flv_CStyle::Flv_CStyle():Flv_Style(){    vx = 0;    vy = 0;    width(0);    height(0);}//      Set xintFlv_CStyle::x(int n){    if (n < 0)	n = 0;    return (vx = n);}//      Set yintFlv_CStyle::y(int n){    if (n < 0)	n = 0;    return (vy = n);}const Flv_CStyle &Flv_CStyle::operator=(const Flv_CStyle & n){    Flv_Style::operator=(n);    vx = n.vx;    vy = n.vy;    return *this;}

⌨️ 快捷键说明

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