Twintail(v2.2.8.0) → TwinkleBride(Ver.0.2.1.0)修正項目を以下に残しておく
ThreadControl.cs(22):ロード完了時に呼び出されるコールバック
// 2008-03-13: appended by WB
public delegate void OnLoadingCompleted();
private OnLoadingCompleted delegateLoadingCompleted = null;
/// <summary>
/// ロード完了時に呼び出されるコールバック
/// </summary>
public OnLoadingCompleted DelegateLoadingCompleted
{
set {
if (delegateLoadingCompleted != value) {
delegateLoadingCompleted = value;
}
}
get {
return delegateLoadingCompleted;
}
}
ThreadControl.cs(575):ロード完了時コールバック処理追加
// 2008-03-13: appended by WB
if (delegateLoadingCompleted != null) {
this.Invoke(new MethodInvoker(delegateLoadingCompleted));
}
ThreadListControl.cs(23):ロード完了時に呼び出されるコールバック
// 2008-03-13: appended by WB
public delegate void OnLoadingCompleted();
private OnLoadingCompleted delegateLoadingCompleted = null;
/// <summary>
/// ロード完了時に呼び出されるコールバック
/// </summary>
public OnLoadingCompleted DelegateLoadingCompleted
{
set {
if (delegateLoadingCompleted != value) {
delegateLoadingCompleted = value;
}
}
get {
return delegateLoadingCompleted;
}
}
ThreadListControl.cs(299):ロード完了時コールバック処理追加
// 2008-03-13: appended by WB
if (this.delegateLoadingCompleted != null) {
this.Invoke(new MethodInvoker(delegateLoadingCompleted));
}
DockWriteBar.cs(571):特定掲示板の投稿確認ダイアログ抑止
// 2008-03-23: modified by WB
if (e.Title != "毛色に鹿ツール情報掲示板") {
MessageBox.Show(this, e.Text, e.Title,
MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
DockWriteBar.cs(654):DockWriteBarからの書き込み処理を外部から実行可能にする
// 2008-03-23: modified by WB
//private void Write()
public void Write()
Twin2IeBrowser.cs(922):板一覧更新メッセージ抑止
Twin2IeBrowser.cs(2255):スレッドコントロール取得メソッド追加
// 2008-03-24: appended by WB
public ThreadControl FindControl(ThreadHeader header)
{
return threadTabController.FindControl(header);
}
Twin2IeBrowser.cs(2261):DockWriteBarへのレス設定および書き込みメソッド追加
// 2008-03-24: appended by WB
ResSet resInternal;
bool bWriteInternal;
public void SetResForDockBar(ResSet res, bool bWrite)
{
this.resInternal = res;
this.bWriteInternal = bWrite;
this.Invoke(new MethodInvoker(SetResForDockBarInternal));
}
private void SetResForDockBarInternal()
{
dockWriteBar.From = this.resInternal.Name;
dockWriteBar.Email = this.resInternal.Email;
dockWriteBar.Body = this.resInternal.Body;
if (this.bWriteInternal) dockWriteBar.Write();
}
Twin2IeBrowser.cs(2284):スレッドオープン時にThreadHeaderを返すように修正
//public void OpenAddress(string url)
// 2008-03-13: modified by WB
public ThreadHeader OpenAddress(string url)
(以下戻り値はすべてheaderもしくはnullにする)
Twin2IeBrowser.cs(2577:スレッド一覧オープン時にThreadListControlを返すように修正
//public void ListOpen(BoardInfo info, bool newTab)
// 2008-03-13: modified by WB
public ThreadListControl ListOpen(BoardInfo info, bool newTab)
(以下戻り値はすべてclientもしくはnullにする)
TwinUpdate.cs(26):ツール更新チェックを抑止
IEComThreadBrowser.cs(1372):板名不明時のあぼーんチェックをスルー
// 2008-03-25: modified by WB
if (base.headerInfo.BoardInfo.Name == "板名不明") return;
Twinie.cs(165):アプリケーションエントリポイントをstatic関数に変更
//[STAThread]
//static void Main(string[] args)
// 2008-03-13: modified by WB
public static Twin2IeBrowser TwinieMain(string[] args)
Twinie.cs(206):板一覧更新メッセージ抑止
Twinie.cs(215):初期設定値追加
// 2008-03-14: appended by WB
settings.Livemode = false;
settings.Thread.FontSize = FontSize.XSmall;
settings.SkinFolderName = "Skin030";
settings.Post.NameHistory.Add("審議");
settings.Post.NameHistory.Add("質問");
settings.Post.NameHistory.Add("確定");
settings.Post.NameHistory.Add("出題");
settings.Post.NameHistory.Add("がいしゅつ追加");
settings.Post.MailHistory.Add("sage");
Twinie.cs(258):Application.Run(ウインドウプロシージャ)抑止
// 2008-03-12: modified by WB
//Application.Run(form);
Twinie.cs(320):関数値としてformを返す
// 2008-03-13: modified by WB
return form;
CMどうぞ
最終更新:2008年03月25日 12:26