Develop and Download Open Source Software

Browse CVS Repository

Diff of /gikonavigoeson/gikonavi/Setting.pas

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.69 by h677, Sat Sep 18 03:37:47 2004 UTC revision 1.70 by h677, Sun Sep 19 05:43:09 2004 UTC
# Line 89  type Line 89  type
89          end;          end;
90          /// スレリストのカラム ID          /// スレリストのカラム ID
91          type    TGikoBoardColumnID = (gbcTitle, gbcAllCount, gbcLocalCount, gbcNonAcqCount,          type    TGikoBoardColumnID = (gbcTitle, gbcAllCount, gbcLocalCount, gbcNonAcqCount,
92                  gbcNewCount, gbcUnReadCount, gbcRoundName, gbcRoundDate, gbcCreated );{gbcLastModified,}                  gbcNewCount, gbcUnReadCount, gbcRoundName, gbcRoundDate, gbcCreated, gbcLastModified );{gbcLastModified,}
93          /// スレリストのカラム名          /// スレリストのカラム名
94          const   GikoBoardColumnCaption : array[0..8] of string =          const   GikoBoardColumnCaption : array[0..9] of string =
95                  ( 'スレッド名', 'カウント', '取得', '未取得', '新着',                  ( 'スレッド名', 'カウント', '取得', '未取得', '新着',
96                  '未読', '巡回予約', '取得日時', 'スレ作成日時' );                  '未読', '巡回予約', '取得日時', 'スレ作成日時', '最終更新日時' );
97          const GikoBoardColumnAlignment : array[0..8] of TAlignment = (          const GikoBoardColumnAlignment : array[0..9] of TAlignment = (
98                  taLeftJustify, taRightJustify, taRightJustify, taRightJustify,                  taLeftJustify, taRightJustify, taRightJustify, taRightJustify,
99                  taRightJustify, taRightJustify, taLeftJustify, taLeftJustify,                  taRightJustify, taRightJustify, taLeftJustify, taLeftJustify,
100                  taLeftJustify );                  taLeftJustify, taLeftJustify);
101          /// スレリストカラム配列          /// スレリストカラム配列
102          type    TGikoBoardColumnList = class( TList )          type    TGikoBoardColumnList = class( TList )
103          private          private
# Line 272  type Line 272  type
272                  //リストカラムヘッダーサイズ                  //リストカラムヘッダーサイズ
273                  FBBSColumnWidth: array[0..0] of Integer;                  FBBSColumnWidth: array[0..0] of Integer;
274                  FCategoryColumnWidth: array[0..2] of Integer;                  FCategoryColumnWidth: array[0..2] of Integer;
275                  FBoardColumnWidth: array[0..8] of Integer;                  FBoardColumnWidth: array[0..9] of Integer;
276    
277                  /// カテゴリリストカラム順序                  /// カテゴリリストカラム順序
278                  FBBSColumnOrder : TGikoBBSColumnList;                  FBBSColumnOrder : TGikoBBSColumnList;
# Line 848  procedure TSetting.ReadSettingFile(); Line 848  procedure TSetting.ReadSettingFile();
848  const  const
849          DEFAULT_BBS_WIDTH: array[0..0] of Integer = (140);          DEFAULT_BBS_WIDTH: array[0..0] of Integer = (140);
850          DEFAULT_CATEGORY_WIDTH: array[0..2] of Integer = (150, 80, 130);          DEFAULT_CATEGORY_WIDTH: array[0..2] of Integer = (150, 80, 130);
851          DEFAULT_BOARD_WIDTH: array[0..8] of Integer = (350, 60, 60, 60, 60, 60, 80, 130, 130);          DEFAULT_BOARD_WIDTH: array[0..9] of Integer = (350, 60, 60, 60, 60, 60, 80, 130, 130, 130);
852          MAX_WIDTH: Integer = 2000;          MAX_WIDTH: Integer = 2000;
853  var  var
854          ini: TMemIniFile;          ini: TMemIniFile;

Legend:
Removed from v.1.69  
changed lines
  Added in v.1.70

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26