| 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 |
| 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; |
| 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; |