From svnnotify @ sourceforge.jp Wed Dec 1 02:06:51 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 01 Dec 2010 02:06:51 +0900 Subject: [Tween-svn] =?utf-8?q?=5B1144=5D__DataModel=E3=81=AEBoundingbox?= =?utf-8?b?5a6a576p5L+u5q2j?= Message-ID: <1291136811.908570.12983.nullmailer@users.sourceforge.jp> Revision: 1144 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1144 Author: kiri_feather Date: 2010-12-01 02:06:51 +0900 (Wed, 01 Dec 2010) Log Message: ----------- DataModelのBoundingbox定義修正 Modified Paths: -------------- branches/UserStream/Tween/DataModel.vb -------------- next part -------------- Modified: branches/UserStream/Tween/DataModel.vb =================================================================== --- branches/UserStream/Tween/DataModel.vb 2010-11-30 11:25:01 UTC (rev 1143) +++ branches/UserStream/Tween/DataModel.vb 2010-11-30 17:06:51 UTC (rev 1144) @@ -83,7 +83,7 @@ _ Public Class BoundingBox Public Type As String - Public Coordinates As List(Of List(Of Double())) + Public Coordinates As Double()()() End Class _ @@ -114,7 +114,7 @@ Public User As User Public InReplyToScreenName As String Public CreatedAt As String - Public Contributors As String + Public Contributors As Integer() Public Favorited As Boolean Public Truncated As Boolean Public Id As Int64 @@ -127,7 +127,7 @@ _ Public Class Status Public InReplyToStatusIdStr As String - Public Contributors As String + Public Contributors As Integer() Public InReplyToScreenName As String Public InReplyToStatusId As String Public InReplyToUserIdStr As String From svnnotify @ sourceforge.jp Wed Dec 1 18:14:29 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 01 Dec 2010 18:14:29 +0900 Subject: [Tween-svn] =?utf-8?b?WzExNDVdICBVc2VyU3RyZWFt44OW44Op44Oz44OB?= =?utf-8?b?44KS44Oe44O844K4?= Message-ID: <1291194869.267538.17083.nullmailer@users.sourceforge.jp> Revision: 1145 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1145 Author: kiri_feather Date: 2010-12-01 18:14:29 +0900 (Wed, 01 Dec 2010) Log Message: ----------- UserStreamブランチをマージ Modified Paths: -------------- trunk/Tween/Connection/HttpConnectionBasic.vb trunk/Tween/Connection/HttpConnectionOAuth.vb trunk/Tween/Connection/HttpTwitter.vb trunk/Tween/Connection/IHttpConnection.vb trunk/Tween/MyCommon.vb trunk/Tween/Tween.Designer.vb trunk/Tween/Tween.resx trunk/Tween/Tween.vb trunk/Tween/Tween.vbproj trunk/Tween/Twitter.vb Added Paths: ----------- trunk/Tween/DataModel.vb Property Changed: ---------------- trunk/ -------------- next part -------------- Property changes on: trunk ___________________________________________________________________ Modified: svn:mergeinfo - /branches/APIchangeevent:723-746 /branches/FixedImage:787-910 /branches/editlist:667-697 /branches/panelswitch:447-572 /branches/tm:782-794 + /branches/APIchangeevent:723-746 /branches/FixedImage:787-910 /branches/UserStream:1077-1144 /branches/editlist:667-697 /branches/panelswitch:447-572 /branches/tm:782-794 Modified: trunk/Tween/Connection/HttpConnectionBasic.vb =================================================================== --- trunk/Tween/Connection/HttpConnectionBasic.vb 2010-11-30 17:06:51 UTC (rev 1144) +++ trunk/Tween/Connection/HttpConnectionBasic.vb 2010-12-01 09:14:29 UTC (rev 1145) @@ -26,7 +26,13 @@ ''' Private credential As String = "" + ''' + '''認証完了時の応答からuserIdentKey情報に基づいて取得するユーザー情報 + ''' + Private streamReq As HttpWebRequest = Nothing + + ''' '''BASIC認証で指定のURLとHTTP通信を行い、結果を返す ''' '''HTTP通信メソッド(GET/HEAD/POST/PUT/DELETE) @@ -98,7 +104,50 @@ Return code End Function + ''' + '''OAuth認証で指定のURLとHTTP通信を行い、ストリームを返す + ''' + '''HTTP通信メソッド(GET/HEAD/POST/PUT/DELETE) + '''通信先URI + '''GET時のクエリ、またはPOST時のエンティティボディ + '''[OUT]HTTP応答のボディストリーム + '''[IN/OUT]HTTP応答のヘッダ情報。必要なヘッダ名を事前に設定しておくこと + '''HTTP応答のステータスコード + Public Function GetContent(ByVal method As String, _ + ByVal requestUri As Uri, _ + ByVal param As Dictionary(Of String, String), _ + ByRef content As Stream) As HttpStatusCode Implements IHttpConnection.GetContent + '認証済かチェック + If String.IsNullOrEmpty(Me.credential) Then Return HttpStatusCode.Unauthorized + streamReq = CreateRequest(method, requestUri, param, False) + + 'BASIC認証用ヘッダを付加 + AppendApiInfo(streamReq) + + Try + Dim webRes As HttpWebResponse = CType(streamReq.GetResponse(), HttpWebResponse) + content = webRes.GetResponseStream() + Return webRes.StatusCode + Catch ex As WebException + If ex.Status = WebExceptionStatus.ProtocolError Then + Dim res As HttpWebResponse = DirectCast(ex.Response, HttpWebResponse) + Return res.StatusCode + End If + Throw ex + End Try + + End Function + + Public Sub RequestAbort() Implements IHttpConnection.RequestAbort + Try + If streamReq IsNot Nothing Then + streamReq.Abort() + End If + Catch ex As Exception + End Try + End Sub + ''' '''BASIC認証とREST APIで必要なヘッダを付加 ''' Modified: trunk/Tween/Connection/HttpConnectionOAuth.vb =================================================================== --- trunk/Tween/Connection/HttpConnectionOAuth.vb 2010-11-30 17:06:51 UTC (rev 1144) +++ trunk/Tween/Connection/HttpConnectionOAuth.vb 2010-12-01 09:14:29 UTC (rev 1145) @@ -57,6 +57,11 @@ Private authorizedUsername As String = "" ''' + '''認証完了時の応答からuserIdentKey情報に基づいて取得するユーザー情報 + ''' + Private streamReq As HttpWebRequest = Nothing + + ''' '''OAuth認証で指定のURLとHTTP通信を行い、結果を返す ''' '''HTTP通信メソッド(GET/HEAD/POST/PUT/DELETE) @@ -129,6 +134,49 @@ Return code End Function + ''' + '''OAuth認証で指定のURLとHTTP通信を行い、ストリームを返す + ''' + '''HTTP通信メソッド(GET/HEAD/POST/PUT/DELETE) + '''通信先URI + '''GET時のクエリ、またはPOST時のエンティティボディ + '''[OUT]HTTP応答のボディストリーム + '''HTTP応答のステータスコード + Public Function GetContent(ByVal method As String, _ + ByVal requestUri As Uri, _ + ByVal param As Dictionary(Of String, String), _ + ByRef content As Stream) As HttpStatusCode Implements IHttpConnection.GetContent + '認証済かチェック + If String.IsNullOrEmpty(token) Then Return HttpStatusCode.Unauthorized + + streamReq = CreateRequest(method, requestUri, param, False) + 'OAuth認証ヘッダを付加 + AppendOAuthInfo(streamReq, param, token, tokenSecret) + + Try + Dim webRes As HttpWebResponse = CType(streamReq.GetResponse(), HttpWebResponse) + content = webRes.GetResponseStream() + Return webRes.StatusCode + Catch ex As WebException + If ex.Status = WebExceptionStatus.ProtocolError Then + Dim res As HttpWebResponse = DirectCast(ex.Response, HttpWebResponse) + Return res.StatusCode + End If + Throw ex + End Try + + End Function + + Public Sub RequestAbort() Implements IHttpConnection.RequestAbort + Try + If streamReq IsNot Nothing Then + streamReq.Abort() + End If + Catch ex As Exception + End Try + End Sub + + #Region "認証処理" ''' '''OAuth認証の開始要求(リクエストトークン取得)。PIN入力用の前段 Modified: trunk/Tween/Connection/HttpTwitter.vb =================================================================== --- trunk/Tween/Connection/HttpTwitter.vb 2010-11-30 17:06:51 UTC (rev 1144) +++ trunk/Tween/Connection/HttpTwitter.vb 2010-12-01 09:14:29 UTC (rev 1145) @@ -1,7 +1,10 @@ ?Imports System.Net Imports System.IO +Imports System.Web +Imports System.Threading Public Class HttpTwitter + Implements ICloneable 'OAuth関連 ''' @@ -33,10 +36,6 @@ End Enum Private connectionType As AuthMethod = AuthMethod.Basic - Public Sub New() - TwitterApiInfo.Initialize() - End Sub - Public Sub Initialize(ByVal accessToken As String, _ ByVal accessTokenSecret As String, _ ByVal username As String) @@ -51,7 +50,6 @@ tk = accessToken tks = accessTokenSecret un = username - TwitterApiInfo.Initialize() End If con.Initialize(ConsumerKey, ConsumerSecret, accessToken, accessTokenSecret, username, "screen_name") httpCon = con @@ -68,7 +66,6 @@ ' 以前の認証状態よりひとつでも変化があったらhttpヘッダより読み取ったカウントは初期化 un = username pw = password - TwitterApiInfo.Initialize() End If con.Initialize(username, password) httpCon = con @@ -321,14 +318,38 @@ param.Add("since_id", since_id.ToString()) End If + param.Add("include_entities", "true") + Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/statuses/home_timeline.xml"), _ + CreateTwitterUri("/1/statuses/home_timeline.json"), _ param, _ content, _ TwitterApiInfo.HttpHeaders, _ AddressOf GetApiCallback) End Function + Public Function PublicTimeline(ByVal count As Integer, ByVal max_id As Long, ByVal since_id As Long, ByRef content As String) As HttpStatusCode + Dim param As New Dictionary(Of String, String) + If count > 0 Then + param.Add("count", count.ToString()) + End If + If max_id > 0 Then + param.Add("max_id", max_id.ToString()) + End If + If since_id > 0 Then + param.Add("since_id", since_id.ToString()) + End If + + param.Add("include_entities", "true") + + Return httpCon.GetContent(GetMethod, _ + CreateTwitterUri("/1/statuses/public_timeline.json"), _ + param, _ + content, _ + TwitterApiInfo.HttpHeaders, _ + AddressOf GetApiCallback) + End Function + Public Function Mentions(ByVal count As Integer, ByVal max_id As Long, ByVal since_id As Long, ByRef content As String) As HttpStatusCode Dim param As New Dictionary(Of String, String) If count > 0 Then @@ -341,8 +362,10 @@ param.Add("since_id", since_id.ToString()) End If + param.Add("include_entities", "true") + Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/statuses/mentions.xml"), _ + CreateTwitterUri("/1/statuses/mentions.json"), _ param, _ content, _ TwitterApiInfo.HttpHeaders, _ @@ -362,7 +385,7 @@ End If Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/direct_messages.xml"), _ + CreateTwitterUri("/1/direct_messages.json"), _ Nothing, _ content, _ TwitterApiInfo.HttpHeaders, _ @@ -382,7 +405,7 @@ End If Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/direct_messages/sent.xml"), _ + CreateTwitterUri("/1/direct_messages/sent.json"), _ Nothing, _ content, _ TwitterApiInfo.HttpHeaders, _ @@ -394,7 +417,7 @@ If count <> 20 Then param.Add("count", count.ToString()) Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/favorites.xml"), _ + CreateTwitterUri("/1/favorites.json"), _ param, _ content, _ TwitterApiInfo.HttpHeaders, _ @@ -632,9 +655,8 @@ #Region "Proxy API" Private Shared _twitterUrl As String = "api.twitter.com" - 'Private TwitterUrl As String = "sorayukigtap.appspot.com/api" Private Shared _TwitterSearchUrl As String = "search.twitter.com" - 'Private TwitterSearchUrl As String = "sorayukigtap.appspot.com/search" + Private Shared _twitterStreamUrl As String = "userstream.twitter.com" Private Function CreateTwitterUri(ByVal path As String) As Uri Return New Uri(String.Format("{0}{1}{2}", _protocol, _twitterUrl, path)) @@ -644,6 +666,10 @@ Return New Uri(String.Format("{0}{1}{2}", _protocol, _TwitterSearchUrl, path)) End Function + Private Function CreateTwitterStreamUri(ByVal path As String) As Uri + Return New Uri(String.Format("{0}{1}{2}", "https://", _twitterStreamUrl, path)) + End Function + Public Shared WriteOnly Property TwitterUrl() As String Set(ByVal value As String) _twitterUrl = value @@ -663,4 +689,35 @@ TwitterApiInfo.ParseHttpHeaders(TwitterApiInfo.HttpHeaders) End If End Sub + + Public Function UserStream(ByRef content As Stream, ByVal allAtReplies As Boolean, ByVal trackwords As String) As HttpStatusCode + Dim param As New Dictionary(Of String, String) + + If allAtReplies Then + param.Add("replies", "all") + End If + + If Not String.IsNullOrEmpty(trackwords) Then + param.Add("track", trackwords) + End If + + Return httpCon.GetContent(GetMethod, _ + CreateTwitterStreamUri("/2/user.json"), _ + param, _ + content) + End Function + + Public Sub RequestAbort() + httpCon.RequestAbort() + End Sub + + Public Function Clone() As Object Implements System.ICloneable.Clone + Dim myCopy As New HttpTwitter + If Me.connectionType = AuthMethod.Basic Then + myCopy.Initialize(Me.AuthenticatedUsername, Me.Password) + Else + myCopy.Initialize(Me.AccessToken, Me.AccessTokenSecret, Me.AuthenticatedUsername) + End If + Return myCopy + End Function End Class Modified: trunk/Tween/Connection/IHttpConnection.vb =================================================================== --- trunk/Tween/Connection/IHttpConnection.vb 2010-11-30 17:06:51 UTC (rev 1144) +++ trunk/Tween/Connection/IHttpConnection.vb 2010-12-01 09:14:29 UTC (rev 1145) @@ -6,6 +6,11 @@ Function GetContent(ByVal method As String, _ ByVal requestUri As Uri, _ ByVal param As Dictionary(Of String, String), _ + ByRef content As Stream) As HttpStatusCode + + Function GetContent(ByVal method As String, _ + ByVal requestUri As Uri, _ + ByVal param As Dictionary(Of String, String), _ ByRef content As String, _ ByVal headerInfo As Dictionary(Of String, String), _ ByVal callback As CallbackDelegate) As HttpStatusCode @@ -18,9 +23,11 @@ ByVal headerInfo As Dictionary(Of String, String), _ ByVal callback As CallbackDelegate) As HttpStatusCode + Sub RequestAbort() + Function Authenticate(ByVal url As Uri, ByVal username As String, ByVal password As String) As HttpStatusCode - ReadOnly Property AuthUsername() As String +ReadOnly Property AuthUsername() As String ''' ''' APIメソッドの処理が終了し呼び出し元へ戻る直前に呼ばれるデリゲート ''' Copied: trunk/Tween/DataModel.vb (from rev 1144, branches/UserStream/Tween/DataModel.vb) =================================================================== --- trunk/Tween/DataModel.vb (rev 0) +++ trunk/Tween/DataModel.vb 2010-12-01 09:14:29 UTC (rev 1145) @@ -0,0 +1,218 @@ +?Imports System.Runtime.InteropServices +Imports System.Runtime.Serialization + +Public Class TwitterDataModel + + _ + Public Class Urls + Public Urls As String + Public Indices(2) As Integer + End Class + + _ + Public Class Hashtags + Public Indices(2) As Integer + Public Text As String + End Class + + _ + Public Class UserMentions + Public Indices(2) As Integer + Public ScreenName As String + Public Name As String + Public Id As Int64 + End Class + + _ + Public Class Entities + Public Urls() As Urls + Public Hashtags() As Hashtags + Public UserMentions() As UserMentions + End Class + + _ + Public Class User + Public StatusesCount As Int64 + Public ProfileSidebarFillColor As String + Public ShowAllInlineMedia As Boolean + Public ProfileUseBackgroundImage As Boolean + Public ContributorsEnabled As Boolean + Public ProfileSidebarBorderColor As String + Public Location As String + Public GeoEnabled As Boolean + Public Description As String + Public FriendsCount As Integer + Public Verified As Boolean + Public FavouritesCount As Integer + Public CreatedAt As String + Public ProfileBackgroundColor As String + Public FollowRequestSent As String + Public TimeZone As String + Public FollowersCount As Integer + Public Url As String + Public ProfileImageUrl As String + Public Notifications As String + Public ProfileTextColor As String + Public [Protected] As Boolean + Public IdStr As String + Public Lang As String + Public ProfileBackgroundImageUrl As String + Public ScreenName As String + Public Name As String + Public Following As String + Public ProfileLinkColor As String + Public Id As Int64 + Public ListedCount As Integer + Public ProfileBackgroundTile As Boolean + Public UtcOffset As String + Public Place As Place + End Class + + _ + Public Class Coordinates + Public Type As String + Public Coordinates(2) As Double + End Class + + _ + Public Class Geo + Public Type As String + Public Coordinates(2) As Double + End Class + + _ + Public Class BoundingBox + Public Type As String + Public Coordinates As Double()()() + End Class + + _ + Public Class Attributes + Public StreetAddress As String + End Class + + _ + Public Class Place + Public Url As String + Public BoundingBox As BoundingBox + Public StreetAddress As String + Public FullName As String + Public Name As String + ' Public attributes As attributes + Public CountryCode As String + Public Id As String + Public Country As String + Public PlaceType As String + End Class + + _ + Public Class RetweetedStatus + Public Coordinates As Coordinates + Public Geo As Geo + Public InReplyToUserId As String + Public Source As String + Public User As User + Public InReplyToScreenName As String + Public CreatedAt As String + Public Contributors As Integer() + Public Favorited As Boolean + Public Truncated As Boolean + Public Id As Int64 + Public Annotations As String + Public Place As Place + Public InReplyToStatusId As String + Public Text As String + End Class + + _ + Public Class Status + Public InReplyToStatusIdStr As String + Public Contributors As Integer() + Public InReplyToScreenName As String + Public InReplyToStatusId As String + Public InReplyToUserIdStr As String + Public RetweetCount As String + Public CreatedAt As String + Public Geo As Geo + Public Retweeted As Boolean + Public InReplyToUserId As String + Public Source As String + Public IdStr As String + Public Coordinates As Coordinates + Public Truncated As Boolean + Public Place As Place + Public User As User + Public RetweetedStatus As RetweetedStatus + Public Id As Int64 + Public Favorited As Boolean + Public Text As String + End Class + + _ + Public Class Directmessage + Public CreatedAt As String + Public SenderId As Int64 + Public SenderScreenName As String + Public Sender As User + Public IdStr As String + Public Recipient As User + Public RecipientScreenName As String + Public RecipientId As Int64 + Public Id As Int64 + Public Text As String + End Class + + _ + Public Class Friendsevent + Public Friends As Int64() + End Class + + _ + Public Class DeletedStatusContent + Public Id As Int64 + Public UserId As Int64 + End Class + + _ + Public Class DeletedStatus + Public Status As DeletedStatusContent + End Class + + _ + Public Class DeleteEvent + Public [Event] As DeletedStatus + End Class + + _ + Public Class DeletedDirectmessage + Public Directmessage As DeletedStatusContent + End Class + + _ + Public Class DeleteDirectmessageEvent + Public [Event] As DeletedDirectmessage + End Class + _ + Public Class DirectmessageEvent + Public Directmessage As Directmessage + End Class + + _ + Public Class TrackCount + Public Track As Integer + End Class + + _ + Public Class LimitEvent + Public Limit As TrackCount + End Class + + _ + Public Class EventData + Public Target As User + Public TargetObject As Status + Public CreatedAt As String + Public [Event] As String + Public Source As User + End Class +End Class Modified: trunk/Tween/MyCommon.vb =================================================================== --- trunk/Tween/MyCommon.vb 2010-11-30 17:06:51 UTC (rev 1144) +++ trunk/Tween/MyCommon.vb 2010-12-01 09:14:29 UTC (rev 1145) @@ -117,6 +117,7 @@ PublicSearch '公式検索 List 'Lists Related '関連発言 + UserStream 'UserStream ''' ErrorState 'エラー表示のみで後処理終了(認証エラー時など) End Enum Modified: trunk/Tween/Tween.Designer.vb =================================================================== --- trunk/Tween/Tween.Designer.vb 2010-11-30 17:06:51 UTC (rev 1144) +++ trunk/Tween/Tween.Designer.vb 2010-12-01 09:14:29 UTC (rev 1145) @@ -149,12 +149,13 @@ Me.RtUnOpMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.QtOpMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ToolStripSeparator25 = New System.Windows.Forms.ToolStripSeparator() + Me.FavOpMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.FavoriteRetweetMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.FavoriteRetweetUnofficialMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.UnFavOpMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ToolStripSeparator38 = New System.Windows.Forms.ToolStripSeparator() - Me.FavOpMenuItem = New System.Windows.Forms.ToolStripMenuItem() - Me.UnFavOpMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ShowProfMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.ShowRelatedStatusesMenuItem2 = New System.Windows.Forms.ToolStripMenuItem() Me.OpenOpMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.OpenHomeOpMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.OpenFavOpMenuItem = New System.Windows.Forms.ToolStripMenuItem() @@ -212,6 +213,12 @@ Me.HashManageToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.RtCountMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ListManageToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.MenuItemUserStream = New System.Windows.Forms.ToolStripMenuItem() + Me.PauseToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.StopToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.ToolStripSeparator40 = New System.Windows.Forms.ToolStripSeparator() + Me.TrackToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.AllrepliesToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.MenuItemHelp = New System.Windows.Forms.ToolStripMenuItem() Me.MatomeMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ShortcutKeyListMenuItem = New System.Windows.Forms.ToolStripMenuItem() @@ -224,6 +231,7 @@ Me.DebugModeToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.DumpPostClassToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.TraceOutToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.CacheInfoMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ContextMenuOperate = New System.Windows.Forms.ContextMenuStrip(Me.components) Me.ReplyStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ReplyAllStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() @@ -232,12 +240,13 @@ Me.ReTweetStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.QuoteStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ToolStripSeparator39 = New System.Windows.Forms.ToolStripSeparator() + Me.FavAddToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.FavoriteRetweetContextMenu = New System.Windows.Forms.ToolStripMenuItem() Me.FavoriteRetweetUnofficialContextMenu = New System.Windows.Forms.ToolStripMenuItem() + Me.FavRemoveToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ToolStripSeparator2 = New System.Windows.Forms.ToolStripSeparator() - Me.FavAddToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() - Me.FavRemoveToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ShowProfileMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.ShowRelatedStatusesMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ToolStripMenuItem6 = New System.Windows.Forms.ToolStripMenuItem() Me.MoveToHomeToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.MoveToFavToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() @@ -275,9 +284,6 @@ Me.TimerRefreshIcon = New System.Windows.Forms.Timer(Me.components) Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog() Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components) - Me.ShowRelatedStatusesMenuItem = New System.Windows.Forms.ToolStripMenuItem() - Me.CacheInfoMenuItem = New System.Windows.Forms.ToolStripMenuItem() - Me.ShowRelatedStatusesMenuItem2 = New System.Windows.Forms.ToolStripMenuItem() Me.ToolStripContainer1.BottomToolStripPanel.SuspendLayout() Me.ToolStripContainer1.ContentPanel.SuspendLayout() Me.ToolStripContainer1.TopToolStripPanel.SuspendLayout() @@ -374,6 +380,7 @@ ' Me.ContextMenuPostMode.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripMenuItemUrlMultibyteSplit, Me.ToolStripMenuItemApiCommandEvasion, Me.ToolStripMenuItemUrlAutoShorten, Me.IdeographicSpaceToSpaceToolStripMenuItem, Me.MultiLineMenuItem, Me.ToolStripFocusLockMenuItem, Me.ToolStripSeparator35, Me.ImageSelectMenuItem, Me.ToolStripSeparator8, Me.HashToggleMenuItem, Me.HashManageMenuItem}) Me.ContextMenuPostMode.Name = "ContextMenuStripPostMode" + Me.ContextMenuPostMode.OwnerItem = Me.HashStripSplitButton resources.ApplyResources(Me.ContextMenuPostMode, "ContextMenuPostMode") ' 'ToolStripMenuItemUrlMultibyteSplit @@ -919,7 +926,7 @@ 'MenuStrip1 ' resources.ApplyResources(Me.MenuStrip1, "MenuStrip1") - Me.MenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuItemFile, Me.MenuItemEdit, Me.MenuItemOperate, Me.MenuItemTab, Me.MenuItemCommand, Me.MenuItemHelp}) + Me.MenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuItemFile, Me.MenuItemEdit, Me.MenuItemOperate, Me.MenuItemTab, Me.MenuItemCommand, Me.MenuItemUserStream, Me.MenuItemHelp}) Me.MenuStrip1.Name = "MenuStrip1" Me.MenuStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional ' @@ -1079,6 +1086,11 @@ Me.ToolStripSeparator25.Name = "ToolStripSeparator25" resources.ApplyResources(Me.ToolStripSeparator25, "ToolStripSeparator25") ' + 'FavOpMenuItem + ' + Me.FavOpMenuItem.Name = "FavOpMenuItem" + resources.ApplyResources(Me.FavOpMenuItem, "FavOpMenuItem") + ' 'FavoriteRetweetMenuItem ' Me.FavoriteRetweetMenuItem.Name = "FavoriteRetweetMenuItem" @@ -1089,26 +1101,26 @@ Me.FavoriteRetweetUnofficialMenuItem.Name = "FavoriteRetweetUnofficialMenuItem" resources.ApplyResources(Me.FavoriteRetweetUnofficialMenuItem, "FavoriteRetweetUnofficialMenuItem") ' + 'UnFavOpMenuItem + ' + Me.UnFavOpMenuItem.Name = "UnFavOpMenuItem" + resources.ApplyResources(Me.UnFavOpMenuItem, "UnFavOpMenuItem") + ' 'ToolStripSeparator38 ' Me.ToolStripSeparator38.Name = "ToolStripSeparator38" resources.ApplyResources(Me.ToolStripSeparator38, "ToolStripSeparator38") ' - 'FavOpMenuItem - ' - Me.FavOpMenuItem.Name = "FavOpMenuItem" - resources.ApplyResources(Me.FavOpMenuItem, "FavOpMenuItem") - ' - 'UnFavOpMenuItem - ' - Me.UnFavOpMenuItem.Name = "UnFavOpMenuItem" - resources.ApplyResources(Me.UnFavOpMenuItem, "UnFavOpMenuItem") - ' 'ShowProfMenuItem ' Me.ShowProfMenuItem.Name = "ShowProfMenuItem" resources.ApplyResources(Me.ShowProfMenuItem, "ShowProfMenuItem") ' + 'ShowRelatedStatusesMenuItem2 + ' + Me.ShowRelatedStatusesMenuItem2.Name = "ShowRelatedStatusesMenuItem2" + resources.ApplyResources(Me.ShowRelatedStatusesMenuItem2, "ShowRelatedStatusesMenuItem2") + ' 'OpenOpMenuItem ' Me.OpenOpMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.OpenHomeOpMenuItem, Me.OpenFavOpMenuItem, Me.OpenStatusOpMenuItem, Me.OpenRepSourceOpMenuItem, Me.OpenFavotterOpMenuItem, Me.OpenUrlOpMenuItem, Me.OpenRterHomeMenuItem}) @@ -1404,6 +1416,39 @@ Me.ListManageToolStripMenuItem.Name = "ListManageToolStripMenuItem" resources.ApplyResources(Me.ListManageToolStripMenuItem, "ListManageToolStripMenuItem") ' + 'MenuItemUserStream + ' + Me.MenuItemUserStream.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.PauseToolStripMenuItem, Me.StopToolStripMenuItem, Me.ToolStripSeparator40, Me.TrackToolStripMenuItem, Me.AllrepliesToolStripMenuItem}) + resources.ApplyResources(Me.MenuItemUserStream, "MenuItemUserStream") + Me.MenuItemUserStream.Name = "MenuItemUserStream" + ' + 'PauseToolStripMenuItem + ' + resources.ApplyResources(Me.PauseToolStripMenuItem, "PauseToolStripMenuItem") + Me.PauseToolStripMenuItem.Name = "PauseToolStripMenuItem" + ' + 'StopToolStripMenuItem + ' + Me.StopToolStripMenuItem.Name = "StopToolStripMenuItem" + resources.ApplyResources(Me.StopToolStripMenuItem, "StopToolStripMenuItem") + ' + 'ToolStripSeparator40 + ' + Me.ToolStripSeparator40.Name = "ToolStripSeparator40" + resources.ApplyResources(Me.ToolStripSeparator40, "ToolStripSeparator40") + ' + 'TrackToolStripMenuItem + ' + Me.TrackToolStripMenuItem.CheckOnClick = True + Me.TrackToolStripMenuItem.Name = "TrackToolStripMenuItem" + resources.ApplyResources(Me.TrackToolStripMenuItem, "TrackToolStripMenuItem") + ' + 'AllrepliesToolStripMenuItem + ' + Me.AllrepliesToolStripMenuItem.CheckOnClick = True + Me.AllrepliesToolStripMenuItem.Name = "AllrepliesToolStripMenuItem" + resources.ApplyResources(Me.AllrepliesToolStripMenuItem, "AllrepliesToolStripMenuItem") + ' 'MenuItemHelp ' Me.MenuItemHelp.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MatomeMenuItem, Me.ShortcutKeyListMenuItem, Me.ToolStripSeparator16, Me.VerUpMenuItem, Me.ToolStripSeparator14, Me.ApiInfoMenuItem, Me.ToolStripSeparator7, Me.AboutMenuItem, Me.DebugModeToolStripMenuItem}) @@ -1468,6 +1513,11 @@ Me.TraceOutToolStripMenuItem.Name = "TraceOutToolStripMenuItem" resources.ApplyResources(Me.TraceOutToolStripMenuItem, "TraceOutToolStripMenuItem") ' + 'CacheInfoMenuItem + ' + Me.CacheInfoMenuItem.Name = "CacheInfoMenuItem" + resources.ApplyResources(Me.CacheInfoMenuItem, "CacheInfoMenuItem") + ' 'ContextMenuOperate ' Me.ContextMenuOperate.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ReplyStripMenuItem, Me.ReplyAllStripMenuItem, Me.DMStripMenuItem, Me.ReTweetOriginalStripMenuItem, Me.ReTweetStripMenuItem, Me.QuoteStripMenuItem, Me.ToolStripSeparator39, Me.FavAddToolStripMenuItem, Me.FavoriteRetweetContextMenu, Me.FavoriteRetweetUnofficialContextMenu, Me.FavRemoveToolStripMenuItem, Me.ToolStripSeparator2, Me.ShowProfileMenuItem, Me.ShowRelatedStatusesMenuItem, Me.ToolStripMenuItem6, Me.ToolStripMenuItem7, Me.ListManageUserContextToolStripMenuItem2, Me.ToolStripSeparator4, Me.ToolStripMenuItem11, Me.JumpUnreadMenuItem, Me.ToolStripSeparator10, Me.SelectAllMenuItem, Me.DeleteStripMenuItem, Me.RefreshStripMenuItem, Me.RefreshMoreStripMenuItem}) @@ -1510,6 +1560,11 @@ Me.ToolStripSeparator39.Name = "ToolStripSeparator39" resources.ApplyResources(Me.ToolStripSeparator39, "ToolStripSeparator39") ' + 'FavAddToolStripMenuItem + ' + Me.FavAddToolStripMenuItem.Name = "FavAddToolStripMenuItem" + resources.ApplyResources(Me.FavAddToolStripMenuItem, "FavAddToolStripMenuItem") + ' 'FavoriteRetweetContextMenu ' Me.FavoriteRetweetContextMenu.Name = "FavoriteRetweetContextMenu" @@ -1520,26 +1575,26 @@ Me.FavoriteRetweetUnofficialContextMenu.Name = "FavoriteRetweetUnofficialContextMenu" resources.ApplyResources(Me.FavoriteRetweetUnofficialContextMenu, "FavoriteRetweetUnofficialContextMenu") ' + 'FavRemoveToolStripMenuItem + ' + Me.FavRemoveToolStripMenuItem.Name = "FavRemoveToolStripMenuItem" + resources.ApplyResources(Me.FavRemoveToolStripMenuItem, "FavRemoveToolStripMenuItem") + ' 'ToolStripSeparator2 ' Me.ToolStripSeparator2.Name = "ToolStripSeparator2" resources.ApplyResources(Me.ToolStripSeparator2, "ToolStripSeparator2") ' - 'FavAddToolStripMenuItem - ' - Me.FavAddToolStripMenuItem.Name = "FavAddToolStripMenuItem" - resources.ApplyResources(Me.FavAddToolStripMenuItem, "FavAddToolStripMenuItem") - ' - 'FavRemoveToolStripMenuItem - ' - Me.FavRemoveToolStripMenuItem.Name = "FavRemoveToolStripMenuItem" - resources.ApplyResources(Me.FavRemoveToolStripMenuItem, "FavRemoveToolStripMenuItem") - ' 'ShowProfileMenuItem ' Me.ShowProfileMenuItem.Name = "ShowProfileMenuItem" resources.ApplyResources(Me.ShowProfileMenuItem, "ShowProfileMenuItem") ' + 'ShowRelatedStatusesMenuItem + ' + Me.ShowRelatedStatusesMenuItem.Name = "ShowRelatedStatusesMenuItem" + resources.ApplyResources(Me.ShowRelatedStatusesMenuItem, "ShowRelatedStatusesMenuItem") + ' 'ToolStripMenuItem6 ' Me.ToolStripMenuItem6.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MoveToHomeToolStripMenuItem, Me.MoveToFavToolStripMenuItem, Me.StatusOpenMenuItem, Me.RepliedStatusOpenMenuItem, Me.FavorareMenuItem, Me.OpenURLMenuItem, Me.MoveToRTHomeMenuItem}) @@ -1724,21 +1779,6 @@ ' Me.OpenFileDialog1.FileName = "OpenFileDialog1" ' - 'ShowRelatedStatusesMenuItem - ' - Me.ShowRelatedStatusesMenuItem.Name = "ShowRelatedStatusesMenuItem" - resources.ApplyResources(Me.ShowRelatedStatusesMenuItem, "ShowRelatedStatusesMenuItem") - ' - 'CacheInfoMenuItem - ' - Me.CacheInfoMenuItem.Name = "CacheInfoMenuItem" - resources.ApplyResources(Me.CacheInfoMenuItem, "CacheInfoMenuItem") - ' - 'ShowRelatedStatusesMenuItem2 - ' - Me.ShowRelatedStatusesMenuItem2.Name = "ShowRelatedStatusesMenuItem2" - resources.ApplyResources(Me.ShowRelatedStatusesMenuItem2, "ShowRelatedStatusesMenuItem2") - ' 'TweenMain ' Me.AllowDrop = True @@ -2042,5 +2082,11 @@ Friend WithEvents ToolStripSeparator2 As System.Windows.Forms.ToolStripSeparator Friend WithEvents ShowRelatedStatusesMenuItem2 As System.Windows.Forms.ToolStripMenuItem Friend WithEvents ShowRelatedStatusesMenuItem As System.Windows.Forms.ToolStripMenuItem + Friend WithEvents MenuItemUserStream As System.Windows.Forms.ToolStripMenuItem + Friend WithEvents PauseToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem + Friend WithEvents StopToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem + Friend WithEvents ToolStripSeparator40 As System.Windows.Forms.ToolStripSeparator + Friend WithEvents TrackToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem + Friend WithEvents AllrepliesToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem End Class Modified: trunk/Tween/Tween.resx =================================================================== --- trunk/Tween/Tween.resx 2010-11-30 17:06:51 UTC (rev 1144) +++ trunk/Tween/Tween.resx 2010-12-01 09:14:29 UTC (rev 1145) @@ -130,7 +130,7 @@ - 243, 22 + 435, 22 ToolStripStatusLabel1 @@ -138,12 +138,6 @@ MiddleLeft - - 77, 22 - - - API ???/??? - 71, 22 @@ -159,9 +153,81 @@ 2, 22 - + 263, 17 + + 280, 22 + + + URLからの全角文字列の切り離し + + + 280, 22 + + + APIコマンドを回避する + + + 280, 22 + + + 自動的にURLを短縮する + + + 280, 22 + + + 全角スペースを半角スペースにする + + + Ctrl+Y + + + 280, 22 + + + 発言欄複数行入力(&M) + + + 280, 22 + + + フォーカスを発言欄へロックする + + + 277, 6 + + + Ctrl+Shift+P + + + 280, 22 + + + 投稿画像選択(&P) + + + 277, 6 + + + Ctrl+Shift+T + + + 280, 22 + + + ハッシュタグ自動付加 + + + Ctrl+T + + + 280, 22 + + + ハッシュタグ設定 + 281, 214 @@ -181,7 +247,7 @@ 0, 0 - 457, 27 + 574, 27 0 @@ -222,6 +288,105 @@ Horizontal + + Bottom + + + 130, 99 + + + 226, 22 + + + タブ作成(&N)... + + + 226, 22 + + + タブ名の変更(&R) + + + 223, 6 + + + 226, 22 + + + 未読管理(&U) + + + 226, 22 + + + 新着通知表示(&Q) + + + 121, 26 + + + 再生するwavファイルを指定してください + + + 223, 6 + + + 226, 22 + + + 振り分けルール編集(&F)... + + + 223, 6 + + + 226, 22 + + + このタブの発言をクリア(&C) + + + 223, 6 + + + 226, 22 + + + タブ削除(&D) + + + 227, 212 + + + ContextMenuTabProperty + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Fill + + + 17, 99 + + + 16, 16 + + + Disable + + + 0, 0 + + + 0, 0, 0, 0 + + + 570, 220 + + + 0 + ListTab @@ -241,7 +406,7 @@ 0, 0 - 453, 164 + 570, 220 0 @@ -261,6 +426,24 @@ True + + Fill + + + Off + + + 0, 0 + + + 570, 192 + + + Zoom + + + 5 + ImageSelectedPicture @@ -273,6 +456,201 @@ 0 + + Fill + + + 57, 3 + + + 278, 19 + + + 1 + + + ImagefilePathText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ImagePathPanel + + + 0 + + + Right + + + Off + + + 335, 3 + + + 22, 22 + + + 2 + + + ... + + + FilePickButton + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ImagePathPanel + + + 1 + + + Right + + + Off + + + 357, 3 + + + 57, 22 + + + 3 + + + 投稿先 + + + MiddleRight + + + Label2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ImagePathPanel + + + 2 + + + Right + + + TwitPic + + + TwitVideo + + + 414, 3 + + + 97, 20 + + + 4 + + + ImageServiceCombo + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ImagePathPanel + + + 3 + + + Right + + + Off + + + 511, 3 + + + 56, 22 + + + 5 + + + Cancel + + + ImageCancelButton + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ImagePathPanel + + + 4 + + + Left + + + Off + + + 3, 3 + + + 54, 22 + + + 0 + + + ファイル + + + MiddleLeft + + + Label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ImagePathPanel + + + 5 + + + Bottom + + + 0, 192 + + + 3, 3, 3, 3 + + + 570, 28 + + + 0 + ImagePathPanel @@ -292,7 +670,7 @@ 0, 0 - 453, 164 + 570, 220 1 @@ -319,7 +697,7 @@ 0, 0 - 453, 164 + 570, 220 2 @@ -369,6 +747,87 @@ 4 + + 635, 58 + + + 238, 22 + + + フォローする(&F) + + + 238, 22 + + + フォロー解除(&N) + + + 238, 22 + + + 相互フォロー状態表示(&H) + + + 238, 22 + + + リスト管理(&L) + + + 235, 6 + + + 238, 22 + + + プロフィール表示(&P) + + + 238, 22 + + + このユーザーの発言を検索(&S) + + + 235, 6 + + + 238, 22 + + + IconName + + + 238, 22 + + + 保存(&I)... + + + 239, 192 + + + ContextMenuUserPicture + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Off + + + 3, 3 + + + 50, 50 + + + Zoom + + + 5 + UserPicture @@ -381,6 +840,237 @@ 0 + + True + + + Fill + + + MS UI Gothic, 9pt, style=Bold + + + Off + + + 59, 3 + + + 3, 3, 3, 0 + + + 323, 14 + + + 0 + + + LblName + + + MiddleLeft + + + NameLabel + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TableLayoutPanel1 + + + 1 + + + 480, 17 + + + 180, 22 + + + Google(&G) + + + 180, 22 + + + Wikipedia(&W) + + + 180, 22 + + + Twitter検索(&Y) + + + 180, 22 + + + Twitter Search(&S) + + + 180, 22 + + + 現在のタブ(&L) + + + 238, 22 + + + 選択文字列で検索(&S) + + + 235, 6 + + + 238, 22 + + + 選択文字列をコピー(&C) + + + False + + + 238, 22 + + + URLをコピー(&U) + + + 238, 22 + + + すべて選択(&A) + + + 235, 6 + + + 238, 22 + + + フォローする(&F) + + + 238, 22 + + + フォロー解除(&N) + + + 238, 22 + + + 相互フォロー状態表示(&R) + + + 238, 22 + + + 全ユーザーのフォロー状態(&A) + + + 235, 6 + + + 238, 22 + + + プロフィール表示(&P) + + + 238, 22 + + + このユーザーの発言を検索(&F) + + + 235, 6 + + + 238, 22 + + + ID振分ルール作成(&I) + + + 238, 22 + + + リスト管理(&L) + + + 235, 6 + + + 238, 22 + + + ハッシュタグを固定(&H) + + + 239, 320 + + + ContextMenuPostBrowser + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Fill + + + 59, 20 + + + 508, 68 + + + 6 + + + PostBrowser + + + System.Windows.Forms.WebBrowser, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TableLayoutPanel1 + + + 2 + + + Top, Bottom, Right + + + True + + + Off + + + 464, 3 + + + 3, 3, 3, 0 + + + 38, 14 + + + 1 + + + Label1 + + + MiddleRight + DateTimeLabel @@ -393,11 +1083,38 @@ 3 + + Top, Bottom, Left, Right + + + True + + + Off + + + 508, 3 + + + 3, 3, 3, 0 + + + 59, 14 + + + 7 + + + LinkLabel1 + + + MiddleRight + SourceLinkLabel - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 TableLayoutPanel1 @@ -415,7 +1132,7 @@ 2 - 453, 99 + 570, 91 1 @@ -457,7 +1174,7 @@ 0, 0 - 365, 19 + 482, 19 1 @@ -481,7 +1198,7 @@ Off - 365, 0 + 482, 0 44, 25 @@ -514,7 +1231,7 @@ Off - 409, 0 + 526, 0 44, 25 @@ -553,10 +1270,10 @@ 19 - 453, 126 + 570, 118 - 99 + 91 2 @@ -598,7 +1315,7 @@ 0, 0 - 77, 126 + 194, 120 Zoom @@ -625,10 +1342,10 @@ Off - 77, 0 + 194, 0 - 17, 126 + 17, 120 0 @@ -658,7 +1375,7 @@ 1 - 453, 126 + 570, 118 355 @@ -694,10 +1411,10 @@ 23 - 457, 300 + 574, 348 - 168 + 224 2 @@ -718,7 +1435,7 @@ 0 - 457, 300 + 574, 348 ToolStripContainer1.ContentPanel @@ -763,7 +1480,7 @@ 2 - 457, 353 + 574, 401 0 @@ -777,855 +1494,6 @@ None - - 0, 0 - - - 457, 26 - - - 0 - - - MenuStrip1 - - - MenuStrip1 - - - System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ToolStripContainer1.TopToolStripPanel - - - 0 - - - ToolStripContainer1.TopToolStripPanel - - - System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ToolStripContainer1 - - - 3 - - - ToolStripContainer1 - - - System.Windows.Forms.ToolStripContainer, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 6 - - - 280, 22 - - - URLからの全角文字列の切り離し - - - 280, 22 - - - APIコマンドを回避する - - - 280, 22 - - - 自動的にURLを短縮する - - - 280, 22 - - - 全角スペースを半角スペースにする - - - Ctrl+Y - - - 280, 22 - - - 発言欄複数行入力(&M) - - - 280, 22 - - - フォーカスを発言欄へロックする - - - 277, 6 - - - Ctrl+Shift+P - - - 280, 22 - - - 投稿画像選択(&P) - - - 277, 6 - - - Ctrl+Shift+T - - - 280, 22 - - - ハッシュタグ自動付加 - - - Ctrl+T - - - 280, 22 - - - ハッシュタグ設定 - - - Bottom - - - 130, 99 - - - 227, 212 - - - ContextMenuTabProperty - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Fill - - - 17, 99 - - - 16, 16 - - - Disable - - - 0, 0 - - - 0, 0, 0, 0 - - - 453, 164 - - - 0 - - - ListTab - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TimelinePanel - - - 0 - - - 226, 22 - - - タブ作成(&N)... - - - 226, 22 - - - タブ名の変更(&R) - - - 223, 6 - - - 226, 22 - - - 未読管理(&U) - - - 226, 22 - - - 新着通知表示(&Q) - - - 121, 26 - - - 再生するwavファイルを指定してください - - - 223, 6 - - - 226, 22 - - - 振り分けルール編集(&F)... - - - 223, 6 - - - 226, 22 - - - このタブの発言をクリア(&C) - - - 223, 6 - - - 226, 22 - - - タブ削除(&D) - - - Fill - - - Off - - - 0, 0 - - - 453, 136 - - - Zoom - - - 5 - - - ImageSelectedPicture - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ImageSelectionPanel - - - 0 - - - ImagefilePathText - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ImagePathPanel - - - 0 - - - FilePickButton - - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ImagePathPanel - - - 1 - - - Label2 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ImagePathPanel - - - 2 - - - ImageServiceCombo - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ImagePathPanel - - - 3 - - - ImageCancelButton - - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ImagePathPanel - - - 4 - - - Label1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ImagePathPanel - - - 5 - - - Bottom - - - 0, 136 - - - 3, 3, 3, 3 - - - 453, 28 - - - 0 - - - ImagePathPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ImageSelectionPanel - - - 1 - - - Fill - - - 57, 3 - - - 161, 19 - - - 1 - - - Right - - - Off - - - 218, 3 - - - 22, 22 - - - 2 - - - ... - - - Right - - - Off - - - 240, 3 - - - 57, 22 - - - 3 - - - 投稿先 - - - MiddleRight - - - Right - - - TwitPic - - - TwitVideo - - - 297, 3 - - - 97, 20 - - - 4 - - - Right - - - Off - - - 394, 3 - - - 56, 22 - - - 5 - - - Cancel - - - Left - - - Off - - - 3, 3 - - - 54, 22 - - - 0 - - - ファイル - - - MiddleLeft - - - 635, 58 - - - 239, 192 - - - ContextMenuUserPicture - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Off - - - 3, 3 - - - 50, 50 - - - Zoom - - - 5 - - - UserPicture - - - System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TableLayoutPanel1 - - - 0 - - - 238, 22 - - - フォローする(&F) - - - 238, 22 - - - フォロー解除(&N) - - - 238, 22 - - - 相互フォロー状態表示(&H) - - - 238, 22 - - - リスト管理(&L) - - - 235, 6 - - - 238, 22 - - - プロフィール表示(&P) - - - 238, 22 - - - このユーザーの発言を検索(&S) - - - 235, 6 - - - 238, 22 - - - IconName - - - 238, 22 - - - 保存(&I)... - - - True - - - Fill - - - MS UI Gothic, 9pt, style=Bold - - - Off - - - 59, 3 - - - 3, 3, 3, 0 - - - 206, 14 - - - 0 - - - LblName - - - MiddleLeft - - - NameLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TableLayoutPanel1 - - - 1 - - - 480, 17 - - - 239, 320 - - - ContextMenuPostBrowser - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Fill - - - 59, 20 - - - 391, 76 - - - 6 - - - PostBrowser - - - System.Windows.Forms.WebBrowser, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TableLayoutPanel1 - - - 2 - - - 238, 22 - - - 選択文字列で検索(&S) - - - 180, 22 - - - Google(&G) - - - 180, 22 - - - Wikipedia(&W) - - - 180, 22 - - - Twitter検索(&Y) - - - 180, 22 - - - Twitter Search(&S) - - - 180, 22 - - - 現在のタブ(&L) - - - 235, 6 - - - 238, 22 - - - 選択文字列をコピー(&C) - - - False - - - 238, 22 - - - URLをコピー(&U) - - - 238, 22 - - - すべて選択(&A) - - - 235, 6 - - - 238, 22 - - - フォローする(&F) - - - 238, 22 - - - フォロー解除(&N) - - - 238, 22 - - - 相互フォロー状態表示(&R) - - - 238, 22 - - - 全ユーザーのフォロー状態(&A) - - - 235, 6 - - - 238, 22 - - - プロフィール表示(&P) - - - 238, 22 - - - このユーザーの発言を検索(&F) - - - 235, 6 - - - 238, 22 - - - ID振分ルール作成(&I) - - - 238, 22 - - - リスト管理(&L) - - - 235, 6 - - - 238, 22 - - - ハッシュタグを固定(&H) - - - Top, Bottom, Right - - - True - - - Off - - - 347, 3 - - - 3, 3, 3, 0 - - - 38, 14 - - - 1 - - - Label1 - - - MiddleRight - - - DateTimeLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TableLayoutPanel1 - - - 3 - - - Top, Bottom, Left, Right - - - True - - - Off - - - 391, 3 - - - 3, 3, 3, 0 - - - 59, 14 - - - 7 - - - LinkLabel1 - - - MiddleRight - - - SourceLinkLabel - - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TableLayoutPanel1 - - - 4 - - - 85, 22 - - - ファイル(&F) - 189, 22 @@ -1671,11 +1539,11 @@ 終了(&X) - - 61, 22 + + 85, 22 - - 編集(&E) + + ファイル(&F) 259, 22 @@ -1746,11 +1614,11 @@ 抽出条件入力(&Q) - - 63, 22 + + 61, 22 - - 操作(&O) + + 編集(&E) Ctrl+R @@ -1809,6 +1677,15 @@ 313, 6 + + Ctrl+S + + + 316, 22 + + + Fav追加(&F) + Ctrl+Alt+S @@ -1827,18 +1704,6 @@ Fav追加+Retweet(Unofficial) - - 313, 6 - - - Ctrl+S - - - 316, 22 - - - Fav追加(&F) - Ctrl+Shift+S @@ -1848,6 +1713,9 @@ Fav削除(&V) + + 313, 6 + @@ -1860,11 +1728,11 @@ プロフィール表示 - + 316, 22 - - 開く(&O) + + 関連発言表示(&G) Ctrl+H @@ -1929,11 +1797,11 @@ RTした人のホームを開く(&R) - + 316, 22 - - 振り分けルール作成(&C) + + 開く(&O) 227, 22 @@ -1947,6 +1815,12 @@ ID振り分けルール作成(&I) + + 316, 22 + + + 振り分けルール作成(&C) + 316, 22 @@ -1956,12 +1830,6 @@ 313, 6 - - 316, 22 - - - 未読状態変更(&H) - Ctrl+B @@ -1980,6 +1848,12 @@ 未読にする(&U) + + 316, 22 + + + 未読状態変更(&H) + 316, 22 @@ -2025,11 +1899,11 @@ 前データを取得(&I) - - 62, 22 + + 63, 22 - - タブ(&T) + + 操作(&O) 226, 22 @@ -2091,18 +1965,12 @@ タブ削除(&D) - - 98, 22 + + 62, 22 - - その他機能(&C) + + タブ(&T) - - 280, 22 - - - 入力欄のURLを短縮変換 - Ctrl+L @@ -2151,6 +2019,12 @@ j.mp + + 280, 22 + + + 入力欄のURLを短縮変換 + 280, 22 @@ -2226,12 +2100,51 @@ リスト編集 - - 75, 22 + + 98, 22 - - ヘルプ(&H) + + その他機能(&C) + + False + + + 144, 22 + + + Pause + + + 144, 22 + + + Stop + + + 141, 6 + + + 144, 22 + + + Track + + + 144, 22 + + + All @replies + + + False + + + 91, 22 + + + UserStream + F1 @@ -2274,6 +2187,18 @@ Tweenについて(&A)... + + 232, 22 + + + PostClassのダンプ + + + 232, 22 + + + TraceOut出力 + 232, 22 @@ -2289,18 +2214,60 @@ False - - 179, 22 + + 75, 22 - - PostClassのダンプ + + ヘルプ(&H) - - 179, 22 + + 0, 0 - - TraceOut出力 + + 574, 26 + + 0 + + + MenuStrip1 + + + MenuStrip1 + + + System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ToolStripContainer1.TopToolStripPanel + + + 0 + + + ToolStripContainer1.TopToolStripPanel + + + System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ToolStripContainer1 + + + 3 + + + ToolStripContainer1 + + + System.Windows.Forms.ToolStripContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 6 + 443, 58 @@ -2382,12 +2349,66 @@ 関連発言表示(&G) + + 230, 22 + + + ホームを開く(&H) + + + 230, 22 + + + Favを開く(&G) + + + 230, 22 + + + ステータスを開く(&O) + + + 230, 22 + + + 返信元ステータスを開く(&I) + + + 230, 22 + + + ふぁぼられを開く(&P) + + + 230, 22 + + + 発言内URLを開く(&U) + + + 230, 22 + + + RTした人のホームを開く(&R) + 243, 22 開く(&O) + + 239, 22 + + + タブ振り分けルール作成(&N)... + + + 239, 22 + + + ID振り分けルール作成... + 243, 22 @@ -2403,6 +2424,18 @@ 240, 6 + + 154, 22 + + + 既読にする(&B) + + + 154, 22 + + + 未読にする + 243, 22 @@ -2443,7 +2476,7 @@ 前データを取得(&I) - 244, 512 + 244, 490 ContextMenuOperate @@ -2451,84 +2484,9 @@ System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 230, 22 - - - ホームを開く(&H) - - - 230, 22 - - - Favを開く(&G) - - - 230, 22 - - - ステータスを開く(&O) - - - 230, 22 - - - 返信元ステータスを開く(&I) - - - 230, 22 - - - ふぁぼられを開く(&P) - - - 230, 22 - - - 発言内URLを開く(&U) - - - 230, 22 - - - RTした人のホームを開く(&R) - - - 239, 22 - - - タブ振り分けルール作成(&N)... - - - 239, 22 - - - ID振り分けルール作成... - - - 154, 22 - - - 既読にする(&B) - - - 154, 22 - - - 未読にする - - + 276, 58 - - 190, 154 - - - ContextMenuFile - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 189, 22 @@ -2577,6 +2535,15 @@ 終了(&X) + + 190, 154 + + + ContextMenuFile + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 155, 58 @@ -2595,13 +2562,7 @@ 750, 95 - - 316, 22 - - - 関連発言表示(&G) - - + True @@ -2611,7 +2572,7 @@ 6, 12 - 457, 353 + 574, 401 Off @@ -2638,7 +2599,7 @@ ToolStripStatusLabel1 - System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 HashStripSplitButton @@ -3082,7 +3043,7 @@ CopyUserIdStripMenuItem - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ToolStripSeparator6 @@ -3168,28 +3129,22 @@ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + FavOpMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + FavoriteRetweetMenuItem - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 FavoriteRetweetUnofficialMenuItem - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ToolStripSeparator38 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - FavOpMenuItem - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -3198,12 +3153,24 @@ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ToolStripSeparator38 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + ShowProfMenuItem System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ShowRelatedStatusesMenuItem2 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + OpenOpMenuItem @@ -3546,6 +3513,42 @@ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MenuItemUserStream + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PauseToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + StopToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ToolStripSeparator40 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TrackToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + AllrepliesToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + MenuItemHelp @@ -3618,6 +3621,12 @@ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CacheInfoMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + ReplyStripMenuItem @@ -3658,30 +3667,24 @@ ToolStripSeparator39 - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + FavAddToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + FavoriteRetweetContextMenu - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 FavoriteRetweetUnofficialContextMenu - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ToolStripSeparator2 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - FavAddToolStripMenuItem - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 @@ -3690,12 +3693,24 @@ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ToolStripSeparator2 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + ShowProfileMenuItem System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ShowRelatedStatusesMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + ToolStripMenuItem6 @@ -3912,24 +3927,6 @@ System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ShowRelatedStatusesMenuItem - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ShowRelatedStatusesMenuItem2 - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - CacheInfoMenuItem - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - TweenMain Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-11-30 17:06:51 UTC (rev 1144) +++ trunk/Tween/Tween.vb 2010-12-01 09:14:29 UTC (rev 1145) @@ -8274,6 +8274,16 @@ End If End If _initial = False + AddHandler tw.NewPostFromStream, AddressOf tw_NewPostFromStream + AddHandler tw.UserStreamStarted, AddressOf tw_UserStreamStarted + AddHandler tw.UserStreamStopped, AddressOf tw_UserStreamStopped + AddHandler tw.UserStreamPaused, AddressOf tw_UserStreamPaused + AddHandler tw.PostDeleted, AddressOf tw_PostDeleted + PauseToolStripMenuItem.Text = "&Pause" + PauseToolStripMenuItem.Enabled = False + StopToolStripMenuItem.Text = "&Start" + StopToolStripMenuItem.Enabled = True + tw.StartUserStream() TimerTimeline.Enabled = True End Sub @@ -9740,4 +9750,169 @@ buf.AppendFormat("キャッシュエントリ破棄数 : {0}" + vbCrLf, DirectCast(TIconDic, ImageDictionary).CacheRemoveCount) MessageBox.Show(buf.ToString, "アイコンキャッシュ使用状況") End Sub + + Private Sub tw_PostDeleted(ByVal id As Long) + Try + If InvokeRequired Then + Invoke(New Action(Of Long)(AddressOf tw_PostDeleted), id) + Exit Sub + End If + Catch ex As ObjectDisposedException + Exit Sub + End Try + + _statuses.RemovePost(id) + + If _curTab Is Nothing OrElse _curList Is Nothing Then Exit Sub + + Dim fidx As Integer + If _curList.FocusedItem IsNot Nothing Then + fidx = _curList.FocusedItem.Index + ElseIf _curList.TopItem IsNot Nothing Then + fidx = _curList.TopItem.Index + Else + fidx = 0 + End If + + _itemCache = Nothing 'キャッシュ破棄 + _postCache = Nothing + _curPost = Nothing + _curItemIndex = -1 + For Each tb As TabPage In ListTab.TabPages + DirectCast(tb.Tag, DetailsListView).VirtualListSize = _statuses.Tabs(tb.Text).AllCount + If _curTab.Equals(tb) Then + _curList.SelectedIndices.Clear() + If _statuses.Tabs(tb.Text).AllCount > 0 Then + If _statuses.Tabs(tb.Text).AllCount - 1 > fidx AndAlso fidx > -1 Then + _curList.SelectedIndices.Add(fidx) + Else + _curList.SelectedIndices.Add(_statuses.Tabs(tb.Text).AllCount - 1) + End If + 'If _curList.SelectedIndices.Count > 0 Then + ' _curList.EnsureVisible(_curList.SelectedIndices(0)) + ' _curList.FocusedItem = _curList.Items(_curList.SelectedIndices(0)) + 'End If + End If + End If + If _statuses.Tabs(tb.Text).UnreadCount = 0 Then + If SettingDialog.TabIconDisp Then + If tb.ImageIndex = 0 Then tb.ImageIndex = -1 'タブアイコン + End If + End If + Next + If Not SettingDialog.TabIconDisp Then ListTab.Refresh() + End Sub + + Private Sub tw_NewPostFromStream() + If SettingDialog.ReadOldPosts Then + _statuses.SetRead() '新着時未読クリア + End If + + Dim rsltAddCount As Integer = _statuses.DistributePosts() + SyncLock _syncObject + Dim tm As Date = Now + If _tlTimestamps.ContainsKey(tm) Then + _tlTimestamps(tm) += rsltAddCount + Else + _tlTimestamps.Add(Now, rsltAddCount) + End If + Dim oneHour As Date = Now.Subtract(New TimeSpan(1, 0, 0)) + Dim keys As New List(Of Date) + _tlCount = 0 + For Each key As Date In _tlTimestamps.Keys + If key.CompareTo(oneHour) < 0 Then + keys.Add(key) + Else + _tlCount += _tlTimestamps(key) + End If + Next + For Each key As Date In keys + _tlTimestamps.Remove(key) + Next + keys.Clear() + + 'Static before As DateTime = Now + 'If before.Subtract(Now).Seconds > -5 Then Exit Sub + 'before = Now + End SyncLock + + Try + If InvokeRequired AndAlso Not IsDisposed Then + Invoke(New MethodInvoker(AddressOf RefreshTimeline)) + Exit Sub + End If + Catch ex As ObjectDisposedException + Exit Sub + End Try + End Sub + Private Sub tw_UserStreamStarted() + If InvokeRequired Then + Invoke(New MethodInvoker(AddressOf tw_UserStreamStarted)) + Exit Sub + End If + + MenuItemUserStream.Text = "&UserStream ?" + MenuItemUserStream.Enabled = True + PauseToolStripMenuItem.Text = "&Pause" + PauseToolStripMenuItem.Enabled = True + StopToolStripMenuItem.Text = "&Stop" + StopToolStripMenuItem.Enabled = True + + StatusLabel.Text = "UserStream Started." + End Sub + + Private Sub tw_UserStreamStopped() + If InvokeRequired Then + Invoke(New MethodInvoker(AddressOf tw_UserStreamStopped)) + Exit Sub + End If + + MenuItemUserStream.Text = "&UserStream ■" + MenuItemUserStream.Enabled = True + PauseToolStripMenuItem.Text = "&Pause" + PauseToolStripMenuItem.Enabled = False + StopToolStripMenuItem.Text = "&Start" + StopToolStripMenuItem.Enabled = True + + StatusLabel.Text = "UserStream Stopped." + End Sub + + Private Sub tw_UserStreamPaused() + If InvokeRequired Then + Invoke(New MethodInvoker(AddressOf tw_UserStreamPaused)) + Exit Sub + End If + + MenuItemUserStream.Text = "&UserStream ||" + MenuItemUserStream.Enabled = True + PauseToolStripMenuItem.Text = "&Resume" + PauseToolStripMenuItem.Enabled = True + StopToolStripMenuItem.Text = "&Stop" + StopToolStripMenuItem.Enabled = True + + StatusLabel.Text = "UserStream Paused." + End Sub + + Private Sub PauseToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PauseToolStripMenuItem.Click + MenuItemUserStream.Enabled = False + tw.PauseUserStream() + End Sub + + Private Sub StopToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles StopToolStripMenuItem.Click + MenuItemUserStream.Enabled = False + tw.StartUserStream() + End Sub + + Private Sub TrackToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TrackToolStripMenuItem.Click + Static track As String + track = InputBox("追跡するキーワードを入力してください") + tw.StopUserStream() + tw.StartUserStream(AllrepliesToolStripMenuItem.Checked, track) + TrackToolStripMenuItem.Checked = Not String.IsNullOrEmpty(track) + End Sub + + Private Sub AllrepliesToolStripMenuItem_CheckStateChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AllrepliesToolStripMenuItem.CheckStateChanged + tw.StopUserStream() + tw.StartUserStream(AllrepliesToolStripMenuItem.Checked, "") + End Sub End Class Modified: trunk/Tween/Tween.vbproj =================================================================== --- trunk/Tween/Tween.vbproj 2010-11-30 17:06:51 UTC (rev 1144) +++ trunk/Tween/Tween.vbproj 2010-12-01 09:14:29 UTC (rev 1145) @@ -89,6 +89,9 @@ x86 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036 + + On + @@ -128,6 +131,7 @@ + Component @@ -531,6 +535,9 @@ true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file Added: trunk/Tween/EventViewerDialog.vb =================================================================== --- trunk/Tween/EventViewerDialog.vb (rev 0) +++ trunk/Tween/EventViewerDialog.vb 2010-12-09 11:26:16 UTC (rev 1187) @@ -0,0 +1,23 @@ +?Imports System.Windows.Forms + +Public Class EventViewerDialog + Public Property EventSource As List(Of Twitter.FormattedEvent) + + Private Sub OK_Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK_Button.Click + Me.DialogResult = System.Windows.Forms.DialogResult.OK + Me.Close() + End Sub + + Private Sub Cancel_Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cancel_Button.Click + Me.DialogResult = System.Windows.Forms.DialogResult.Cancel + Me.Close() + End Sub + + Private Sub EventViewerDialog_Shown(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Shown + For Each x As Twitter.FormattedEvent In EventSource + Dim s() As String = {x.CreatedAt.ToString, x.Event.ToUpper, x.Username, x.Target} + Me.EventList.Items.Add(New ListViewItem(s)) + Next + Me.EventList.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent) + End Sub +End Class Modified: trunk/Tween/StatusDictionary.vb =================================================================== --- trunk/Tween/StatusDictionary.vb 2010-12-09 09:35:10 UTC (rev 1186) +++ trunk/Tween/StatusDictionary.vb 2010-12-09 11:26:16 UTC (rev 1187) @@ -998,6 +998,7 @@ If tb.UnreadManage = False Then Exit Sub '未読管理していなければ終了 + If Not tb.Contains(Index) Then Exit Sub Dim Id As Long = tb.GetId(Index) Dim post As PostClass If Not tb.IsInnerStorageTabType Then @@ -1005,6 +1006,7 @@ Else post = tb.Posts(Id) End If + If post.IsRead = Read Then Exit Sub '状態変更なければ終了 post.IsRead = Read '指定の状態に変更 @@ -1045,22 +1047,24 @@ Dim tb As TabClass = GetTabByType(TabUsageType.Home) If tb.UnreadManage = False Then Exit Sub - For i As Integer = 0 To tb.AllCount - 1 - Dim id As Long = tb.GetId(i) - If Not _statuses(id).IsReply AndAlso _ - Not _statuses(id).IsRead AndAlso _ - Not _statuses(id).FilterHit Then - _statuses(id).IsRead = True - Me.SetNextUnreadId(id, tb) '次の未読セット - For Each key As String In _tabs.Keys - If _tabs(key).UnreadManage AndAlso _ - _tabs(key).Contains(id) Then - _tabs(key).UnreadCount -= 1 - If _tabs(key).OldestUnreadId = id Then _tabs(key).OldestUnreadId = -1 - End If - Next - End If - Next + SyncLock LockObj + For i As Integer = 0 To tb.AllCount - 1 + Dim id As Long = tb.GetId(i) + If Not _statuses(id).IsReply AndAlso _ + Not _statuses(id).IsRead AndAlso _ + Not _statuses(id).FilterHit Then + _statuses(id).IsRead = True + Me.SetNextUnreadId(id, tb) '次の未読セット + For Each key As String In _tabs.Keys + If _tabs(key).UnreadManage AndAlso _ + _tabs(key).Contains(id) Then + _tabs(key).UnreadCount -= 1 + If _tabs(key).OldestUnreadId = id Then _tabs(key).OldestUnreadId = -1 + End If + Next + End If + Next + End SyncLock End Sub Public ReadOnly Property Item(ByVal ID As Long) As PostClass Modified: trunk/Tween/Tween.Designer.vb =================================================================== --- trunk/Tween/Tween.Designer.vb 2010-12-09 09:35:10 UTC (rev 1186) +++ trunk/Tween/Tween.Designer.vb 2010-12-09 11:26:16 UTC (rev 1187) @@ -289,6 +289,8 @@ Me.TimerRefreshIcon = New System.Windows.Forms.Timer(Me.components) Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog() Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components) + Me.ToolStripSeparator42 = New System.Windows.Forms.ToolStripSeparator() + Me.EventViewerMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ToolStripContainer1.BottomToolStripPanel.SuspendLayout() Me.ToolStripContainer1.ContentPanel.SuspendLayout() Me.ToolStripContainer1.TopToolStripPanel.SuspendLayout() @@ -1453,7 +1455,7 @@ ' 'MenuItemUserStream ' - Me.MenuItemUserStream.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.StopToolStripMenuItem, Me.ToolStripSeparator40, Me.TrackToolStripMenuItem, Me.AllrepliesToolStripMenuItem}) + Me.MenuItemUserStream.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.StopToolStripMenuItem, Me.ToolStripSeparator40, Me.TrackToolStripMenuItem, Me.AllrepliesToolStripMenuItem, Me.ToolStripSeparator42, Me.EventViewerMenuItem}) resources.ApplyResources(Me.MenuItemUserStream, "MenuItemUserStream") Me.MenuItemUserStream.Name = "MenuItemUserStream" ' @@ -1809,6 +1811,16 @@ ' Me.OpenFileDialog1.FileName = "OpenFileDialog1" ' + 'ToolStripSeparator42 + ' + Me.ToolStripSeparator42.Name = "ToolStripSeparator42" + resources.ApplyResources(Me.ToolStripSeparator42, "ToolStripSeparator42") + ' + 'EventViewerMenuItem + ' + Me.EventViewerMenuItem.Name = "EventViewerMenuItem" + resources.ApplyResources(Me.EventViewerMenuItem, "EventViewerMenuItem") + ' 'TweenMain ' Me.AllowDrop = True @@ -2123,5 +2135,7 @@ Friend WithEvents ToolStripSeparator41 As System.Windows.Forms.ToolStripSeparator Friend WithEvents OpenOwnHomeMenuItem As System.Windows.Forms.ToolStripMenuItem Friend WithEvents OpenOwnFavedMenuItem As System.Windows.Forms.ToolStripMenuItem + Friend WithEvents ToolStripSeparator42 As System.Windows.Forms.ToolStripSeparator + Friend WithEvents EventViewerMenuItem As System.Windows.Forms.ToolStripMenuItem End Class Modified: trunk/Tween/Tween.resx =================================================================== --- trunk/Tween/Tween.resx 2010-12-09 09:35:10 UTC (rev 1186) +++ trunk/Tween/Tween.resx 2010-12-09 11:26:16 UTC (rev 1187) @@ -382,7 +382,7 @@ 0, 0, 0, 0 - 570, 242 + 570, 244 0 @@ -406,7 +406,7 @@ 0, 0 - 570, 242 + 570, 244 0 @@ -436,7 +436,7 @@ 0, 0 - 570, 214 + 570, 216 Zoom @@ -640,7 +640,7 @@ Bottom - 0, 214 + 0, 216 3, 3, 3, 3 @@ -670,7 +670,7 @@ 0, 0 - 570, 242 + 570, 244 1 @@ -697,7 +697,7 @@ 0, 0 - 570, 242 + 570, 244 2 @@ -1039,7 +1039,7 @@ 59, 20 - 508, 46 + 508, 44 6 @@ -1144,7 +1144,7 @@ 2 - 570, 69 + 570, 67 1 @@ -1282,10 +1282,10 @@ 19 - 570, 96 + 570, 94 - 69 + 67 2 @@ -1327,7 +1327,7 @@ 0, 0 - 194, 98 + 194, 96 Zoom @@ -1357,7 +1357,7 @@ 194, 0 - 17, 98 + 17, 96 0 @@ -1387,7 +1387,7 @@ 1 - 570, 96 + 570, 94 355 @@ -1426,7 +1426,7 @@ 574, 348 - 246 + 248 2 @@ -2140,26 +2140,35 @@ その他機能(&C) - 144, 22 + 152, 22 Stop - 141, 6 + 149, 6 - 144, 22 + 152, 22 Track - 144, 22 + 152, 22 All @replies + + 149, 6 + + + 152, 22 + + + View Events + False @@ -3981,6 +3990,18 @@ System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ToolStripSeparator42 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + EventViewerMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + TweenMain Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-09 09:35:10 UTC (rev 1186) +++ trunk/Tween/Tween.vb 2010-12-09 11:26:16 UTC (rev 1187) @@ -8353,6 +8353,7 @@ AddHandler tw.UserStreamStarted, AddressOf tw_UserStreamStarted AddHandler tw.UserStreamStopped, AddressOf tw_UserStreamStopped AddHandler tw.PostDeleted, AddressOf tw_PostDeleted + AddHandler tw.UserStreamEventReceived, AddressOf tw_UserStreamEventArrived MenuItemUserStream.Text = "&UserStream ■" MenuItemUserStream.Enabled = True @@ -9910,6 +9911,14 @@ StatusLabel.Text = "UserStream Stopped." End Sub + Private Sub tw_UserStreamEventArrived(ByVal eventType As String) + If InvokeRequired Then + Invoke(New Action(Of String)(AddressOf tw_UserStreamEventArrived), eventType) + Exit Sub + End If + StatusLabel.Text = "Event: " + eventType + End Sub + Private Sub StopToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles StopToolStripMenuItem.Click MenuItemUserStream.Enabled = False tw.StartUserStream() @@ -9958,4 +9967,13 @@ Private Sub OpenOwnHomeMenuItem_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles OpenOwnHomeMenuItem.Click OpenUriAsync("http://twitter.com/" + tw.Username) End Sub + + Private Sub EventViewerMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles EventViewerMenuItem.Click + Using dlg As New EventViewerDialog + dlg.Owner = Me + dlg.EventSource = tw.StoredEvent + dlg.ShowDialog() + Me.TopMost = SettingDialog.AlwaysTop + End Using + End Sub End Class Modified: trunk/Tween/Tween.vbproj =================================================================== --- trunk/Tween/Tween.vbproj 2010-12-09 09:35:10 UTC (rev 1186) +++ trunk/Tween/Tween.vbproj 2010-12-09 11:26:16 UTC (rev 1187) @@ -137,6 +137,12 @@ Component + + EventViewerDialog.vb + + + Form + DialogAsShieldIcon.vb @@ -287,6 +293,9 @@ AtIdSupplement.vb Designer + + EventViewerDialog.vb + DialogAsShieldIcon.vb Designer Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-09 09:35:10 UTC (rev 1186) +++ trunk/Tween/Twitter.vb 2010-12-09 11:26:16 UTC (rev 1187) @@ -2113,12 +2113,7 @@ Dim item As List(Of TwitterDataModel.Status) Try - Using stream As New MemoryStream() - Dim buf As Byte() = Encoding.Unicode.GetBytes(content) - stream.Write(buf, 0, buf.Length) - stream.Seek(offset:=0, loc:=SeekOrigin.Begin) - item = DirectCast(serializer.ReadObject(stream), List(Of TwitterDataModel.Status)) - End Using + item = CreateDataFromJson(Of List(Of TwitterDataModel.Status))(content) Catch ex As SerializationException TraceOut(ex.Message + Environment.NewLine + content) Return "Json Parse Error(DataContractJsonSerializer)" @@ -2813,8 +2808,25 @@ Public Event UserStreamStopped() Public Event UserStreamGetFriendsList() Public Event PostDeleted(ByVal id As Long) + Public Event UserStreamEventReceived(ByVal eventType As String) Private WithEvents userStream As TwitterUserstream + Public Class FormattedEvent + Public Property CreatedAt As DateTime + Public Property [Event] As String + Public Property Username As String + Public Property Target As String + + Public Overrides Function ToString() As String + Return (Me.CreatedAt.ToString() + " ").Substring(0, 20) + + ("[" + Me.Event.ToUpper + "] ").Substring(0, 20) + + (Me.Username + " ").Substring(0, 20) + + Me.Target + End Function + End Class + + Public Property StoredEvent As New List(Of FormattedEvent) + Private EventNameTable() As String = { "favorite", "unfavorite", @@ -2847,9 +2859,7 @@ Exit Sub ElseIf xElm.Element("event") IsNot Nothing Then Debug.Print("event: " + xElm.Element("event").Value) - If Array.IndexOf(EventNameTable, xElm.Element("event").Value) = -1 Then - TraceOut("Unknown Event:" + xElm.Element("event").Value + Environment.NewLine + line) - End If + CreateEventFromJson(line) Exit Sub ElseIf xElm.Element("direct_message") IsNot Nothing Then Debug.Print("direct_message") @@ -2872,6 +2882,41 @@ RaiseEvent NewPostFromStream() End Sub + Private Sub CreateEventFromJson(ByVal content As String) + Dim eventData As TwitterDataModel.EventData = Nothing + Try + eventData = CreateDataFromJson(Of TwitterDataModel.EventData)(content) + Catch ex As SerializationException + TraceOut(ex, "Event Serialize Exception!" + Environment.NewLine + content) + Catch ex As Exception + TraceOut(ex, "Event Exception!" + Environment.NewLine + content) + End Try + + Dim evt As New FormattedEvent + evt.CreatedAt = Me.DateTimeParse(eventData.CreatedAt) + evt.Event = eventData.Event + evt.Username = eventData.Source.ScreenName + Select Case eventData.Event + Case "follow" + If eventData.Target.ScreenName.ToLower.Equals(_uid) Then + If Not Me.followerId.Contains(eventData.Source.Id) Then Me.followerId.Add(eventData.Source.Id) + Else + Exit Sub 'Block後のUndoをすると、SourceとTargetが逆転したfollowイベントが帰ってくるため。 + End If + evt.Target = "" + Case "favorite", "unfavorite" + evt.Target = eventData.TargetObject.Text + Case "list_member_added", "list_member_removed" + evt.Target = eventData.TargetObject.Name + Case "block" + evt.Target = "" + Case Else + TraceOut("Unknown Event:" + evt.Event + Environment.NewLine + content) + End Select + Me.StoredEvent.Insert(0, evt) + RaiseEvent UserStreamEventReceived(evt.Event) + End Sub + Private Function CreateDataFromJson(Of T)(ByVal content As String) As T Dim data As T Using stream As New MemoryStream() From svnnotify @ sourceforge.jp Thu Dec 9 20:36:08 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Thu, 09 Dec 2010 20:36:08 +0900 Subject: [Tween-svn] =?utf-8?b?WzExODhdICDjg43jg4Pjg4jjg6/jg7zjgq/mjqU=?= =?utf-8?b?57aa44GM44Gq44GP44Gm44KCVVPlho3mjqXntprjgZnjgovllY/poYzjgpI=?= =?utf-8?b?5L+u5q2j?= Message-ID: <1291894568.731973.620.nullmailer@users.sourceforge.jp> Revision: 1188 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1188 Author: kiri_feather Date: 2010-12-09 20:36:08 +0900 (Thu, 09 Dec 2010) Log Message: ----------- ネットワーク接続がなくてもUS再接続する問題を修正 Modified Paths: -------------- trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-09 11:26:16 UTC (rev 1187) +++ trunk/Tween/Twitter.vb 2010-12-09 11:36:08 UTC (rev 1188) @@ -36,6 +36,7 @@ Imports System.Linq Imports System.Xml.Linq Imports System.Runtime.Serialization +Imports System.Net.NetworkInformation Public Class Twitter Implements IDisposable @@ -3022,6 +3023,11 @@ Dim sr As StreamReader = Nothing Do Try + If Not NetworkInterface.GetIsNetworkAvailable Then + Thread.Sleep(30 * 1000) + Continue Do + End If + RaiseEvent Started() twCon.UserStream(st, _allAtreplies, _trackwords) From svnnotify @ sourceforge.jp Thu Dec 9 21:00:04 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Thu, 09 Dec 2010 21:00:04 +0900 Subject: [Tween-svn] =?utf-8?b?WzExODldICBTZXRSZWFk44Gu44Ko44Oz44OQ44Kw?= =?utf-8?b?5L+u5q2j?= Message-ID: <1291896004.136346.5024.nullmailer@users.sourceforge.jp> Revision: 1189 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1189 Author: kiri_feather Date: 2010-12-09 21:00:04 +0900 (Thu, 09 Dec 2010) Log Message: ----------- SetReadのエンバグ修正 Modified Paths: -------------- trunk/Tween/StatusDictionary.vb -------------- next part -------------- Modified: trunk/Tween/StatusDictionary.vb =================================================================== --- trunk/Tween/StatusDictionary.vb 2010-12-09 11:36:08 UTC (rev 1188) +++ trunk/Tween/StatusDictionary.vb 2010-12-09 12:00:04 UTC (rev 1189) @@ -443,6 +443,7 @@ For idx As Integer = 0 To _tabs(TabName).AllCount - 1 Dim exist As Boolean = False Dim Id As Long = _tabs(TabName).GetId(idx) + If Id < 0 Then Continue For For Each key As String In _tabs.Keys If Not key = TabName AndAlso key <> dmName Then If _tabs(key).Contains(Id) Then @@ -998,8 +999,8 @@ If tb.UnreadManage = False Then Exit Sub '未読管理していなければ終了 - If Not tb.Contains(Index) Then Exit Sub Dim Id As Long = tb.GetId(Index) + If Id < 0 Then Exit Sub Dim post As PostClass If Not tb.IsInnerStorageTabType Then post = _statuses(Id) @@ -1050,6 +1051,7 @@ SyncLock LockObj For i As Integer = 0 To tb.AllCount - 1 Dim id As Long = tb.GetId(i) + If id < 0 Then Exit Sub If Not _statuses(id).IsReply AndAlso _ Not _statuses(id).IsRead AndAlso _ Not _statuses(id).FilterHit Then @@ -1833,7 +1835,7 @@ End Sub Public Function GetId(ByVal Index As Integer) As Long - Return _ids(Index) + Return If(Index < _ids.Count, _ids(Index), -1) End Function Public Function IndexOf(ByVal ID As Long) As Integer From svnnotify @ sourceforge.jp Thu Dec 9 22:09:23 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Thu, 09 Dec 2010 22:09:23 +0900 Subject: [Tween-svn] =?utf-8?b?WzExOTBdICDliJ3mnJ/ljJbmmYLjga5FeHRlcm5h?= =?utf-8?b?bEV4Y2VwdGlvbiAsIFNFSEV4Y2VwdGlvbuOCkuOCreODo+ODg+ODgeOBmQ==?= =?utf-8?b?44KL44KI44GG44Gr?= Message-ID: <1291900163.716638.20235.nullmailer@users.sourceforge.jp> Revision: 1190 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1190 Author: syo68k Date: 2010-12-09 22:09:23 +0900 (Thu, 09 Dec 2010) Log Message: ----------- 初期化時のExternalException,SEHExceptionをキャッチするように Modified Paths: -------------- trunk/Tween/WebBrowserController.vb -------------- next part -------------- Modified: trunk/Tween/WebBrowserController.vb =================================================================== --- trunk/Tween/WebBrowserController.vb 2010-12-09 12:00:04 UTC (rev 1189) +++ trunk/Tween/WebBrowserController.vb 2010-12-09 13:09:23 UTC (rev 1190) @@ -284,10 +284,17 @@ ' IServiceProvider.QueryService() を使って IProfferService を取得 ocxServiceProvider = DirectCast(ocx, WebBrowserAPI.IServiceProvider) - ocxServiceProvider.QueryService( _ + Try + ocxServiceProvider.QueryService( _ WebBrowserAPI.SID_SProfferService, _ WebBrowserAPI.IID_IProfferService, profferServicePtr) + Catch ex As SEHException + Catch ex As ExternalException + TraceOut(ex, "HRESULT:" + ex.ErrorCode.ToString("X8") + Environment.NewLine) + Exit Sub + End Try + profferService = DirectCast(Marshal.GetObjectForIUnknown(profferServicePtr), _ WebBrowserAPI.IProfferService) From svnnotify @ sourceforge.jp Thu Dec 9 23:22:15 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Thu, 09 Dec 2010 23:22:15 +0900 Subject: [Tween-svn] =?utf-8?q?=5B1191=5D__EventViewerDialog=E3=81=AE?= =?utf-8?b?5Yid5pyf5Yem55CG44Gn6KGo56S644Ki44Kk44OG44Og44GM44Gq44GR44KM?= =?utf-8?b?44Gw44Kr44Op44Og5bmF6Kq/5pW044GX44Gq44GE44KI44GG44Gr?= Message-ID: <1291904535.025703.3525.nullmailer@users.sourceforge.jp> Revision: 1191 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1191 Author: kiri_feather Date: 2010-12-09 23:22:14 +0900 (Thu, 09 Dec 2010) Log Message: ----------- EventViewerDialogの初期処理で表示アイテムがなければカラム幅調整しないように 旧形式の設定ファイル読み込み処理を削除 Modified Paths: -------------- trunk/Tween/EventViewerDialog.vb trunk/Tween/Tween.vb trunk/Tween/Tween.vbproj -------------- next part -------------- Modified: trunk/Tween/EventViewerDialog.vb =================================================================== --- trunk/Tween/EventViewerDialog.vb 2010-12-09 13:09:23 UTC (rev 1190) +++ trunk/Tween/EventViewerDialog.vb 2010-12-09 14:22:14 UTC (rev 1191) @@ -14,10 +14,12 @@ End Sub Private Sub EventViewerDialog_Shown(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Shown - For Each x As Twitter.FormattedEvent In EventSource - Dim s() As String = {x.CreatedAt.ToString, x.Event.ToUpper, x.Username, x.Target} - Me.EventList.Items.Add(New ListViewItem(s)) - Next - Me.EventList.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent) + If EventSource IsNot Nothing AndAlso EventSource.Count > 0 Then + For Each x As Twitter.FormattedEvent In EventSource + Dim s() As String = {x.CreatedAt.ToString, x.Event.ToUpper, x.Username, x.Target} + Me.EventList.Items.Add(New ListViewItem(s)) + Next + Me.EventList.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent) + End If End Sub End Class Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-09 13:09:23 UTC (rev 1190) +++ trunk/Tween/Tween.vb 2010-12-09 14:22:14 UTC (rev 1191) @@ -1121,44 +1121,44 @@ e.Graphics.DrawString(txt, e.Font, fore, e.Bounds, sfTab) End Sub - Private Function LoadOldConfig() As Boolean - Dim needToSave As Boolean = False - _cfgCommon = SettingCommon.Load() - _cfgLocal = SettingLocal.Load() - If _cfgCommon.TabList.Count > 0 Then - For Each tabName As String In _cfgCommon.TabList - _statuses.Tabs.Add(tabName, SettingTab.Load(tabName).Tab) - If tabName <> ReplaceInvalidFilename(tabName) Then - Dim tb As TabClass = _statuses.Tabs(tabName) - _statuses.RemoveTab(tabName) - tb.TabName = ReplaceInvalidFilename(tabName) - _statuses.Tabs.Add(ReplaceInvalidFilename(tabName), tb) - Dim tabSetting As New SettingTab - tabSetting.Tab = tb - tabSetting.Save() - needToSave = True - End If - Next - Else - _statuses.AddTab(DEFAULTTAB.RECENT, TabUsageType.Home, Nothing) - _statuses.AddTab(DEFAULTTAB.REPLY, TabUsageType.Mentions, Nothing) - _statuses.AddTab(DEFAULTTAB.DM, TabUsageType.DirectMessage, Nothing) - _statuses.AddTab(DEFAULTTAB.FAV, TabUsageType.Favorites, Nothing) - End If - If needToSave Then - _cfgCommon.TabList.Clear() - For Each tabName As String In _statuses.Tabs.Keys - _cfgCommon.TabList.Add(tabName) - Next - _cfgCommon.Save() - End If + 'Private Function LoadOldConfig() As Boolean + ' Dim needToSave As Boolean = False + ' _cfgCommon = SettingCommon.Load() + ' _cfgLocal = SettingLocal.Load() + ' If _cfgCommon.TabList.Count > 0 Then + ' For Each tabName As String In _cfgCommon.TabList + ' _statuses.Tabs.Add(tabName, SettingTab.Load(tabName).Tab) + ' If tabName <> ReplaceInvalidFilename(tabName) Then + ' Dim tb As TabClass = _statuses.Tabs(tabName) + ' _statuses.RemoveTab(tabName) + ' tb.TabName = ReplaceInvalidFilename(tabName) + ' _statuses.Tabs.Add(ReplaceInvalidFilename(tabName), tb) + ' Dim tabSetting As New SettingTab + ' tabSetting.Tab = tb + ' tabSetting.Save() + ' needToSave = True + ' End If + ' Next + ' Else + ' _statuses.AddTab(DEFAULTTAB.RECENT, TabUsageType.Home, Nothing) + ' _statuses.AddTab(DEFAULTTAB.REPLY, TabUsageType.Mentions, Nothing) + ' _statuses.AddTab(DEFAULTTAB.DM, TabUsageType.DirectMessage, Nothing) + ' _statuses.AddTab(DEFAULTTAB.FAV, TabUsageType.Favorites, Nothing) + ' End If + ' If needToSave Then + ' _cfgCommon.TabList.Clear() + ' For Each tabName As String In _statuses.Tabs.Keys + ' _cfgCommon.TabList.Add(tabName) + ' Next + ' _cfgCommon.Save() + ' End If - If System.IO.File.Exists(SettingCommon.GetSettingFilePath("")) Then - Return True - Else - Return False - End If - End Function + ' If System.IO.File.Exists(SettingCommon.GetSettingFilePath("")) Then + ' Return True + ' Else + ' Return False + ' End If + 'End Function Private Sub LoadConfig() Dim needToSave As Boolean = False @@ -1182,7 +1182,7 @@ LoadConfig() Exit Sub End If - LoadOldConfig() + 'LoadOldConfig() End Sub Private Sub TimerTimeline_Elapsed(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TimerTimeline.Elapsed Modified: trunk/Tween/Tween.vbproj =================================================================== --- trunk/Tween/Tween.vbproj 2010-12-09 13:09:23 UTC (rev 1190) +++ trunk/Tween/Tween.vbproj 2010-12-09 14:22:14 UTC (rev 1191) @@ -232,7 +232,6 @@ - From svnnotify @ sourceforge.jp Fri Dec 10 03:27:03 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Fri, 10 Dec 2010 03:27:03 +0900 Subject: [Tween-svn] =?utf-8?b?WzExOTJdICDoqo3oqLzjga5qc29u5YyW?= Message-ID: <1291919223.655829.16288.nullmailer@users.sourceforge.jp> Revision: 1192 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1192 Author: kiri_feather Date: 2010-12-10 03:27:03 +0900 (Fri, 10 Dec 2010) Log Message: ----------- 認証のjson化 投稿、DM投稿のjson化 ユーザー情報取得のjson化 データモデルの発言数Integerへ。UserにもStatus持てるように。 DateTimeParseをMyCommonへ移動 ShowUserInfo関連をjson化 Modified Paths: -------------- trunk/Tween/Connection/HttpTwitter.vb trunk/Tween/DataModel.vb trunk/Tween/MyCommon.vb trunk/Tween/ShowUserInfo.vb trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Connection/HttpTwitter.vb =================================================================== --- trunk/Tween/Connection/HttpTwitter.vb 2010-12-09 14:22:14 UTC (rev 1191) +++ trunk/Tween/Connection/HttpTwitter.vb 2010-12-09 18:27:03 UTC (rev 1192) @@ -117,7 +117,7 @@ Public Function AuthUserAndPass(ByVal username As String, ByVal password As String) As HttpStatusCode If connectionType = AuthMethod.Basic Then - Return httpCon.Authenticate(CreateTwitterUri("/1/account/verify_credentials.xml"), username, password) + Return httpCon.Authenticate(CreateTwitterUri("/1/account/verify_credentials.json"), username, password) Else Return httpCon.Authenticate(New Uri(AccessTokenUrlXAuth), username, password) End If @@ -148,7 +148,7 @@ If replyToId > 0 Then param.Add("in_reply_to_status_id", replyToId.ToString) Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/statuses/update.xml"), _ + CreateTwitterUri("/1/statuses/update.json"), _ param, _ content, _ Nothing, _ @@ -170,7 +170,7 @@ param.Add("screen_name", sendto) Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/direct_messages/new.xml"), _ + CreateTwitterUri("/1/direct_messages/new.json"), _ param, _ content, _ Nothing, _ @@ -199,7 +199,7 @@ Dim param As New Dictionary(Of String, String) param.Add("screen_name", screenName) Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/users/show.xml"), _ + CreateTwitterUri("/1/users/show.json"), _ param, _ content, _ TwitterApiInfo.HttpHeaders, _ Modified: trunk/Tween/DataModel.vb =================================================================== --- trunk/Tween/DataModel.vb 2010-12-09 14:22:14 UTC (rev 1191) +++ trunk/Tween/DataModel.vb 2010-12-09 18:27:03 UTC (rev 1192) @@ -38,7 +38,7 @@ _ Public Class User - Public StatusesCount As Int64 + Public StatusesCount As Integer Public ProfileSidebarFillColor As String Public ShowAllInlineMedia As Boolean Public ProfileUseBackgroundImage As Boolean @@ -72,6 +72,7 @@ Public ProfileBackgroundTile As Boolean Public UtcOffset As String Public Place As Place + Public Status As Status End Class _ Modified: trunk/Tween/MyCommon.vb =================================================================== --- trunk/Tween/MyCommon.vb 2010-12-09 14:22:14 UTC (rev 1191) +++ trunk/Tween/MyCommon.vb 2010-12-09 18:27:03 UTC (rev 1192) @@ -570,4 +570,24 @@ If img IsNot Nothing Then img.Dispose() End Try End Function + + Public Function DateTimeParse(ByVal input As String) As Date + Dim rslt As Date + Dim format() As String = { + "ddd MMM dd HH:mm:ss zzzz yyyy" + } + For Each fmt As String In format + If DateTime.TryParseExact(input, _ + fmt, _ + System.Globalization.DateTimeFormatInfo.InvariantInfo, _ + System.Globalization.DateTimeStyles.None, _ + rslt) Then + Return rslt + Else + Continue For + End If + Next + TraceOut("Parse Error(DateTimeFormat) : " + input) + Return New Date + End Function End Module \ No newline at end of file Modified: trunk/Tween/ShowUserInfo.vb =================================================================== --- trunk/Tween/ShowUserInfo.vb 2010-12-09 14:22:14 UTC (rev 1191) +++ trunk/Tween/ShowUserInfo.vb 2010-12-09 18:27:03 UTC (rev 1192) @@ -29,7 +29,7 @@ Public Class ShowUserInfo - Private userInfoXml As String = "" + Private userInfo As TwitterDataModel.User = Nothing Private _info As New UserInfo Private icondata As Image = Nothing Private atlist As New Generic.List(Of String) @@ -63,57 +63,39 @@ ToolTip1.SetToolTip(LinkLabelFav, Favorites) End Sub - Private Function AnalizeUserInfo(ByVal xmlData As String) As Boolean - If xmlData Is Nothing Then Return False - Dim xdoc As New XmlDocument - Try - xdoc.LoadXml(xmlData) - Dim nd As String = "/user" + Private Function AnalizeUserInfo(ByVal user As TwitterDataModel.User) As Boolean + If user Is Nothing Then Return False - If xdoc.SelectSingleNode(nd) Is Nothing Then - nd = "/status/user" - End If - - _info.Id = Int64.Parse(xdoc.SelectSingleNode(nd + "/id").InnerText) - _info.Name = xdoc.SelectSingleNode(nd + "/name").InnerText - _info.ScreenName = xdoc.SelectSingleNode(nd + "/screen_name").InnerText - _info.Location = xdoc.SelectSingleNode(nd + "/location").InnerText - _info.Description = xdoc.SelectSingleNode(nd + "/description").InnerText - _info.ImageUrl = New Uri(xdoc.SelectSingleNode(nd + "/profile_image_url").InnerText) - - _info.Url = xdoc.SelectSingleNode(nd + "/url").InnerText - - _info.Protect = Boolean.Parse(xdoc.SelectSingleNode(nd + "/protected").InnerText) - _info.FriendsCount = Integer.Parse(xdoc.SelectSingleNode(nd + "/friends_count").InnerText) - _info.FollowersCount = Integer.Parse(xdoc.SelectSingleNode(nd + "/followers_count").InnerText) - _info.FavoriteCount = Integer.Parse(xdoc.SelectSingleNode(nd + "/favourites_count").InnerText) - _info.CreatedAt = DateTime.ParseExact(xdoc.SelectSingleNode(nd + "/created_at").InnerText, "ddd MMM dd HH:mm:ss zzzz yyyy", System.Globalization.DateTimeFormatInfo.InvariantInfo, System.Globalization.DateTimeStyles.None) - _info.StatusesCount = Integer.Parse(xdoc.SelectSingleNode(nd + "/statuses_count").InnerText) - _info.Verified = Boolean.Parse(xdoc.SelectSingleNode(nd + "/verified").InnerText) - - ' 最終発言が取れないことがある + Try + _info.Id = user.Id + _info.Name = user.Name + _info.ScreenName = user.ScreenName + _info.Location = user.Location + _info.Description = user.Description + _info.ImageUrl = New Uri(user.ProfileImageUrl) + _info.Url = user.Url + _info.Protect = user.Protected + _info.FriendsCount = user.FriendsCount + _info.FollowersCount = user.FollowersCount + _info.FavoriteCount = user.FavouritesCount + _info.CreatedAt = DateTimeParse(user.CreatedAt) + _info.StatusesCount = user.StatusesCount + _info.Verified = user.Verified Try - If nd = "/user" Then - _info.RecentPost = xdoc.SelectSingleNode(nd + "/status/text").InnerText - _info.PostCreatedAt = DateTime.ParseExact(xdoc.SelectSingleNode(nd + "/status/created_at").InnerText, "ddd MMM dd HH:mm:ss zzzz yyyy", System.Globalization.DateTimeFormatInfo.InvariantInfo, System.Globalization.DateTimeStyles.None) - _info.PostSource = xdoc.SelectSingleNode(nd + "/status/source").InnerText - Else - _info.RecentPost = xdoc.SelectSingleNode("/status/text").InnerText - _info.PostCreatedAt = DateTime.ParseExact(xdoc.SelectSingleNode("/status/created_at").InnerText, "ddd MMM dd HH:mm:ss zzzz yyyy", System.Globalization.DateTimeFormatInfo.InvariantInfo, System.Globalization.DateTimeStyles.None) - _info.PostSource = xdoc.SelectSingleNode("/status/source").InnerText - End If - If Not _info.PostSource.Contains("") Then - _info.PostSource += "" - End If + _info.RecentPost = user.Status.Text + _info.PostCreatedAt = DateTimeParse(user.Status.CreatedAt) + _info.PostSource = user.Status.Source Catch ex As Exception _info.RecentPost = Nothing _info.PostCreatedAt = Nothing _info.PostSource = Nothing End Try + If Not _info.PostSource.Contains("") Then + _info.PostSource += "" + End If Catch ex As Exception Return False End Try - Return True End Function @@ -141,7 +123,7 @@ Private Sub ShowUserInfo_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load MyOwner = DirectCast(Me.Owner, TweenMain) - If Not AnalizeUserInfo(userInfoXml) Then + If Not AnalizeUserInfo(userInfo) Then MessageBox.Show(My.Resources.ShowUserInfo1) Me.Close() Exit Sub @@ -210,9 +192,9 @@ Me.Close() End Sub - Public WriteOnly Property XmlData() As String - Set(ByVal value As String) - userInfoXml = value + Public WriteOnly Property User() As TwitterDataModel.User + Set(ByVal value As TwitterDataModel.User) + Me.userInfo = value End Set End Property @@ -584,7 +566,7 @@ Private Sub UpdateProfileImage_RunWorkerCompleted(ByVal sender As Object, ByVal e As RunWorkerCompletedEventArgs) Dim res As String = "" - Dim xdocbuf As String = "" + Dim user As TwitterDataModel.User = Nothing If e.Result Is Nothing Then Exit Sub @@ -594,21 +576,15 @@ ' アイコンを取得してみる ' が、古いアイコンのユーザーデータが返ってくるため反映/判断できない - res = MyOwner.TwitterInstance.GetUserInfo(_info.ScreenName, xdocbuf) - - Dim xdoc As New XmlDocument - Dim img As Image Try - xdoc.LoadXml(xdocbuf) - _info.ImageUrl = New Uri(xdoc.SelectSingleNode("/user/profile_image_url").InnerText) - img = (New HttpVarious).GetImage(_info.ImageUrl.ToString) + res = MyOwner.TwitterInstance.GetUserInfo(_info.ScreenName, user) + Dim img As Image = (New HttpVarious).GetImage(user.ProfileImageUrl) If img IsNot Nothing Then UserPicture.Image = img End If Catch ex As Exception End Try - End Sub Private Sub doChangeIcon(ByVal filename As String) Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-09 14:22:14 UTC (rev 1191) +++ trunk/Tween/Tween.vb 2010-12-09 18:27:03 UTC (rev 1192) @@ -8792,12 +8792,13 @@ End Sub Private Sub OwnStatusMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OwnStatusMenuItem.Click - If Not String.IsNullOrEmpty(tw.UserInfoXml) Then - doShowUserStatus(tw.UserInfoXml) - Else - MessageBox.Show(My.Resources.ShowYourProfileText1, "Your status", MessageBoxButtons.OK, MessageBoxIcon.Information) - Exit Sub - End If + doShowUserStatus(tw.Username, False) + 'If Not String.IsNullOrEmpty(tw.UserInfoXml) Then + ' doShowUserStatus(tw.Username, False) + 'Else + ' MessageBox.Show(My.Resources.ShowYourProfileText1, "Your status", MessageBoxButtons.OK, MessageBoxIcon.Information) + ' Exit Sub + 'End If End Sub ' TwitterIDでない固定文字列を調べる(文字列検証のみ 実際に取得はしない) @@ -9308,17 +9309,17 @@ Private Class GetUserInfoArgs Public tw As Tween.Twitter Public id As String - Public xmlbuf As String + Public user As TwitterDataModel.User End Class Private Sub GetUserInfo_DoWork(ByVal sender As Object, ByVal e As DoWorkEventArgs) Dim args As GetUserInfoArgs = DirectCast(e.Argument, GetUserInfoArgs) - e.Result = args.tw.GetUserInfo(args.id, args.xmlbuf) + e.Result = args.tw.GetUserInfo(args.id, args.user) End Sub Private Overloads Sub doShowUserStatus(ByVal id As String, ByVal ShowInputDialog As Boolean) Dim result As String = "" - Dim xmlbuf As String = "" + Dim user As TwitterDataModel.User = Nothing Dim args As New GetUserInfoArgs If ShowInputDialog Then Using inputName As New InputTabName() @@ -9330,7 +9331,7 @@ id = inputName.TabName.Trim args.tw = tw args.id = id - args.xmlbuf = xmlbuf + args.user = user Using _info As New FormInfo(Me, My.Resources.doShowUserStatusText1, _ AddressOf GetUserInfo_DoWork, _ Nothing, _ @@ -9338,7 +9339,7 @@ _info.ShowDialog() Dim ret As String = DirectCast(_info.Result, String) If String.IsNullOrEmpty(ret) Then - doShowUserStatus(args.xmlbuf) + doShowUserStatus(args.user) Else MessageBox.Show(ret) End If @@ -9348,7 +9349,7 @@ Else args.tw = tw args.id = id - args.xmlbuf = xmlbuf + args.user = user Using _info As New FormInfo(Me, My.Resources.doShowUserStatusText1, _ AddressOf GetUserInfo_DoWork, _ Nothing, _ @@ -9356,7 +9357,7 @@ _info.ShowDialog() Dim ret As String = DirectCast(_info.Result, String) If String.IsNullOrEmpty(ret) Then - doShowUserStatus(args.xmlbuf) + doShowUserStatus(args.user) Else MessageBox.Show(ret) End If @@ -9364,9 +9365,9 @@ End If End Sub - Private Overloads Sub doShowUserStatus(ByVal xmldata As String) + Private Overloads Sub doShowUserStatus(ByVal user As TwitterDataModel.User) Using userinfo As New ShowUserInfo() - userinfo.XmlData = xmldata + userinfo.User = user userinfo.ShowDialog(Me) End Using End Sub Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-09 14:22:14 UTC (rev 1191) +++ trunk/Tween/Twitter.vb 2010-12-09 18:27:03 UTC (rev 1192) @@ -51,7 +51,6 @@ Private _statusesCount As Integer = 0 Private _location As String = "" Private _bio As String = "" - Private _userinfoxml As String = "" Private _protocol As String = "https://" 'プロパティからアクセスされる共通情報 @@ -101,17 +100,19 @@ Return "" Case HttpStatusCode.Unauthorized Twitter.AccountState = ACCOUNT_STATE.Invalid - Return "Check your Username/Password." + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Check your Username/Password." + Else + Return "Auth error:" + errMsg + End If Case HttpStatusCode.Forbidden - Dim xd As XmlDocument = New XmlDocument - Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/hash/error") - Return "Err:" + xNode.InnerText - Catch ex As Exception + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then Return "Err:Forbidden" - End Try + Else + Return "Err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -125,6 +126,25 @@ _UserIdNo = "" End Sub + Private Function GetErrorMessageJson(ByVal content As String) As String + Try + If Not String.IsNullOrEmpty(content) Then + Using jsonReader As XmlDictionaryReader = JsonReaderWriterFactory.CreateJsonReader(Encoding.UTF8.GetBytes(content), XmlDictionaryReaderQuotas.Max) + Dim xElm As XElement = XElement.Load(jsonReader) + If xElm.Element("error") IsNot Nothing Then + Return xElm.Element("error").Value + Else + Return "" + End If + End Using + Else + Return "" + End If + Catch ex As Exception + Return "" + End Try + End Function + Public Sub Initialize(ByVal token As String, ByVal tokenSecret As String, ByVal username As String) 'xAuth認証 If String.IsNullOrEmpty(token) OrElse String.IsNullOrEmpty(tokenSecret) OrElse String.IsNullOrEmpty(username) Then @@ -308,35 +328,27 @@ End Function End Structure - Private Function IsPostRestricted(ByRef resMsg As String) As Boolean + Private Function IsPostRestricted(ByVal status As TwitterDataModel.Status) As Boolean Static _prev As New PostInfo("", "", "", "") Dim _current As New PostInfo("", "", "", "") + _current.CreatedAt = status.CreatedAt + _current.Id = status.IdStr + If status.Text Is Nothing Then + _current.Text = "" + Else + _current.Text = status.Text + End If + _current.UserId = status.User.IdStr - Dim xd As XmlDocument = New XmlDocument() - Try - xd.LoadXml(resMsg) - _current.CreatedAt = xd.SelectSingleNode("/status/created_at/text()").Value - _current.Id = xd.SelectSingleNode("/status/id/text()").Value - If xd.SelectSingleNode("/status/text/text()") Is Nothing Then - '制御文字のみ投稿した場合はNothing - _current.Text = "" - Else - _current.Text = xd.SelectSingleNode("/status/text/text()").Value - End If - _current.UserId = xd.SelectSingleNode("/status/user/id/text()").Value + If _current.Equals(_prev) Then + Return True + End If + _prev.CreatedAt = _current.CreatedAt + _prev.Id = _current.Id + _prev.Text = _current.Text + _prev.UserId = _current.UserId - If _current.Equals(_prev) Then - Return True - End If - _prev.CreatedAt = _current.CreatedAt - _prev.Id = _current.Id - _prev.Text = _current.Text - _prev.UserId = _current.UserId - Catch ex As XmlException - Return False - End Try - Return False End Function @@ -363,32 +375,24 @@ Select Case res Case HttpStatusCode.OK Twitter.AccountState = ACCOUNT_STATE.Valid - Dim xd As XmlDocument = New XmlDocument() + Dim status As TwitterDataModel.Status Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/status/user/followers_count/text()") - If xNode IsNot Nothing Then _followersCount = Integer.Parse(xNode.Value) - xNode = xd.SelectSingleNode("/status/user/friends_count/text()") - If xNode IsNot Nothing Then _friendsCount = Integer.Parse(xNode.Value) - xNode = xd.SelectSingleNode("/status/user/statuses_count/text()") - If xNode IsNot Nothing Then _statusesCount = Integer.Parse(xNode.Value) - xNode = xd.SelectSingleNode("/status/user/location/text()") - If xNode IsNot Nothing Then _location = xNode.Value - xNode = xd.SelectSingleNode("/status/user/description/text()") - If xNode IsNot Nothing Then _bio = xNode.Value - xNode = xd.SelectSingleNode("/status/user/id/text()") - If xNode IsNot Nothing Then _UserIdNo = xNode.Value - - _userinfoxml = String.Copy(content) + status = CreateDataFromJson(Of TwitterDataModel.Status)(content) + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" Catch ex As Exception - _userinfoxml = "" - Return "" + TraceOut(content) + Return "Err:Invalid Json!" End Try + _followersCount = status.User.FollowersCount + _friendsCount = status.User.FriendsCount + _statusesCount = status.User.StatusesCount + _location = status.User.Location + _bio = status.User.Description + _UserIdNo = status.User.IdStr - If Not postStr.StartsWith("D ", StringComparison.OrdinalIgnoreCase) AndAlso _ - Not postStr.StartsWith("DM ", StringComparison.OrdinalIgnoreCase) AndAlso _ - IsPostRestricted(content) Then + If IsPostRestricted(status) Then Return "OK:Delaying?" End If If op.Post(postStr.Length) Then @@ -397,15 +401,12 @@ Return "Outputz:Failed" End If Case HttpStatusCode.Forbidden, HttpStatusCode.BadRequest - Dim xd As XmlDocument = New XmlDocument - Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/hash/error") - Return "Warn:" + xNode.InnerText - Catch ex As Exception - End Try - Return "Warn:" + res.ToString + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Warn:" + res.ToString + Else + Return "Warn:" + errMsg + End If Case HttpStatusCode.Conflict, _ HttpStatusCode.ExpectationFailed, _ HttpStatusCode.Gone, _ @@ -423,7 +424,12 @@ Return "Warn:" + res.ToString + "(" + GetCurrentMethod.Name + ")" Case HttpStatusCode.Unauthorized Twitter.AccountState = ACCOUNT_STATE.Invalid - Return "Check your Username/Password." + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Check your Username/Password." + Else + Return "Auth err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -451,25 +457,22 @@ Select Case res Case HttpStatusCode.OK Twitter.AccountState = ACCOUNT_STATE.Valid - Dim xd As XmlDocument = New XmlDocument() + Dim status As TwitterDataModel.Status Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/status/user/followers_count/text()") - If xNode IsNot Nothing Then _followersCount = Integer.Parse(xNode.Value) - xNode = xd.SelectSingleNode("/status/user/friends_count/text()") - If xNode IsNot Nothing Then _friendsCount = Integer.Parse(xNode.Value) - xNode = xd.SelectSingleNode("/status/user/statuses_count/text()") - If xNode IsNot Nothing Then _statusesCount = Integer.Parse(xNode.Value) - xNode = xd.SelectSingleNode("/status/user/location/text()") - If xNode IsNot Nothing Then _location = xNode.Value - xNode = xd.SelectSingleNode("/status/user/description/text()") - If xNode IsNot Nothing Then _bio = xNode.Value - xNode = xd.SelectSingleNode("/status/user/id/text()") - If xNode IsNot Nothing Then _UserIdNo = xNode.Value + status = CreateDataFromJson(Of TwitterDataModel.Status)(content) + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" Catch ex As Exception - Return "" + TraceOut(content) + Return "Err:Invalid Json!" End Try + _followersCount = status.User.FollowersCount + _friendsCount = status.User.FriendsCount + _statusesCount = status.User.StatusesCount + _location = status.User.Location + _bio = status.User.Description + _UserIdNo = status.User.IdStr If op.Post(postStr.Length) Then Return "" @@ -477,15 +480,12 @@ Return "Outputz:Failed" End If Case HttpStatusCode.Forbidden, HttpStatusCode.BadRequest - Dim xd As XmlDocument = New XmlDocument - Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/hash/error") - Return "Warn:" + xNode.InnerText - Catch ex As Exception - End Try - Return "Warn:" + res.ToString + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Warn:" + res.ToString + Else + Return "Warn:" + errMsg + End If Case HttpStatusCode.Conflict, _ HttpStatusCode.ExpectationFailed, _ HttpStatusCode.Gone, _ @@ -503,7 +503,12 @@ Return "Warn:" + res.ToString Case HttpStatusCode.Unauthorized Twitter.AccountState = ACCOUNT_STATE.Invalid - Return "Check your Username/Password." + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Check your Username/Password." + Else + Return "Auth err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -910,7 +915,7 @@ End Select End Function - Public Function GetUserInfo(ByVal screenName As String, ByRef xmlBuf As String) As String + Public Function GetUserInfo(ByVal screenName As String, ByRef user As TwitterDataModel.User) As String If _endingFlag Then Return "" @@ -918,7 +923,7 @@ Dim res As HttpStatusCode Dim content As String = "" - xmlBuf = Nothing + user = Nothing Try res = twCon.ShowUserInfo(screenName, content) Catch ex As Exception @@ -927,22 +932,27 @@ Select Case res Case HttpStatusCode.OK - Dim xdoc As New XmlDocument - Dim result As String = "" Twitter.AccountState = ACCOUNT_STATE.Valid Try - xdoc.LoadXml(content) - xmlBuf = content + user = CreateDataFromJson(Of TwitterDataModel.User)(content) + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" Catch ex As Exception - result = "Err:Invalid XML." - xmlBuf = Nothing + TraceOut(content) + Return "Err:Invalid Json!" End Try - Return result + Return "" Case HttpStatusCode.BadRequest Return "Err:API Limits?" Case HttpStatusCode.Unauthorized Twitter.AccountState = ACCOUNT_STATE.Invalid - Return "Check your Username/Password." + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Check your Username/Password." + Else + Return "Auth err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -1328,12 +1338,6 @@ End Get End Property - Public ReadOnly Property UserInfoXml As String - Get - Return _userinfoxml - End Get - End Property - Public WriteOnly Property UseSsl() As Boolean Set(ByVal value As Boolean) HttpTwitter.UseSsl = value @@ -1461,26 +1465,6 @@ Return "" End Function - Private Function DateTimeParse(ByVal input As String) As Date - Dim rslt As Date - Dim format() As String = { - "ddd MMM dd HH:mm:ss zzzz yyyy" - } - For Each fmt As String In format - If DateTime.TryParseExact(input, _ - fmt, _ - System.Globalization.DateTimeFormatInfo.InvariantInfo, _ - System.Globalization.DateTimeStyles.None, _ - rslt) Then - Return rslt - Else - Continue For - End If - Next - TraceOut("Parse Error(DateTimeFormat) : " + input) - Return New Date - End Function - Private Function CreatePostsFromStatusData(ByVal status As TwitterDataModel.Status) As PostClass Dim post As New PostClass @@ -2894,7 +2878,7 @@ End Try Dim evt As New FormattedEvent - evt.CreatedAt = Me.DateTimeParse(eventData.CreatedAt) + evt.CreatedAt = DateTimeParse(eventData.CreatedAt) evt.Event = eventData.Event evt.Username = eventData.Source.ScreenName Select Case eventData.Event From svnnotify @ sourceforge.jp Fri Dec 10 10:40:57 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Fri, 10 Dec 2010 10:40:57 +0900 Subject: [Tween-svn] =?utf-8?b?WzExOTNdICBERUxFVEXjgqTjg5njg7Pjg4jjgpI=?= =?utf-8?b?44Kk44OZ44Oz44OI44OT44Ol44O844Ki44Gr6LyJ44Gb44KL44KI44GG44Gr?= =?utf-8?b?77yI5ZWP6aGM54K577yaRE3jga5ERUxFVEXjgqTjg5njg7Pjg4jjgYxUd2Vl?= =?utf-8?b?buOBp+OBruWJiumZpOWujOS6huW+jOOBq+adpeOCi+OBn+OCgeOBneOBrg==?= =?utf-8?b?5pmC54K544Gn44Gv44Kk44OZ44Oz44OI44K944O844K544GM44KP44GL44KJ?= =?utf-8?b?44Gq44GE44CB44G+44Gf6Ieq5YiG44GC44Gm44Gr5Ye644GV44KM44GfRE0=?= =?utf-8?b?44KS5YmK6Zmk44GX44Gf5aC05ZCI44GvREVMRVRF44Kk44OZ44Oz44OI6Ieq?= =?utf-8?b?5L2T44GM55m655Sf44GX44Gq44GE77yJ?= Message-ID: <1291945257.662608.25233.nullmailer@users.sourceforge.jp> Revision: 1193 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1193 Author: syo68k Date: 2010-12-10 10:40:57 +0900 (Fri, 10 Dec 2010) Log Message: ----------- DELETEイベントをイベントビューアに載せるように(問題点:DMのDELETEイベントがTweenでの削除完了後に来るためその時点ではイベントソースがわからない、また自分あてに出されたDMを削除した場合はDELETEイベント自体が発生しない) Modified Paths: -------------- trunk/Tween/StatusDictionary.vb trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/StatusDictionary.vb =================================================================== --- trunk/Tween/StatusDictionary.vb 2010-12-09 18:27:03 UTC (rev 1192) +++ trunk/Tween/StatusDictionary.vb 2010-12-10 01:40:57 UTC (rev 1193) @@ -609,8 +609,18 @@ End SyncLock End Sub - Public Sub RemovePostReserve(ByVal id As Long) + Public Sub RemovePostReserve(ByVal id As Long, ByRef post As PostClass) SyncLock LockObj + post = Nothing + If _statuses.ContainsKey(id) Then + post = _statuses(id).Copy + Else + 'DM + Dim tb As TabClass = Me.GetTabByType(TabUsageType.DirectMessage) + If tb.Contains(id) Then + post = tb.Posts(id).Copy + End If + End If Me._deletedIds.Add(id) End SyncLock End Sub Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-09 18:27:03 UTC (rev 1192) +++ trunk/Tween/Tween.vb 2010-12-10 01:40:57 UTC (rev 1193) @@ -9836,8 +9836,8 @@ MessageBox.Show(buf.ToString, "アイコンキャッシュ使用状況") End Sub - Private Sub tw_PostDeleted(ByVal id As Long) - _statuses.RemovePostReserve(id) + Private Sub tw_PostDeleted(ByVal id As Long, ByRef post As PostClass) + _statuses.RemovePostReserve(id, post) End Sub Private Sub tw_NewPostFromStream() Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-09 18:27:03 UTC (rev 1192) +++ trunk/Tween/Twitter.vb 2010-12-10 01:40:57 UTC (rev 1193) @@ -2792,7 +2792,7 @@ Public Event UserStreamStarted() Public Event UserStreamStopped() Public Event UserStreamGetFriendsList() - Public Event PostDeleted(ByVal id As Long) + Public Event PostDeleted(ByVal id As Long, ByRef post As PostClass) Public Event UserStreamEventReceived(ByVal eventType As String) Private WithEvents userStream As TwitterUserstream @@ -2833,11 +2833,13 @@ Exit Sub ElseIf xElm.Element("delete") IsNot Nothing Then Debug.Print("delete") + Dim post As PostClass = Nothing If xElm.Element("delete").Element("direct_message") IsNot Nothing Then - RaiseEvent PostDeleted(CLng(xElm.Element("delete").Element("direct_message").Element("id").Value)) + RaiseEvent PostDeleted(CLng(xElm.Element("delete").Element("direct_message").Element("id").Value), post) Else - RaiseEvent PostDeleted(CLng(xElm.Element("delete").Element("status").Element("id").Value)) + RaiseEvent PostDeleted(CLng(xElm.Element("delete").Element("status").Element("id").Value), post) End If + CreateDeleteEvent(DateTime.Now, post) Exit Sub ElseIf xElm.Element("limit") IsNot Nothing Then Debug.Print(line) @@ -2867,6 +2869,26 @@ RaiseEvent NewPostFromStream() End Sub + Private Sub CreateDeleteEvent(ByVal createdat As DateTime, ByVal post As PostClass) + Dim evt As New FormattedEvent + evt.CreatedAt = createdat + If post Is Nothing Then + evt.Event = "DELETE(UNKNOWN)" + evt.Username = "--UNKNOWN--" + evt.Target = "--UNKNOWN--" + Else + If post.IsDm Then + evt.Event = "DELETE(DM)" + Else + evt.Event = "DELETE(Post)" + End If + evt.Username = post.Name + evt.Target = post.Data + End If + Me.StoredEvent.Insert(0, evt) + RaiseEvent UserStreamEventReceived(evt.Event) + End Sub + Private Sub CreateEventFromJson(ByVal content As String) Dim eventData As TwitterDataModel.EventData = Nothing Try From svnnotify @ sourceforge.jp Fri Dec 10 14:59:22 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Fri, 10 Dec 2010 14:59:22 +0900 Subject: [Tween-svn] =?utf-8?q?=5B1194=5D__RemovePostReserve=E3=81=AE?= =?utf-8?b?5Yem55CG57Ch55Wl5YyW?= Message-ID: <1291960762.387507.15220.nullmailer@users.sourceforge.jp> Revision: 1194 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1194 Author: kiri_feather Date: 2010-12-10 14:59:22 +0900 (Fri, 10 Dec 2010) Log Message: ----------- RemovePostReserveの処理簡略化 Modified Paths: -------------- trunk/Tween/StatusDictionary.vb -------------- next part -------------- Modified: trunk/Tween/StatusDictionary.vb =================================================================== --- trunk/Tween/StatusDictionary.vb 2010-12-10 01:40:57 UTC (rev 1193) +++ trunk/Tween/StatusDictionary.vb 2010-12-10 05:59:22 UTC (rev 1194) @@ -612,15 +612,8 @@ Public Sub RemovePostReserve(ByVal id As Long, ByRef post As PostClass) SyncLock LockObj post = Nothing - If _statuses.ContainsKey(id) Then - post = _statuses(id).Copy - Else - 'DM - Dim tb As TabClass = Me.GetTabByType(TabUsageType.DirectMessage) - If tb.Contains(id) Then - post = tb.Posts(id).Copy - End If - End If + Dim tmp As PostClass = Me.Item(id) + If tmp IsNot Nothing Then post = tmp.Copy Me._deletedIds.Add(id) End SyncLock End Sub From svnnotify @ sourceforge.jp Fri Dec 10 17:40:40 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Fri, 10 Dec 2010 17:40:40 +0900 Subject: [Tween-svn] =?utf-8?b?WzExOTVdICDoqo3oqLzjgqjjg6njg7zjgavjgao=?= =?utf-8?b?44Gj44Gf44KJ44CB44K144O844OQ44O85pmC5Yi744Go54++5Zyo5pmC5Yi7?= =?utf-8?b?44KS44Oh44OD44K744O844K444Go44GX44Gm5oi744GZ44KI44GG44Gr44CC?= Message-ID: <1291970440.242375.23618.nullmailer@users.sourceforge.jp> Revision: 1195 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1195 Author: kiri_feather Date: 2010-12-10 17:40:40 +0900 (Fri, 10 Dec 2010) Log Message: ----------- 認証エラーになったら、サーバー時刻と現在時刻をメッセージとして戻すように。 発言投稿時に認証エラーだと、リトライでエラーがクリアされてしまうバグ修正。 Modified Paths: -------------- trunk/Tween/Connection/HttpConnectionBasic.vb trunk/Tween/Connection/HttpConnectionOAuth.vb trunk/Tween/Connection/HttpTwitter.vb trunk/Tween/Connection/IHttpConnection.vb trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Connection/HttpConnectionBasic.vb =================================================================== --- trunk/Tween/Connection/HttpConnectionBasic.vb 2010-12-10 05:59:22 UTC (rev 1194) +++ trunk/Tween/Connection/HttpConnectionBasic.vb 2010-12-10 08:40:40 UTC (rev 1195) @@ -193,7 +193,7 @@ '''認証先のURL '''認証で使用するユーザー名 '''認証で使用するパスワード - Public Function Authenticate(ByVal url As Uri, ByVal username As String, ByVal password As String) As HttpStatusCode Implements IHttpConnection.Authenticate + Public Function Authenticate(ByVal url As Uri, ByVal username As String, ByVal password As String, ByRef content As String) As HttpStatusCode Implements IHttpConnection.Authenticate 'urlは認証必要なGETメソッドとする Dim orgCre As String = Me.credential Me.credential = "Basic " + Convert.ToBase64String(Encoding.ASCII.GetBytes(username + ":" + password)) Modified: trunk/Tween/Connection/HttpConnectionOAuth.vb =================================================================== --- trunk/Tween/Connection/HttpConnectionOAuth.vb 2010-12-10 05:59:22 UTC (rev 1194) +++ trunk/Tween/Connection/HttpConnectionOAuth.vb 2010-12-10 08:40:40 UTC (rev 1195) @@ -245,7 +245,7 @@ '''認証用ユーザー名 '''認証用パスワード '''取得結果真偽値 - Public Function AuthenticateXAuth(ByVal accessTokenUrl As Uri, ByVal username As String, ByVal password As String) As HttpStatusCode Implements IHttpConnection.Authenticate + Public Function AuthenticateXAuth(ByVal accessTokenUrl As Uri, ByVal username As String, ByVal password As String, ByRef content As String) As HttpStatusCode Implements IHttpConnection.Authenticate 'ユーザー・パスワードチェック If String.IsNullOrEmpty(username) OrElse String.IsNullOrEmpty(password) Then Throw New Exception("Sequence error.(username or password is blank)") @@ -257,7 +257,6 @@ parameter.Add("x_auth_password", password) 'アクセストークン取得 - Dim content As String = "" Dim httpCode As HttpStatusCode = GetOAuthToken(accessTokenUrl, "", "", parameter, content) If httpCode <> HttpStatusCode.OK Then Return httpCode Dim accessTokenData As NameValueCollection = ParseQueryString(content) @@ -335,7 +334,11 @@ 'OAuth関連情報をHTTPリクエストに追加 AppendOAuthInfo(webReq, query, requestToken, "") 'HTTP応答取得 - Return GetResponse(webReq, content, Nothing, False) + Dim header As New Dictionary(Of String, String) From {{"Date", ""}} + Dim responceCode As HttpStatusCode = GetResponse(webReq, content, header, False) + If responceCode = HttpStatusCode.OK Then Return responceCode + If Not String.IsNullOrEmpty(header("Date")) Then content += Environment.NewLine + "Check the Date & Time of this computer." + Environment.NewLine + "Server:" + CDate(header("Date")).ToString + " PC:" + Now.ToString + Return responceCode End Function #End Region Modified: trunk/Tween/Connection/HttpTwitter.vb =================================================================== --- trunk/Tween/Connection/HttpTwitter.vb 2010-12-10 05:59:22 UTC (rev 1194) +++ trunk/Tween/Connection/HttpTwitter.vb 2010-12-10 08:40:40 UTC (rev 1195) @@ -115,11 +115,11 @@ End Get End Property - Public Function AuthUserAndPass(ByVal username As String, ByVal password As String) As HttpStatusCode + Public Function AuthUserAndPass(ByVal username As String, ByVal password As String, ByRef content As String) As HttpStatusCode If connectionType = AuthMethod.Basic Then - Return httpCon.Authenticate(CreateTwitterUri("/1/account/verify_credentials.json"), username, password) + Return httpCon.Authenticate(CreateTwitterUri("/1/account/verify_credentials.json"), username, password, content) Else - Return httpCon.Authenticate(New Uri(AccessTokenUrlXAuth), username, password) + Return httpCon.Authenticate(New Uri(AccessTokenUrlXAuth), username, password, content) End If End Function Modified: trunk/Tween/Connection/IHttpConnection.vb =================================================================== --- trunk/Tween/Connection/IHttpConnection.vb 2010-12-10 05:59:22 UTC (rev 1194) +++ trunk/Tween/Connection/IHttpConnection.vb 2010-12-10 08:40:40 UTC (rev 1195) @@ -25,7 +25,7 @@ Sub RequestAbort() - Function Authenticate(ByVal url As Uri, ByVal username As String, ByVal password As String) As HttpStatusCode + Function Authenticate(ByVal url As Uri, ByVal username As String, ByVal password As String, ByRef content As String) As HttpStatusCode ReadOnly Property AuthUsername() As String ''' Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-10 05:59:22 UTC (rev 1194) +++ trunk/Tween/Tween.vb 2010-12-10 08:40:40 UTC (rev 1195) @@ -1996,7 +1996,8 @@ ret.StartsWith("Warn:") OrElse _ ret = "Err:Status is a duplicate." OrElse _ args.status.status.StartsWith("D", StringComparison.OrdinalIgnoreCase) OrElse _ - args.status.status.StartsWith("DM", StringComparison.OrdinalIgnoreCase) Then + args.status.status.StartsWith("DM", StringComparison.OrdinalIgnoreCase) OrElse _ + Twitter.AccountState <> ACCOUNT_STATE.Valid Then Exit For End If Next Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-10 05:59:22 UTC (rev 1194) +++ trunk/Tween/Twitter.vb 2010-12-10 08:40:40 UTC (rev 1195) @@ -87,7 +87,7 @@ TwitterApiInfo.Initialize() Try - res = twCon.AuthUserAndPass(username, password) + res = twCon.AuthUserAndPass(username, password, content) Catch ex As Exception Return "Err:" + ex.Message End Try @@ -102,7 +102,7 @@ Twitter.AccountState = ACCOUNT_STATE.Invalid Dim errMsg As String = GetErrorMessageJson(content) If String.IsNullOrEmpty(errMsg) Then - Return "Check your Username/Password." + Return "Check your Username/Password." + Environment.NewLine + content Else Return "Auth error:" + errMsg End If From svnnotify @ sourceforge.jp Fri Dec 10 18:15:55 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Fri, 10 Dec 2010 18:15:55 +0900 Subject: [Tween-svn] =?utf-8?b?WzExOTZdICBVc2VyU3RyZWFt44Gu5pu05paw6ZaT?= =?utf-8?b?6ZqU44Gu6Kit5a6a44GnVGltZWxpbmXmm7TmlrDplpPpmpTjgpLlj4Lnhac=?= =?utf-8?b?44GX44Gm44GE44Gf44Gu44KS5L+u5q2j?= Message-ID: <1291972555.968781.12368.nullmailer@users.sourceforge.jp> Revision: 1196 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1196 Author: f_swallow Date: 2010-12-10 18:15:55 +0900 (Fri, 10 Dec 2010) Log Message: ----------- UserStreamの更新間隔の設定でTimeline更新間隔を参照していたのを修正 Modified Paths: -------------- trunk/Tween/Setting.vb -------------- next part -------------- Modified: trunk/Tween/Setting.vb =================================================================== --- trunk/Tween/Setting.vb 2010-12-10 08:40:40 UTC (rev 1195) +++ trunk/Tween/Setting.vb 2010-12-10 09:15:55 UTC (rev 1196) @@ -604,7 +604,7 @@ Private Sub UserstreamPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles UserstreamPeriod.Validating Dim prd As Integer Try - prd = CType(TimelinePeriod.Text, Integer) + prd = CType(UserstreamPeriod.Text, Integer) Catch ex As Exception MessageBox.Show(My.Resources.UserstreamPeriod_ValidatingText1) e.Cancel = True From svnnotify @ sourceforge.jp Sat Dec 11 02:13:54 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 11 Dec 2010 02:13:54 +0900 Subject: [Tween-svn] =?utf-8?q?=5B1197=5D__ContextMenuUserPicture=E3=81=AE?= =?utf-8?b?44Ki44Kk44Kz44Oz44OV44Kh44Kk44Or5ZCN6KGo56S644Gn5ouh5by15a2Q?= =?utf-8?b?44KC6KGo56S644GZ44KL44KI44GG44Gr?= Message-ID: <1292001234.747935.1639.nullmailer@users.sourceforge.jp> Revision: 1197 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1197 Author: syo68k Date: 2010-12-11 02:13:54 +0900 (Sat, 11 Dec 2010) Log Message: ----------- ContextMenuUserPictureのアイコンファイル名表示で拡張子も表示するように Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-10 09:15:55 UTC (rev 1196) +++ trunk/Tween/Tween.vb 2010-12-10 17:13:54 UTC (rev 1197) @@ -7552,9 +7552,9 @@ If name IsNot Nothing AndAlso name.Length > 0 Then Dim idx As Integer = name.LastIndexOf("/"c) If idx <> -1 Then - name = IO.Path.GetFileNameWithoutExtension(name.Substring(idx)) - If name.EndsWith("_normal", StringComparison.OrdinalIgnoreCase) Then - name = name.Substring(0, name.Length - 7) ' "_normal".Length + name = IO.Path.GetFileName(name.Substring(idx)) + If name.Contains("_normal.") Then + name = name.Replace("_normal", "") Me.IconNameToolStripMenuItem.Text = name Me.IconNameToolStripMenuItem.Enabled = True Else From svnnotify @ sourceforge.jp Sat Dec 11 02:21:17 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 11 Dec 2010 02:21:17 +0900 Subject: [Tween-svn] =?utf-8?b?WzExOThdICDjgqTjg5njg7Pjg4jjg5Pjg6Xjg7w=?= =?utf-8?b?44Ki44KS44Oq44K144Kk44K65Y+v6IO944Gr?= Message-ID: <1292001677.270940.12469.nullmailer@users.sourceforge.jp> Revision: 1198 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1198 Author: syo68k Date: 2010-12-11 02:21:17 +0900 (Sat, 11 Dec 2010) Log Message: ----------- イベントビューアをリサイズ可能に Modified Paths: -------------- trunk/Tween/EventViewerDialog.Designer.vb -------------- next part -------------- Modified: trunk/Tween/EventViewerDialog.Designer.vb =================================================================== --- trunk/Tween/EventViewerDialog.Designer.vb 2010-12-10 17:13:54 UTC (rev 1197) +++ trunk/Tween/EventViewerDialog.Designer.vb 2010-12-10 17:21:17 UTC (rev 1198) @@ -70,6 +70,9 @@ ' 'EventList ' + Me.EventList.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.EventList.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.ColumnHeader1, Me.ColumnHeader2, Me.ColumnHeader3, Me.ColumnHeader4}) Me.EventList.FullRowSelect = True Me.EventList.Location = New System.Drawing.Point(12, 12) @@ -108,7 +111,8 @@ Me.ClientSize = New System.Drawing.Size(689, 291) Me.Controls.Add(Me.EventList) Me.Controls.Add(Me.TableLayoutPanel1) - Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog + Me.DoubleBuffered = True + Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "EventViewerDialog" From svnnotify @ sourceforge.jp Sat Dec 11 02:24:00 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 11 Dec 2010 02:24:00 +0900 Subject: [Tween-svn] =?utf-8?b?WzExOTldICDjgr/jgqTjg57jg7zlkajjgorjga4=?= =?utf-8?b?44OH44OQ44OD44Kw55So44Kz44O844OJ6Zmk5Y67?= Message-ID: <1292001840.227281.15156.nullmailer@users.sourceforge.jp> Revision: 1199 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1199 Author: syo68k Date: 2010-12-11 02:24:00 +0900 (Sat, 11 Dec 2010) Log Message: ----------- タイマー周りのデバッグ用コード除去 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-10 17:21:17 UTC (rev 1198) +++ trunk/Tween/Tween.vb 2010-12-10 17:24:00 UTC (rev 1199) @@ -1186,9 +1186,6 @@ End Sub Private Sub TimerTimeline_Elapsed(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TimerTimeline.Elapsed -#If DEBUG Then - Dim sw As Stopwatch = Stopwatch.StartNew() -#End If Static homeCounter As Integer = 0 Static mentionCounter As Integer = 0 Static dmCounter As Integer = 0 @@ -1234,11 +1231,6 @@ RefreshTimeline(True) End If -#If DEBUG Then - sw.Stop() - Console.WriteLine("Counter: Home {0} Reply {1} Dm {2} Search {3} Lists {4}", homeCounter, mentionCounter, dmCounter, pubSearchCounter, listsCounter) - Console.WriteLine(sw.Elapsed) -#End If End Sub Private Sub RefreshTimeline(ByVal isUserStream As Boolean) From svnnotify @ sourceforge.jp Sat Dec 11 02:42:25 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 11 Dec 2010 02:42:25 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMDBdICDlpInmlbDlkI3kv67mraM=?= Message-ID: <1292002945.230864.7691.nullmailer@users.sourceforge.jp> Revision: 1200 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1200 Author: syo68k Date: 2010-12-11 02:42:25 +0900 (Sat, 11 Dec 2010) Log Message: ----------- 変数名修正 Modified Paths: -------------- trunk/Tween/Connection/HttpConnectionOAuth.vb -------------- next part -------------- Modified: trunk/Tween/Connection/HttpConnectionOAuth.vb =================================================================== --- trunk/Tween/Connection/HttpConnectionOAuth.vb 2010-12-10 17:24:00 UTC (rev 1199) +++ trunk/Tween/Connection/HttpConnectionOAuth.vb 2010-12-10 17:42:25 UTC (rev 1200) @@ -335,10 +335,10 @@ AppendOAuthInfo(webReq, query, requestToken, "") 'HTTP応答取得 Dim header As New Dictionary(Of String, String) From {{"Date", ""}} - Dim responceCode As HttpStatusCode = GetResponse(webReq, content, header, False) - If responceCode = HttpStatusCode.OK Then Return responceCode + Dim responseCode As HttpStatusCode = GetResponse(webReq, content, header, False) + If responseCode = HttpStatusCode.OK Then Return responseCode If Not String.IsNullOrEmpty(header("Date")) Then content += Environment.NewLine + "Check the Date & Time of this computer." + Environment.NewLine + "Server:" + CDate(header("Date")).ToString + " PC:" + Now.ToString - Return responceCode + Return responseCode End Function #End Region From svnnotify @ sourceforge.jp Sun Dec 12 12:03:40 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 12 Dec 2010 12:03:40 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMDFdICDjg7tETemAgeS/oeW+jOOBq+S+iw==?= =?utf-8?b?5aSW44GM55m655Sf44GZ44KL44OQ44Kw44KS5L+u5q2j?= Message-ID: <1292123020.195391.4042.nullmailer@users.sourceforge.jp> Revision: 1201 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1201 Author: syo68k Date: 2010-12-12 12:03:40 +0900 (Sun, 12 Dec 2010) Log Message: ----------- ・DM送信後に例外が発生するバグを修正 ・自分から送ったDMを削除した場合に正しくDELETEイベントが処理できていなかったのを修正 Modified Paths: -------------- trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-10 17:42:25 UTC (rev 1200) +++ trunk/Tween/Tween.vb 2010-12-12 03:03:40 UTC (rev 1201) @@ -2748,7 +2748,7 @@ For Each Id As Long In _statuses.GetId(_curTab.Text, _curList.SelectedIndices) Dim rtn As String = "" If _statuses.Tabs(_curTab.Text).TabType = TabUsageType.DirectMessage Then - rtn = tw.RemoveDirectMessage(Id) + rtn = tw.RemoveDirectMessage(Id, _statuses.Item(Id)) Else If _statuses.Item(Id).IsMe OrElse _statuses.Item(Id).RetweetedBy.ToLower = tw.Username.ToLower Then rtn = tw.RemoveStatus(Id) Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-10 17:42:25 UTC (rev 1200) +++ trunk/Tween/Twitter.vb 2010-12-12 03:03:40 UTC (rev 1201) @@ -80,6 +80,8 @@ Private twCon As New HttpTwitter + Private _deletemessages As New List(Of PostClass) + Public Function Authenticate(ByVal username As String, ByVal password As String) As String Dim res As HttpStatusCode @@ -457,9 +459,9 @@ Select Case res Case HttpStatusCode.OK Twitter.AccountState = ACCOUNT_STATE.Valid - Dim status As TwitterDataModel.Status + Dim status As TwitterDataModel.Directmessage Try - status = CreateDataFromJson(Of TwitterDataModel.Status)(content) + status = CreateDataFromJson(Of TwitterDataModel.Directmessage)(content) Catch ex As SerializationException TraceOut(ex.Message + Environment.NewLine + content) Return "Err:Json Parse Error(DataContractJsonSerializer)" @@ -467,12 +469,12 @@ TraceOut(content) Return "Err:Invalid Json!" End Try - _followersCount = status.User.FollowersCount - _friendsCount = status.User.FriendsCount - _statusesCount = status.User.StatusesCount - _location = status.User.Location - _bio = status.User.Description - _UserIdNo = status.User.IdStr + _followersCount = status.Sender.FollowersCount + _friendsCount = status.Sender.FriendsCount + _statusesCount = status.Sender.StatusesCount + _location = status.Sender.Location + _bio = status.Sender.Description + _UserIdNo = status.Sender.IdStr If op.Post(postStr.Length) Then Return "" @@ -666,13 +668,16 @@ Return "" End Function - Public Function RemoveDirectMessage(ByVal id As Long) As String + Public Function RemoveDirectMessage(ByVal id As Long, ByVal post As PostClass) As String If _endingFlag Then Return "" If Twitter.AccountState <> ACCOUNT_STATE.Valid Then Return "" Dim res As HttpStatusCode + If post.IsMe Then + _deletemessages.Add(post) + End If Try res = twCon.DestroyDirectMessage(id) Catch ex As Exception @@ -2834,12 +2839,15 @@ ElseIf xElm.Element("delete") IsNot Nothing Then Debug.Print("delete") Dim post As PostClass = Nothing + Dim id As Int64 If xElm.Element("delete").Element("direct_message") IsNot Nothing Then - RaiseEvent PostDeleted(CLng(xElm.Element("delete").Element("direct_message").Element("id").Value), post) + id = CLng(xElm.Element("delete").Element("direct_message").Element("id").Value) + RaiseEvent PostDeleted(id, post) Else - RaiseEvent PostDeleted(CLng(xElm.Element("delete").Element("status").Element("id").Value), post) + id = CLng(xElm.Element("delete").Element("status").Element("id").Value) + RaiseEvent PostDeleted(id, post) End If - CreateDeleteEvent(DateTime.Now, post) + CreateDeleteEvent(DateTime.Now, id, post) Exit Sub ElseIf xElm.Element("limit") IsNot Nothing Then Debug.Print(line) @@ -2869,10 +2877,17 @@ RaiseEvent NewPostFromStream() End Sub - Private Sub CreateDeleteEvent(ByVal createdat As DateTime, ByVal post As PostClass) + Private Sub CreateDeleteEvent(ByVal createdat As DateTime, ByVal id As Int64, ByVal post As PostClass) Dim evt As New FormattedEvent evt.CreatedAt = createdat If post Is Nothing Then + Dim tmp As PostClass = (From p In _deletemessages Where p.Id = id).First + If tmp IsNot Nothing Then + post = tmp + _deletemessages.Remove(post) + End If + End If + If post Is Nothing Then evt.Event = "DELETE(UNKNOWN)" evt.Username = "--UNKNOWN--" evt.Target = "--UNKNOWN--" From svnnotify @ sourceforge.jp Sun Dec 12 19:22:31 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 12 Dec 2010 19:22:31 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMDJdICBPcGVuVVJM44Gu44OA44Kk44Ki44Ot?= =?utf-8?b?44Kw44KSQ3RybCt744Gn6ZaJ44GY44KM44KL44KI44GG44Gr44GX44Gm44G/?= =?utf-8?b?44Gf?= Message-ID: <1292149351.243162.2878.nullmailer@users.sourceforge.jp> Revision: 1202 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1202 Author: f_swallow Date: 2010-12-12 19:22:31 +0900 (Sun, 12 Dec 2010) Log Message: ----------- OpenURLのダイアログをCtrl+{で閉じれるようにしてみた Modified Paths: -------------- trunk/Tween/OpenURL.vb -------------- next part -------------- Modified: trunk/Tween/OpenURL.vb =================================================================== --- trunk/Tween/OpenURL.vb 2010-12-12 03:03:40 UTC (rev 1201) +++ trunk/Tween/OpenURL.vb 2010-12-12 10:22:31 UTC (rev 1202) @@ -92,6 +92,10 @@ e.SuppressKeyPress = True UrlList.SelectedIndex -= 1 End If + If e.Control AndAlso e.KeyCode = Keys.Oem4 Then + e.SuppressKeyPress = True + Cancel_Button_Click(Nothing, Nothing) + End If End Sub End Class From svnnotify @ sourceforge.jp Mon Dec 13 03:31:09 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 13 Dec 2010 03:31:09 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMDNdICBERUxFVEXjgqTjg5njg7Pjg4jjga4=?= =?utf-8?b?5Yem55CG44Gn5L6L5aSW44KS5Ye644GZ44GT44Go44GM44GC44Gj44Gf44OQ?= =?utf-8?b?44Kw44KS5L+u5q2j?= Message-ID: <1292178669.489463.20072.nullmailer@users.sourceforge.jp> Revision: 1203 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1203 Author: syo68k Date: 2010-12-13 03:31:09 +0900 (Mon, 13 Dec 2010) Log Message: ----------- DELETEイベントの処理で例外を出すことがあったバグを修正 Modified Paths: -------------- trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-12 10:22:31 UTC (rev 1202) +++ trunk/Tween/Twitter.vb 2010-12-12 18:31:09 UTC (rev 1203) @@ -2881,7 +2881,7 @@ Dim evt As New FormattedEvent evt.CreatedAt = createdat If post Is Nothing Then - Dim tmp As PostClass = (From p In _deletemessages Where p.Id = id).First + Dim tmp As PostClass = (From p In _deletemessages Where p.Id = id).FirstOrDefault If tmp IsNot Nothing Then post = tmp _deletemessages.Remove(post) From svnnotify @ sourceforge.jp Mon Dec 13 19:47:47 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 13 Dec 2010 19:47:47 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMDRdICDoq7jkuovmg4XjgadUd2l0VmlkZW8=?= =?utf-8?b?6Zai6YCj5YmK6Zmk?= Message-ID: <1292237267.972699.9122.nullmailer@users.sourceforge.jp> Revision: 1204 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1204 Author: kiri_feather Date: 2010-12-13 19:47:47 +0900 (Mon, 13 Dec 2010) Log Message: ----------- 諸事情でTwitVideo関連削除 Modified Paths: -------------- trunk/Tween/PictureService.vb trunk/Tween/Tween.vb trunk/Tween/Tween.vbproj -------------- next part -------------- Modified: trunk/Tween/PictureService.vb =================================================================== --- trunk/Tween/PictureService.vb 2010-12-12 18:31:09 UTC (rev 1203) +++ trunk/Tween/PictureService.vb 2010-12-13 10:47:47 UTC (rev 1204) @@ -6,7 +6,12 @@ Private tw As Twitter Public Function Upload(ByRef filePath As String, ByRef message As String, ByVal service As String) As String - Dim file As New FileInfo(filePath) + Dim file As FileInfo + Try + file = New FileInfo(filePath) + Catch ex As NotSupportedException + Return "Err:" + ex.Message + End Try If Not file.Exists Then Return "Err:File isn't exists." Dim st As Setting = Setting.Instance Dim ret As String = "" @@ -16,8 +21,8 @@ ret = UpToTwitPic(file, message, upResult) Case "img.ly" ret = UpToimgly(file, message, upResult) - Case "TwitVideo" - ret = UpToTwitVideo(file, message, upResult) + 'Case "TwitVideo" + ' ret = UpToTwitVideo(file, message, upResult) Case "yfrog" ret = UpToyfrog(file, message, upResult) End Select @@ -32,8 +37,8 @@ ret = (New TwitPic(tw.AccessToken, tw.AccessTokenSecret)).CheckValidExtension(ext) Case "img.ly" ret = (New imgly(tw.AccessToken, tw.AccessTokenSecret)).CheckValidExtension(ext) - Case "TwitVideo" - ret = (New TwitVideo).CheckValidExtension(ext) + 'Case "TwitVideo" + ' ret = (New TwitVideo).CheckValidExtension(ext) Case "yfrog" ret = (New yfrog(tw.AccessToken, tw.AccessTokenSecret)).CheckValidExtension(ext) End Select @@ -47,8 +52,8 @@ ret = (New TwitPic(tw.AccessToken, tw.AccessTokenSecret)).GetFileOpenDialogFilter Case "img.ly" ret = (New imgly(tw.AccessToken, tw.AccessTokenSecret)).GetFileOpenDialogFilter - Case "TwitVideo" - ret = (New TwitVideo).GetFileOpenDialogFilter + 'Case "TwitVideo" + ' ret = (New TwitVideo).GetFileOpenDialogFilter Case "yfrog" ret = (New yfrog(tw.AccessToken, tw.AccessTokenSecret)).GetFileOpenDialogFilter End Select @@ -62,8 +67,8 @@ ret = (New TwitPic(tw.AccessToken, tw.AccessTokenSecret)).GetFileType(ext) Case "img.ly" ret = (New imgly(tw.AccessToken, tw.AccessTokenSecret)).GetFileType(ext) - Case "TwitVideo" - ret = (New TwitVideo).GetFileType(ext) + 'Case "TwitVideo" + ' ret = (New TwitVideo).GetFileType(ext) Case "yfrog" ret = (New yfrog(tw.AccessToken, tw.AccessTokenSecret)).GetFileType(ext) End Select @@ -77,8 +82,8 @@ ret = (New TwitPic(tw.AccessToken, tw.AccessTokenSecret)).IsSupportedFileType(type) Case "img.ly" ret = (New imgly(tw.AccessToken, tw.AccessTokenSecret)).IsSupportedFileType(type) - Case "TwitVideo" - ret = (New TwitVideo).IsSupportedFileType(type) + 'Case "TwitVideo" + ' ret = (New TwitVideo).IsSupportedFileType(type) Case "yfrog" ret = (New yfrog(tw.AccessToken, tw.AccessTokenSecret)).IsSupportedFileType(type) End Select @@ -92,8 +97,8 @@ ret = (New TwitPic(tw.AccessToken, tw.AccessTokenSecret)).GetMaxFileSize(ext) Case "img.ly" ret = (New imgly(tw.AccessToken, tw.AccessTokenSecret)).GetMaxFileSize(ext) - Case "TwitVideo" - ret = (New TwitVideo).GetMaxFileSize(ext) + 'Case "TwitVideo" + ' ret = (New TwitVideo).GetMaxFileSize(ext) Case "yfrog" ret = (New yfrog(tw.AccessToken, tw.AccessTokenSecret)).GetMaxFileSize(ext) End Select @@ -205,45 +210,45 @@ Return tw.PostStatus(message, 0) End Function - Private Function UpToTwitVideo(ByVal file As FileInfo, ByRef message As String, ByRef resultUpload As Boolean) As String - Dim content As String = "" - Dim ret As HttpStatusCode - 'TwitVideoへの投稿 - Dim svc As New TwitVideo - Try - ret = svc.Upload(file, message, "", tw.Username, tw.UserIdNo, content) - Catch ex As Exception - Return "Err:" + ex.Message - End Try - Dim url As String = "" - If ret = HttpStatusCode.OK Then - Dim xd As XmlDocument = New XmlDocument() - Try - xd.LoadXml(content) - Dim rslt As String = xd.SelectSingleNode("/rsp/@status").Value - If rslt = "ok" Then - 'URLの取得 - url = xd.SelectSingleNode("/rsp/mediaurl").InnerText - Else - Return "Err:" + xd.SelectSingleNode("/rsp/err/@msg").Value - End If - Catch ex As XmlException - Return "Err:" + ex.Message - End Try - Else - Return "Err:" + ret.ToString - End If - 'アップロードまでは成功 - resultUpload = True - 'Twitterへの投稿 - '投稿メッセージの再構成 - If message.Length + url.Length + 1 > 140 Then - message = message.Substring(0, 140 - url.Length - 1) + " " + url - Else - message += " " + url - End If - Return tw.PostStatus(message, 0) - End Function + 'Private Function UpToTwitVideo(ByVal file As FileInfo, ByRef message As String, ByRef resultUpload As Boolean) As String + ' Dim content As String = "" + ' Dim ret As HttpStatusCode + ' 'TwitVideoへの投稿 + ' Dim svc As New TwitVideo + ' Try + ' ret = svc.Upload(file, message, "", tw.Username, tw.UserIdNo, content) + ' Catch ex As Exception + ' Return "Err:" + ex.Message + ' End Try + ' Dim url As String = "" + ' If ret = HttpStatusCode.OK Then + ' Dim xd As XmlDocument = New XmlDocument() + ' Try + ' xd.LoadXml(content) + ' Dim rslt As String = xd.SelectSingleNode("/rsp/@status").Value + ' If rslt = "ok" Then + ' 'URLの取得 + ' url = xd.SelectSingleNode("/rsp/mediaurl").InnerText + ' Else + ' Return "Err:" + xd.SelectSingleNode("/rsp/err/@msg").Value + ' End If + ' Catch ex As XmlException + ' Return "Err:" + ex.Message + ' End Try + ' Else + ' Return "Err:" + ret.ToString + ' End If + ' 'アップロードまでは成功 + ' resultUpload = True + ' 'Twitterへの投稿 + ' '投稿メッセージの再構成 + ' If message.Length + url.Length + 1 > 140 Then + ' message = message.Substring(0, 140 - url.Length - 1) + " " + url + ' Else + ' message += " " + url + ' End If + ' Return tw.PostStatus(message, 0) + 'End Function Public Sub New(ByVal twInstance As Twitter) tw = twInstance Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-12 18:31:09 UTC (rev 1203) +++ trunk/Tween/Tween.vb 2010-12-13 10:47:47 UTC (rev 1204) @@ -9676,7 +9676,7 @@ ImageServiceCombo.Items.Add("img.ly") ImageServiceCombo.Items.Add("yfrog") End If - ImageServiceCombo.Items.Add("TwitVideo") + 'ImageServiceCombo.Items.Add("TwitVideo") If svc = "" Then ImageServiceCombo.SelectedIndex = 0 Else Modified: trunk/Tween/Tween.vbproj =================================================================== --- trunk/Tween/Tween.vbproj 2010-12-12 18:31:09 UTC (rev 1203) +++ trunk/Tween/Tween.vbproj 2010-12-13 10:47:47 UTC (rev 1204) @@ -130,7 +130,6 @@ - From svnnotify @ sourceforge.jp Tue Dec 14 02:44:11 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 14 Dec 2010 02:44:11 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMDVdICDoqK3lrprjg5XjgqHjgqTjg6vjgYw=?= =?utf-8?b?5a2Y5Zyo44GX44Gq44GE54q25oWL44Gn6LW35YuV44GZ44KL44GoTnVsbFJl?= =?utf-8?b?ZmVyZW5jZUV4Y2VwdGlvbuOBjOeZuueUn+OBmeOCi+OBruOCkuS/ruatow==?= Message-ID: <1292262251.585517.27769.nullmailer@users.sourceforge.jp> Revision: 1205 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1205 Author: syo68k Date: 2010-12-14 02:44:11 +0900 (Tue, 14 Dec 2010) Log Message: ----------- 設定ファイルが存在しない状態で起動するとNullReferenceExceptionが発生するのを修正 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-13 10:47:47 UTC (rev 1204) +++ trunk/Tween/Tween.vb 2010-12-13 17:44:11 UTC (rev 1205) @@ -534,9 +534,10 @@ '<<<<<<<<<設定関連>>>>>>>>> '設定コンバージョン - ConvertConfig() + 'ConvertConfig() ''設定読み出し + LoadConfig() '新着バルーン通知のチェック状態設定 NewPostPopMenuItem.Checked = _cfgCommon.NewAllPop @@ -1176,14 +1177,14 @@ End If End Sub - Private Sub ConvertConfig() - '新タブ設定ファイル存在チェック - If System.IO.File.Exists(SettingTabs.GetSettingFilePath("")) Then - LoadConfig() - Exit Sub - End If - 'LoadOldConfig() - End Sub + 'Private Sub ConvertConfig() + ' '新タブ設定ファイル存在チェック + ' If System.IO.File.Exists(SettingTabs.GetSettingFilePath("")) Then + ' LoadConfig() + ' Exit Sub + ' End If + ' 'LoadOldConfig() + 'End Sub Private Sub TimerTimeline_Elapsed(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TimerTimeline.Elapsed Static homeCounter As Integer = 0 From svnnotify @ sourceforge.jp Tue Dec 14 21:05:23 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 14 Dec 2010 21:05:23 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMDZdICBERUxFVEXjgqTjg5njg7Pjg4jjga8=?= =?utf-8?b?55m66KiA5oqc57KL44Go55m66KiA5pel5pmC44KS5q6L44GZ44KI44GG44Gr?= =?utf-8?b?44GX44Gm44G/44Gf?= Message-ID: <1292328323.249920.17297.nullmailer@users.sourceforge.jp> Revision: 1206 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1206 Author: kiri_feather Date: 2010-12-14 21:05:23 +0900 (Tue, 14 Dec 2010) Log Message: ----------- DELETEイベントは発言抜粋と発言日時を残すようにしてみた Modified Paths: -------------- trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-13 17:44:11 UTC (rev 1205) +++ trunk/Tween/Twitter.vb 2010-12-14 12:05:23 UTC (rev 1206) @@ -2807,12 +2807,6 @@ Public Property Username As String Public Property Target As String - Public Overrides Function ToString() As String - Return (Me.CreatedAt.ToString() + " ").Substring(0, 20) + - ("[" + Me.Event.ToUpper + "] ").Substring(0, 20) + - (Me.Username + " ").Substring(0, 20) + - Me.Target - End Function End Class Public Property StoredEvent As New List(Of FormattedEvent) @@ -2898,7 +2892,7 @@ evt.Event = "DELETE(Post)" End If evt.Username = post.Name - evt.Target = post.Data + evt.Target = If(post.Data.Length > 5, post.Data.Substring(0, 5) + "...", post.Data) + " [" + post.PDate.ToString + "]" End If Me.StoredEvent.Insert(0, evt) RaiseEvent UserStreamEventReceived(evt.Event) From svnnotify @ sourceforge.jp Tue Dec 14 22:58:43 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 14 Dec 2010 22:58:43 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMDddICDnlLvlg4/jgrXjg6Djg43jgqTjg6s=?= =?utf-8?b?44Gu5Y+W5b6X6ZaL5aeL44O75q2j5bi45a6M5LqG44Gu44Oh44OD44K744O8?= =?utf-8?b?44K444KS5q6L44GV44Gq44GE44KI44GG44Gr5aSJ5pu0?= Message-ID: <1292335123.440139.2042.nullmailer@users.sourceforge.jp> Revision: 1207 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1207 Author: kiri_feather Date: 2010-12-14 22:58:43 +0900 (Tue, 14 Dec 2010) Log Message: ----------- 画像サムネイルの取得開始・正常完了のメッセージを残さないように変更 Userstreamが動いているときは、timeline/mentions/dmの定期取得を停止。動いていないときはUserstreamの定期反映を停止。 Userstreamが動いているかを明確に判断するため状態フラグ化。 Modified Paths: -------------- trunk/Tween/Thumbnail.vb trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Thumbnail.vb =================================================================== --- trunk/Tween/Thumbnail.vb 2010-12-14 12:05:23 UTC (rev 1206) +++ trunk/Tween/Thumbnail.vb 2010-12-14 13:58:43 UTC (rev 1207) @@ -184,9 +184,9 @@ Private Sub ThumbnailProgressChanged(ByVal ProgressPercentage As Integer, Optional ByVal AddMsg As String = "") If ProgressPercentage = 0 Then '開始 - Owner.SetStatusLabel("Thumbnail generating...") + 'Owner.SetStatusLabel("Thumbnail generating...") ElseIf ProgressPercentage = 100 Then '正常終了 - Owner.SetStatusLabel("Thumbnail generated.") + 'Owner.SetStatusLabel("Thumbnail generated.") Else ' エラー If String.IsNullOrEmpty(AddMsg) Then Owner.SetStatusLabel("can't get Thumbnail.") Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-14 12:05:23 UTC (rev 1206) +++ trunk/Tween/Tween.vb 2010-12-14 13:58:43 UTC (rev 1207) @@ -1209,15 +1209,15 @@ 'Interlocked.Add(period, -_homeCounterAdjuster) 'Interlocked.Exchange(_homeCounter, period) Interlocked.Exchange(homeCounter, SettingDialog.TimelinePeriodInt) - GetTimeline(WORKERTYPE.Timeline, 1, 0, "") + If Not Me._isActiveUserstream Then GetTimeline(WORKERTYPE.Timeline, 1, 0, "") End If If mentionCounter <= 0 AndAlso SettingDialog.ReplyPeriodInt > 0 Then Interlocked.Exchange(mentionCounter, SettingDialog.ReplyPeriodInt) - GetTimeline(WORKERTYPE.Reply, 1, 0, "") + If Not Me._isActiveUserstream Then GetTimeline(WORKERTYPE.Reply, 1, 0, "") End If If dmCounter <= 0 AndAlso SettingDialog.DMPeriodInt > 0 Then Interlocked.Exchange(dmCounter, SettingDialog.DMPeriodInt) - GetTimeline(WORKERTYPE.DirectMessegeRcv, 1, 0, "") + If Not Me._isActiveUserstream Then GetTimeline(WORKERTYPE.DirectMessegeRcv, 1, 0, "") End If If pubSearchCounter <= 0 AndAlso SettingDialog.PubSearchPeriodInt > 0 Then Interlocked.Exchange(pubSearchCounter, SettingDialog.PubSearchPeriodInt) @@ -1229,7 +1229,7 @@ End If If usCounter <= 0 AndAlso SettingDialog.UserstreamPeriodInt > 0 Then Interlocked.Exchange(usCounter, SettingDialog.UserstreamPeriodInt) - RefreshTimeline(True) + If Me._isActiveUserstream Then RefreshTimeline(True) End If End Sub @@ -9830,6 +9830,9 @@ MessageBox.Show(buf.ToString, "アイコンキャッシュ使用状況") End Sub +#Region "Userstream" + Private _isActiveUserstream As Boolean = False + Private Sub tw_PostDeleted(ByVal id As Long, ByRef post As PostClass) _statuses.RemovePostReserve(id, post) End Sub @@ -9878,7 +9881,9 @@ Exit Sub End Try End Sub + Private Sub tw_UserStreamStarted() + Me._isActiveUserstream = True If InvokeRequired Then Invoke(New MethodInvoker(AddressOf tw_UserStreamStarted)) Exit Sub @@ -9893,6 +9898,7 @@ End Sub Private Sub tw_UserStreamStopped() + Me._isActiveUserstream = False If InvokeRequired Then Invoke(New MethodInvoker(AddressOf tw_UserStreamStopped)) Exit Sub @@ -9916,7 +9922,11 @@ Private Sub StopToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles StopToolStripMenuItem.Click MenuItemUserStream.Enabled = False - tw.StartUserStream() + If Me._isActiveUserstream Then + tw.StopUserStream() + Else + tw.StartUserStream() + End If End Sub Private Sub TrackToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TrackToolStripMenuItem.Click @@ -9955,6 +9965,16 @@ Application.Restart() End Sub + Private Sub EventViewerMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles EventViewerMenuItem.Click + Using dlg As New EventViewerDialog + dlg.Owner = Me + dlg.EventSource = tw.StoredEvent + dlg.ShowDialog() + Me.TopMost = SettingDialog.AlwaysTop + End Using + End Sub +#End Region + Private Sub OpenOwnFavedMenuItem_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles OpenOwnFavedMenuItem.Click If Not tw.Username = "" Then OpenUriAsync(My.Resources.FavstarUrl + "users/" + tw.Username + "/recent") End Sub @@ -9963,12 +9983,4 @@ OpenUriAsync("http://twitter.com/" + tw.Username) End Sub - Private Sub EventViewerMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles EventViewerMenuItem.Click - Using dlg As New EventViewerDialog - dlg.Owner = Me - dlg.EventSource = tw.StoredEvent - dlg.ShowDialog() - Me.TopMost = SettingDialog.AlwaysTop - End Using - End Sub End Class Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-14 12:05:23 UTC (rev 1206) +++ trunk/Tween/Twitter.vb 2010-12-14 13:58:43 UTC (rev 1207) @@ -2958,13 +2958,12 @@ End Get End Property - Public Overloads Sub StartUserStream() + Public Sub StartUserStream() If userStream IsNot Nothing Then StopUserStream() - Else - userStream = New TwitterUserstream(twCon) - userStream.Start(Me.AllAtReply, Me.TrackWord) End If + userStream = New TwitterUserstream(twCon) + userStream.Start(Me.AllAtReply, Me.TrackWord) End Sub Public Sub StopUserStream() @@ -2975,7 +2974,6 @@ Public Sub ReconnectUserStream() If userStream IsNot Nothing Then - Me.StopUserStream() Me.StartUserStream() End If End Sub From svnnotify @ sourceforge.jp Tue Dec 14 23:15:10 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 14 Dec 2010 23:15:10 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMDhdICDplqLpgKPnmbroqIDjgr/jg5bjga4=?= =?utf-8?b?5pyq6Kqt566h55CG44KS5Yid5pyf5YCk5pyq6Kqt566h55CG44GX44Gq44GE?= =?utf-8?b?44KI44GG44Gr?= Message-ID: <1292336110.262684.27883.nullmailer@users.sourceforge.jp> Revision: 1208 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1208 Author: kiri_feather Date: 2010-12-14 23:15:10 +0900 (Tue, 14 Dec 2010) Log Message: ----------- 関連発言タブの未読管理を初期値未読管理しないように 関連発言取得で、発言者・返信先ユーザーの直近10発言取得を無効に(悩ましい) DeleteイベントのUnknownは、Tweenが保持していない発言に対してのものなので、無視するように(ログにも残さない) Modified Paths: -------------- trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-14 13:58:43 UTC (rev 1207) +++ trunk/Tween/Tween.vb 2010-12-14 14:15:10 UTC (rev 1208) @@ -9804,6 +9804,7 @@ Else _statuses.AddTab(tName, TabUsageType.Related, Nothing) End If + _statuses.GetTabByName(tName).UnreadManage = False End If Dim tb As TabClass = _statuses.GetTabByType(TabUsageType.Related) Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-14 13:58:43 UTC (rev 1207) +++ trunk/Tween/Twitter.vb 2010-12-14 14:15:10 UTC (rev 1208) @@ -1690,12 +1690,14 @@ Next Next - Dim rslt As String = Me.GetUserTimelineApi(read, 10, "", tab) - If Not String.IsNullOrEmpty(rslt) Then Return rslt - If Not String.IsNullOrEmpty(replyToUserName) Then - rslt = Me.GetUserTimelineApi(read, 10, replyToUserName, tab) - End If - Return rslt + '発言者・返信先ユーザーの直近10発言取得 + 'Dim rslt As String = Me.GetUserTimelineApi(read, 10, "", tab) + 'If Not String.IsNullOrEmpty(rslt) Then Return rslt + 'If Not String.IsNullOrEmpty(replyToUserName) Then + ' rslt = Me.GetUserTimelineApi(read, 10, replyToUserName, tab) + 'End If + 'Return rslt + Return "" End Function Private Function CreatePostsFromXml(ByVal content As String, ByVal gType As WORKERTYPE, ByVal tab As TabClass, ByVal read As Boolean, ByVal count As Integer, ByRef minimumId As Long) As String @@ -2882,9 +2884,11 @@ End If End If If post Is Nothing Then - evt.Event = "DELETE(UNKNOWN)" - evt.Username = "--UNKNOWN--" - evt.Target = "--UNKNOWN--" + 'evt.Event = "DELETE(UNKNOWN)" + 'evt.Username = "--UNKNOWN--" + 'evt.Target = "--UNKNOWN--" + '保持していない発言に対しての削除イベントは無視 + Exit Sub Else If post.IsDm Then evt.Event = "DELETE(DM)" From svnnotify @ sourceforge.jp Wed Dec 15 00:35:25 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 15 Dec 2010 00:35:25 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMDldICBGYXbpgJrnn6Xlrp/oo4U=?= Message-ID: <1292340925.505267.30949.nullmailer@users.sourceforge.jp> Revision: 1209 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1209 Author: kiri_feather Date: 2010-12-15 00:35:25 +0900 (Wed, 15 Dec 2010) Log Message: ----------- Fav通知実装 Modified Paths: -------------- trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-14 14:15:10 UTC (rev 1208) +++ trunk/Tween/Tween.vb 2010-12-14 15:35:25 UTC (rev 1209) @@ -1402,56 +1402,64 @@ End Sub + Private Function BalloonRequired() As Boolean + If ( + NewPostPopMenuItem.Checked AndAlso + Not _initial AndAlso + ( + ( + SettingDialog.LimitBalloon AndAlso + ( + Me.WindowState = FormWindowState.Minimized OrElse + Not Me.Visible OrElse + Form.ActiveForm Is Nothing + ) + ) OrElse + Not SettingDialog.LimitBalloon + ) + ) AndAlso + Not IsScreenSaverRunning() Then + Return True + Else + Return False + End If + End Function + Private Sub NotifyNewPosts(ByVal notifyPosts() As PostClass, ByVal soundFile As String, ByVal addCount As Integer, ByVal newMentions As Boolean) '新着通知 - If ( _ - NewPostPopMenuItem.Checked AndAlso _ - notifyPosts IsNot Nothing AndAlso _ - notifyPosts.Length > 0 AndAlso _ - Not _initial AndAlso _ - ( _ - ( _ - SettingDialog.LimitBalloon AndAlso _ - ( _ - Me.WindowState = FormWindowState.Minimized OrElse _ - Not Me.Visible OrElse _ - Form.ActiveForm Is Nothing _ - ) _ - ) OrElse _ - Not SettingDialog.LimitBalloon _ - ) _ - ) AndAlso _ - Not IsScreenSaverRunning() Then - Dim sb As New StringBuilder - Dim reply As Boolean = False - Dim dm As Boolean = False - For Each post As PostClass In notifyPosts - If post.IsReply AndAlso Not post.IsExcludeReply Then reply = True - If post.IsDm Then dm = True - If sb.Length > 0 Then sb.Append(System.Environment.NewLine) - Select Case SettingDialog.NameBalloon - Case NameBalloonEnum.UserID - sb.Append(post.Name).Append(" : ") - Case NameBalloonEnum.NickName - sb.Append(post.Nickname).Append(" : ") - End Select - sb.Append(post.Data) - Next - If SettingDialog.DispUsername Then NotifyIcon1.BalloonTipTitle = tw.Username + " - " Else NotifyIcon1.BalloonTipTitle = "" - If dm Then - NotifyIcon1.BalloonTipIcon = ToolTipIcon.Warning - NotifyIcon1.BalloonTipTitle += "Tween [DM] " + My.Resources.RefreshDirectMessageText1 + " " + addCount.ToString() + My.Resources.RefreshDirectMessageText2 - ElseIf reply Then - NotifyIcon1.BalloonTipIcon = ToolTipIcon.Warning - NotifyIcon1.BalloonTipTitle += "Tween [Reply!] " + My.Resources.RefreshTimelineText1 + " " + addCount.ToString() + My.Resources.RefreshTimelineText2 - Else - NotifyIcon1.BalloonTipIcon = ToolTipIcon.Info - NotifyIcon1.BalloonTipTitle += "Tween " + My.Resources.RefreshTimelineText1 + " " + addCount.ToString() + My.Resources.RefreshTimelineText2 + If BalloonRequired() Then + If notifyPosts IsNot Nothing AndAlso notifyPosts.Length > 0 Then + Dim sb As New StringBuilder + Dim reply As Boolean = False + Dim dm As Boolean = False + For Each post As PostClass In notifyPosts + If post.IsReply AndAlso Not post.IsExcludeReply Then reply = True + If post.IsDm Then dm = True + If sb.Length > 0 Then sb.Append(System.Environment.NewLine) + Select Case SettingDialog.NameBalloon + Case NameBalloonEnum.UserID + sb.Append(post.Name).Append(" : ") + Case NameBalloonEnum.NickName + sb.Append(post.Nickname).Append(" : ") + End Select + sb.Append(post.Data) + Next + If SettingDialog.DispUsername Then NotifyIcon1.BalloonTipTitle = tw.Username + " - " Else NotifyIcon1.BalloonTipTitle = "" + If dm Then + NotifyIcon1.BalloonTipIcon = ToolTipIcon.Warning + NotifyIcon1.BalloonTipTitle += "Tween [DM] " + My.Resources.RefreshDirectMessageText1 + " " + addCount.ToString() + My.Resources.RefreshDirectMessageText2 + ElseIf reply Then + NotifyIcon1.BalloonTipIcon = ToolTipIcon.Warning + NotifyIcon1.BalloonTipTitle += "Tween [Reply!] " + My.Resources.RefreshTimelineText1 + " " + addCount.ToString() + My.Resources.RefreshTimelineText2 + Else + NotifyIcon1.BalloonTipIcon = ToolTipIcon.Info + NotifyIcon1.BalloonTipTitle += "Tween " + My.Resources.RefreshTimelineText1 + " " + addCount.ToString() + My.Resources.RefreshTimelineText2 + End If + Dim bText As String = sb.ToString + If String.IsNullOrEmpty(bText) Then Exit Sub + NotifyIcon1.BalloonTipText = sb.ToString() + NotifyIcon1.ShowBalloonTip(500) End If - Dim bText As String = sb.ToString - If String.IsNullOrEmpty(bText) Then Exit Sub - NotifyIcon1.BalloonTipText = sb.ToString() - NotifyIcon1.ShowBalloonTip(500) End If 'サウンド再生 @@ -1473,7 +1481,6 @@ End If End Sub - Private Sub MyList_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) If _curList.SelectedIndices.Count <> 1 Then Exit Sub 'If _curList.SelectedIndices.Count = 0 Then Exit Sub @@ -9913,14 +9920,28 @@ StatusLabel.Text = "UserStream Stopped." End Sub - Private Sub tw_UserStreamEventArrived(ByVal eventType As String) + Private Sub tw_UserStreamEventArrived(ByVal ev As Twitter.FormattedEvent) If InvokeRequired Then - Invoke(New Action(Of String)(AddressOf tw_UserStreamEventArrived), eventType) + Invoke(New Action(Of Twitter.FormattedEvent)(AddressOf tw_UserStreamEventArrived), ev) Exit Sub End If - StatusLabel.Text = "Event: " + eventType + StatusLabel.Text = "Event: " + ev.Event + If ev.Event = "favorite" Then + NotifyFavorite(ev) + End If End Sub + Private Sub NotifyFavorite(ByVal ev As Twitter.FormattedEvent) + '新着通知 + If BalloonRequired() Then + NotifyIcon1.BalloonTipIcon = ToolTipIcon.Warning + If SettingDialog.DispUsername Then NotifyIcon1.BalloonTipTitle = tw.Username + " - " Else NotifyIcon1.BalloonTipTitle = "" + NotifyIcon1.BalloonTipTitle += "Tween [FAVORITE] by " + ev.Username + NotifyIcon1.BalloonTipText = ev.Target + NotifyIcon1.ShowBalloonTip(500) + End If + End Sub + Private Sub StopToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles StopToolStripMenuItem.Click MenuItemUserStream.Enabled = False If Me._isActiveUserstream Then Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-14 14:15:10 UTC (rev 1208) +++ trunk/Tween/Twitter.vb 2010-12-14 15:35:25 UTC (rev 1209) @@ -2800,7 +2800,7 @@ Public Event UserStreamStopped() Public Event UserStreamGetFriendsList() Public Event PostDeleted(ByVal id As Long, ByRef post As PostClass) - Public Event UserStreamEventReceived(ByVal eventType As String) + Public Event UserStreamEventReceived(ByVal eventType As FormattedEvent) Private WithEvents userStream As TwitterUserstream Public Class FormattedEvent @@ -2899,7 +2899,7 @@ evt.Target = If(post.Data.Length > 5, post.Data.Substring(0, 5) + "...", post.Data) + " [" + post.PDate.ToString + "]" End If Me.StoredEvent.Insert(0, evt) - RaiseEvent UserStreamEventReceived(evt.Event) + RaiseEvent UserStreamEventReceived(evt) End Sub Private Sub CreateEventFromJson(ByVal content As String) @@ -2934,7 +2934,7 @@ TraceOut("Unknown Event:" + evt.Event + Environment.NewLine + content) End Select Me.StoredEvent.Insert(0, evt) - RaiseEvent UserStreamEventReceived(evt.Event) + RaiseEvent UserStreamEventReceived(evt) End Sub Private Function CreateDataFromJson(Of T)(ByVal content As String) As T From svnnotify @ sourceforge.jp Wed Dec 15 10:13:30 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 15 Dec 2010 10:13:30 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMTBdICDjg7vjg5Xjgqnjg7zjg6Djga7jgrU=?= =?utf-8?b?44Kk44K65aSJ5pu044Gr5ZCI44KP44Gb44Gm5oqV56i/44Kr44Op44Og44Gu?= =?utf-8?b?5bmF44KS5aSJ5pu044GZ44KL5qmf6IO944KS5a6f6KOF?= Message-ID: <1292375610.277629.14883.nullmailer@users.sourceforge.jp> Revision: 1210 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1210 Author: anis774 Date: 2010-12-15 10:13:30 +0900 (Wed, 15 Dec 2010) Log Message: ----------- ・フォームのサイズ変更に合わせて投稿カラムの幅を変更する機能を実装 ・Service Referencesフォルダを削除 Modified Paths: -------------- trunk/Tween/Tween.vb trunk/Tween/Tween.vbproj Property Changed: ---------------- trunk/ -------------- next part -------------- Property changes on: trunk ___________________________________________________________________ Modified: svn:mergeinfo - /branches/tm:782-794 /branches/editlist:667-697 /branches/panelswitch:447-572 /branches/APIchangeevent:723-746 /branches/UserStream:1077-1144 /branches/FixedImage:787-910 + /branches/UserStream:1077-1144 /branches/editlist:667-697 /branches/panelswitch:447-572 /branches/APIchangeevent:723-746 /branches/tm:782-794 /branches/FixedImage:787-910 Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-14 15:35:25 UTC (rev 1209) +++ trunk/Tween/Tween.vb 2010-12-15 01:13:30 UTC (rev 1210) @@ -2555,16 +2555,21 @@ End Sub Private Sub Tween_ClientSizeChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.ClientSizeChanged - If Me.WindowState <> FormWindowState.Minimized Then - If Not _initialLayout AndAlso Me.Visible = True Then - If Me.WindowState = FormWindowState.Normal Then - _mySize = Me.ClientSize - _mySpDis = Me.SplitContainer1.SplitterDistance - _mySpDis3 = Me.SplitContainer3.SplitterDistance - If StatusText.Multiline Then _mySpDis2 = Me.StatusText.Height - _modifySettingLocal = True - End If - End If + If (Not _initialLayout) AndAlso _ + Me.Visible AndAlso _ + Me.WindowState = FormWindowState.Normal Then + + Dim widthDiff As Integer = Me.ClientSize.Width - Me._mySize.Width + Dim listView As DetailsListView = CType(Me._curTab.Tag, DetailsListView) + Dim column As ColumnHeader = listView.Columns(2) + column.Width += widthDiff + Me.MyList_ColumnWidthChanged(listView, New ColumnWidthChangedEventArgs(2)) + + _mySize = Me.ClientSize + _mySpDis = Me.SplitContainer1.SplitterDistance + _mySpDis3 = Me.SplitContainer3.SplitterDistance + If StatusText.Multiline Then _mySpDis2 = Me.StatusText.Height + _modifySettingLocal = True End If End Sub Modified: trunk/Tween/Tween.vbproj =================================================================== --- trunk/Tween/Tween.vbproj 2010-12-14 15:35:25 UTC (rev 1209) +++ trunk/Tween/Tween.vbproj 2010-12-15 01:13:30 UTC (rev 1210) @@ -544,9 +544,6 @@ true - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + 140, 17 + + + 82 + + \ No newline at end of file Added: branches/SettingDialog/Tween/AppendSettingDialog.vb =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.vb (rev 0) +++ branches/SettingDialog/Tween/AppendSettingDialog.vb 2010-12-18 14:29:36 UTC (rev 1217) @@ -0,0 +1,2214 @@ +?Imports System.ComponentModel +Imports System.Threading + +Public Class AppendSettingDialog + + Private Shared _instance As New AppendSettingDialog + Private tw As Twitter + 'Private _MyuserID As String + 'Private _Mypassword As String + Private _MytimelinePeriod As Integer + Private _MyDMPeriod As Integer + Private _MyPubSearchPeriod As Integer + Private _MyListsPeriod As Integer + Private _MyLogDays As Integer + Private _MyLogUnit As LogUnitEnum + Private _MyReaded As Boolean + Private _MyIconSize As IconSizes + Private _MyStatusText As String + Private _MyRecommendStatusText As String + Private _MyUnreadManage As Boolean + Private _MyPlaySound As Boolean + Private _MyOneWayLove As Boolean + Private _fntUnread As Font + Private _clUnread As Color + Private _fntReaded As Font + Private _clReaded As Color + Private _clFav As Color + Private _clOWL As Color + Private _clRetweet As Color + Private _fntDetail As Font + Private _clSelf As Color + Private _clAtSelf As Color + Private _clTarget As Color + Private _clAtTarget As Color + Private _clAtFromTarget As Color + Private _clAtTo As Color + Private _clInputBackcolor As Color + Private _clInputFont As Color + Private _fntInputFont As Font + Private _clListBackcolor As Color + Private _clDetailBackcolor As Color + Private _clDetail As Color + Private _clDetailLink As Color + Private _MyNameBalloon As NameBalloonEnum + Private _MyPostCtrlEnter As Boolean + Private _MyPostShiftEnter As Boolean + Private _usePostMethod As Boolean + Private _countApi As Integer + Private _countApiReply As Integer + Private _browserpath As String + 'Private _MyCheckReply As Boolean + Private _MyUseRecommendStatus As Boolean + Private _MyDispUsername As Boolean + Private _MyDispLatestPost As DispTitleEnum + Private _MySortOrderLock As Boolean + Private _MyMinimizeToTray As Boolean + Private _MyCloseToExit As Boolean + Private _MyTinyUrlResolve As Boolean + Private _MyProxyType As HttpConnection.ProxyType + Private _MyProxyAddress As String + Private _MyProxyPort As Integer + Private _MyProxyUser As String + Private _MyProxyPassword As String + Private _MyMaxPostNum As Integer + Private _MyPeriodAdjust As Boolean + Private _MyStartupVersion As Boolean + Private _MyStartupFollowers As Boolean + Private _MyRestrictFavCheck As Boolean + Private _MyAlwaysTop As Boolean + Private _MyUrlConvertAuto As Boolean + Private _MyOutputz As Boolean + Private _MyOutputzKey As String + Private _MyOutputzUrlmode As OutputzUrlmode + Private _MyNicoms As Boolean + Private _MyUnreadStyle As Boolean + Private _MyDateTimeFormat As String + Private _MyDefaultTimeOut As Integer + 'Private _MyProtectNotInclude As Boolean + Private _MyLimitBalloon As Boolean + Private _MyPostAndGet As Boolean + Private _MyReplyPeriod As Integer + Private _MyAutoShortUrlFirst As UrlConverter + Private _MyTabIconDisp As Boolean + Private _MyReplyIconState As REPLY_ICONSTATE + Private _MyReadOwnPost As Boolean + Private _MyGetFav As Boolean + Private _MyMonoSpace As Boolean + Private _MyReadOldPosts As Boolean + Private _MyUseSsl As Boolean + Private _MyBitlyId As String + Private _MyBitlyPw As String + Private _MyShowGrid As Boolean + Private _MyUseAtIdSupplement As Boolean + Private _MyUseHashSupplement As Boolean + Private _MyLanguage As String + Private _MyIsOAuth As Boolean + Private _MyTwitterApiUrl As String + Private _MyTwitterSearchApiUrl As String + Private _MyPreviewEnable As Boolean + Private _MoreCountApi As Integer + Private _FirstCountApi As Integer + Private _MyUseAdditonalCount As Boolean + Private _SearchCountApi As Integer + Private _FavoritesCountApi As Integer + Private _MyRetweetNoConfirm As Boolean + Private _MyUserstreamStartup As Boolean + Private _MyUserstreamPeriod As Integer + + Private _ValidationError As Boolean = False + + Private _curPanel As Panel = Nothing + Private Sub TreeView1_AfterSelect(ByVal sender As System.Object, ByVal e As System.Windows.Forms.TreeViewEventArgs) Handles TreeView1.AfterSelect + Dim NodeName As String = TreeView1.SelectedNode.Name + If _curPanel IsNot Nothing Then + _curPanel.Enabled = False + _curPanel.Visible = False + _curPanel = Nothing + End If + Select Case NodeName + Case "BasedNode" + _curPanel = BasedPanel + Case "PeriodNode" + _curPanel = GetPeriodPanel + Case "StartUpNode" + _curPanel = StartupPanel + Case "GetCountNode" + _curPanel = GetCountPanel + Case "UserStreamNode" + _curPanel = UserStreamPanel + Case "ActionNode" + _curPanel = ActionPanel + Case "TweetActNode" + _curPanel = TweetActPanel + Case "PreviewNode" + _curPanel = PreviewPanel + Case "TweetPrvNode" + _curPanel = TweetPrvPanel + Case "FontNode" + _curPanel = FontPanel + Case "FontNode2" + _curPanel = FontPanel2 + Case "ConnectionNode" + _curPanel = ConnectionPanel + Case "ProxyNode" + _curPanel = ProxyPanel + End Select + _curPanel.Enabled = True + _curPanel.Visible = True + End Sub + + Private Sub Save_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Save.Click + If TweenMain.IsNetworkAvailable() AndAlso _ + (ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Bitly OrElse ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Jmp) AndAlso _ + (Not String.IsNullOrEmpty(TextBitlyId.Text) OrElse Not String.IsNullOrEmpty(TextBitlyPw.Text)) Then + If Not BitlyValidation(TextBitlyId.Text, TextBitlyPw.Text) Then + MessageBox.Show(My.Resources.SettingSave_ClickText1) + _ValidationError = True + TreeView1.SelectedNode.Name = "TweetActNode" ' 動作タブを選択 + TextBitlyId.Focus() + Exit Sub + Else + _ValidationError = False + End If + Else + _ValidationError = False + End If + Try + _MyUserstreamPeriod = CType(Me.UserstreamPeriod.Text, Integer) + _MyUserstreamStartup = Me.StartupUserstreamCheck.Checked + _MyIsOAuth = AuthOAuthRadio.Checked + _MytimelinePeriod = CType(TimelinePeriod.Text, Integer) + _MyDMPeriod = CType(DMPeriod.Text, Integer) + _MyPubSearchPeriod = CType(PubSearchPeriod.Text, Integer) + _MyListsPeriod = CType(ListsPeriod.Text, Integer) + _MyReplyPeriod = CType(ReplyPeriod.Text, Integer) + _MyMaxPostNum = 125 + + _MyReaded = StartupReaded.Checked + Select Case IconSize.SelectedIndex + Case 0 + _MyIconSize = IconSizes.IconNone + Case 1 + _MyIconSize = IconSizes.Icon16 + Case 2 + _MyIconSize = IconSizes.Icon24 + Case 3 + _MyIconSize = IconSizes.Icon48 + Case 4 + _MyIconSize = IconSizes.Icon48_2 + End Select + _MyStatusText = StatusText.Text + _MyPlaySound = PlaySnd.Checked + _MyUnreadManage = UReadMng.Checked + _MyOneWayLove = OneWayLv.Checked + + _fntUnread = lblUnread.Font '未使用 + _clUnread = lblUnread.ForeColor + _fntReaded = lblListFont.Font 'リストフォントとして使用 + _clReaded = lblListFont.ForeColor + _clFav = lblFav.ForeColor + _clOWL = lblOWL.ForeColor + _clRetweet = lblRetweet.ForeColor + _fntDetail = lblDetail.Font + _clSelf = lblSelf.BackColor + _clAtSelf = lblAtSelf.BackColor + _clTarget = lblTarget.BackColor + _clAtTarget = lblAtTarget.BackColor + _clAtFromTarget = lblAtFromTarget.BackColor + _clAtTo = lblAtTo.BackColor + _clInputBackcolor = lblInputBackcolor.BackColor + _clInputFont = lblInputFont.ForeColor + _clListBackcolor = lblListBackcolor.BackColor + _clDetailBackcolor = lblDetailBackcolor.BackColor + _clDetail = lblDetail.ForeColor + _clDetailLink = lblDetailLink.ForeColor + _fntInputFont = lblInputFont.Font + Select Case cmbNameBalloon.SelectedIndex + Case 0 + _MyNameBalloon = NameBalloonEnum.None + Case 1 + _MyNameBalloon = NameBalloonEnum.UserID + Case 2 + _MyNameBalloon = NameBalloonEnum.NickName + End Select + '_MyPostCtrlEnter = CheckPostCtrlEnter.Checked + '_MyPostShiftEnter = CheckPostShiftEnter.Checked + If ComboBoxPostKeySelect.SelectedIndex = 2 Then + _MyPostShiftEnter = True + _MyPostCtrlEnter = False + ElseIf ComboBoxPostKeySelect.SelectedIndex = 1 Then + _MyPostCtrlEnter = True + _MyPostShiftEnter = False + Else + _MyPostCtrlEnter = False + _MyPostShiftEnter = False + End If + _usePostMethod = False + _countApi = CType(TextCountApi.Text, Integer) + _countApiReply = CType(TextCountApiReply.Text, Integer) + _browserpath = BrowserPathText.Text.Trim + '_MyCheckReply = CheckboxReply.Checked + _MyPostAndGet = CheckPostAndGet.Checked + _MyUseRecommendStatus = CheckUseRecommendStatus.Checked + _MyDispUsername = CheckDispUsername.Checked + _MyCloseToExit = CheckCloseToExit.Checked + _MyMinimizeToTray = CheckMinimizeToTray.Checked + Select Case ComboDispTitle.SelectedIndex + Case 0 'None + _MyDispLatestPost = DispTitleEnum.None + Case 1 'Ver + _MyDispLatestPost = DispTitleEnum.Ver + Case 2 'Post + _MyDispLatestPost = DispTitleEnum.Post + Case 3 'RepCount + _MyDispLatestPost = DispTitleEnum.UnreadRepCount + Case 4 'AllCount + _MyDispLatestPost = DispTitleEnum.UnreadAllCount + Case 5 'Rep+All + _MyDispLatestPost = DispTitleEnum.UnreadAllRepCount + Case 6 'Unread/All + _MyDispLatestPost = DispTitleEnum.UnreadCountAllCount + Case 7 'Count of Status/Follow/Follower + _MyDispLatestPost = DispTitleEnum.OwnStatus + End Select + _MySortOrderLock = CheckSortOrderLock.Checked + _MyTinyUrlResolve = CheckTinyURL.Checked + ShortUrl.IsResolve = _MyTinyUrlResolve + If RadioProxyNone.Checked Then + _MyProxyType = HttpConnection.ProxyType.None + ElseIf RadioProxyIE.Checked Then + _MyProxyType = HttpConnection.ProxyType.IE + Else + _MyProxyType = HttpConnection.ProxyType.Specified + End If + _MyProxyAddress = TextProxyAddress.Text.Trim() + _MyProxyPort = Integer.Parse(TextProxyPort.Text.Trim()) + _MyProxyUser = TextProxyUser.Text.Trim() + _MyProxyPassword = TextProxyPassword.Text.Trim() + _MyPeriodAdjust = CheckPeriodAdjust.Checked + _MyStartupVersion = CheckStartupVersion.Checked + _MyStartupFollowers = CheckStartupFollowers.Checked + _MyRestrictFavCheck = CheckFavRestrict.Checked + _MyAlwaysTop = CheckAlwaysTop.Checked + _MyUrlConvertAuto = CheckAutoConvertUrl.Checked + _MyOutputz = CheckOutputz.Checked + _MyOutputzKey = TextBoxOutputzKey.Text.Trim() + + Select Case ComboBoxOutputzUrlmode.SelectedIndex + Case 0 + _MyOutputzUrlmode = OutputzUrlmode.twittercom + Case 1 + _MyOutputzUrlmode = OutputzUrlmode.twittercomWithUsername + End Select + + _MyNicoms = CheckNicoms.Checked + _MyUnreadStyle = chkUnreadStyle.Checked + _MyDateTimeFormat = CmbDateTimeFormat.Text + _MyDefaultTimeOut = CType(ConnectionTimeOut.Text, Integer) + '_MyProtectNotInclude = CheckProtectNotInclude.Checked + _MyRetweetNoConfirm = CheckRetweetNoConfirm.Checked + _MyLimitBalloon = CheckBalloonLimit.Checked + _MyAutoShortUrlFirst = CType(ComboBoxAutoShortUrlFirst.SelectedIndex, UrlConverter) + _MyTabIconDisp = chkTabIconDisp.Checked + _MyReadOwnPost = chkReadOwnPost.Checked + _MyGetFav = chkGetFav.Checked + _MyMonoSpace = CheckMonospace.Checked + _MyReadOldPosts = CheckReadOldPosts.Checked + _MyUseSsl = CheckUseSsl.Checked + _MyBitlyId = TextBitlyId.Text + _MyBitlyPw = TextBitlyPw.Text + _MyShowGrid = CheckShowGrid.Checked + _MyUseAtIdSupplement = CheckAtIdSupple.Checked + _MyUseHashSupplement = CheckHashSupple.Checked + _MyPreviewEnable = CheckPreviewEnable.Checked + _MyTwitterApiUrl = TwitterAPIText.Text.Trim + _MyTwitterSearchApiUrl = TwitterSearchAPIText.Text.Trim + Select Case ReplyIconStateCombo.SelectedIndex + Case 0 + _MyReplyIconState = REPLY_ICONSTATE.None + Case 1 + _MyReplyIconState = REPLY_ICONSTATE.StaticIcon + Case 2 + _MyReplyIconState = REPLY_ICONSTATE.BlinkIcon + End Select + Select Case LanguageCombo.SelectedIndex + Case 0 + _MyLanguage = "OS" + Case 1 + _MyLanguage = "ja" + Case 2 + _MyLanguage = "en" + Case 3 + _MyLanguage = "zh-CN" + Case Else + _MyLanguage = "en" + End Select + _HotkeyEnabled = Me.HotkeyCheck.Checked + _HotkeyMod = Keys.None + If Me.HotkeyAlt.Checked Then _HotkeyMod = _HotkeyMod Or Keys.Alt + If Me.HotkeyShift.Checked Then _HotkeyMod = _HotkeyMod Or Keys.Shift + If Me.HotkeyCtrl.Checked Then _HotkeyMod = _HotkeyMod Or Keys.Control + If Me.HotkeyWin.Checked Then _HotkeyMod = _HotkeyMod Or Keys.LWin + If IsNumeric(HotkeyCode.Text) Then _HotkeyValue = CInt(HotkeyCode.Text) + _HotkeyKey = DirectCast(HotkeyText.Tag, Keys) + _BlinkNewMentions = ChkNewMentionsBlink.Checked + _MyUseAdditonalCount = UseChangeGetCount.Checked + _MoreCountApi = CType(GetMoreTextCountApi.Text, Integer) + _FirstCountApi = CType(FirstTextCountApi.Text, Integer) + _SearchCountApi = CType(SearchTextCountApi.Text, Integer) + _FavoritesCountApi = CType(FavoritesTextCountApi.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.Save_ClickText3) + Me.DialogResult = Windows.Forms.DialogResult.Cancel + Exit Sub + End Try + End Sub + + Private Sub Setting_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) + If tw IsNot Nothing AndAlso tw.Username = "" AndAlso e.CloseReason = CloseReason.None Then + If MessageBox.Show(My.Resources.Setting_FormClosing1, "Confirm", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) = Windows.Forms.DialogResult.Cancel Then + e.Cancel = True + End If + End If + If _ValidationError Then + e.Cancel = True + End If + End Sub + + Private Sub Setting_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load + tw = DirectCast(Me.Owner, TweenMain).TwitterInstance + Dim uname As String = tw.Username + Dim pw As String = tw.Password + Dim tk As String = tw.AccessToken + Dim tks As String = tw.AccessTokenSecret + If Not Me._MyIsOAuth Then + 'BASIC認証時のみ表示 + Me.AuthStateLabel.Enabled = False + Me.AuthUserLabel.Enabled = False + Me.AuthClearButton.Enabled = False + Me.AuthOAuthRadio.Checked = False + Me.AuthBasicRadio.Checked = True + Me.CheckEnableBasicAuth.Checked = True + Me.AuthBasicRadio.Enabled = True + tw.Initialize(uname, pw) + Else + Me.AuthStateLabel.Enabled = True + Me.AuthUserLabel.Enabled = True + Me.AuthClearButton.Enabled = True + Me.AuthOAuthRadio.Checked = True + Me.AuthBasicRadio.Checked = False + tw.Initialize(tk, tks, uname) + End If + + Username.Text = uname + Password.Text = pw + If tw.Username = "" Then + Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 + Me.AuthUserLabel.Text = "" + Else + Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click3 + Me.AuthUserLabel.Text = tw.Username + End If + + Me.StartupUserstreamCheck.Checked = _MyUserstreamStartup + Me.UserstreamPeriod.Text = _MyUserstreamPeriod.ToString() + TimelinePeriod.Text = _MytimelinePeriod.ToString() + ReplyPeriod.Text = _MyReplyPeriod.ToString() + DMPeriod.Text = _MyDMPeriod.ToString() + PubSearchPeriod.Text = _MyPubSearchPeriod.ToString() + ListsPeriod.Text = _MyListsPeriod.ToString() + + StartupReaded.Checked = _MyReaded + Select Case _MyIconSize + Case IconSizes.IconNone + IconSize.SelectedIndex = 0 + Case IconSizes.Icon16 + IconSize.SelectedIndex = 1 + Case IconSizes.Icon24 + IconSize.SelectedIndex = 2 + Case IconSizes.Icon48 + IconSize.SelectedIndex = 3 + Case IconSizes.Icon48_2 + IconSize.SelectedIndex = 4 + End Select + StatusText.Text = _MyStatusText + UReadMng.Checked = _MyUnreadManage + If _MyUnreadManage = False Then + StartupReaded.Enabled = False + Else + StartupReaded.Enabled = True + End If + PlaySnd.Checked = _MyPlaySound + OneWayLv.Checked = _MyOneWayLove + + lblListFont.Font = _fntReaded + lblUnread.Font = _fntUnread + lblUnread.ForeColor = _clUnread + lblListFont.ForeColor = _clReaded + lblFav.ForeColor = _clFav + lblOWL.ForeColor = _clOWL + lblRetweet.ForeColor = _clRetweet + lblDetail.Font = _fntDetail + lblSelf.BackColor = _clSelf + lblAtSelf.BackColor = _clAtSelf + lblTarget.BackColor = _clTarget + lblAtTarget.BackColor = _clAtTarget + lblAtFromTarget.BackColor = _clAtFromTarget + lblAtTo.BackColor = _clAtTo + lblInputBackcolor.BackColor = _clInputBackcolor + lblInputFont.ForeColor = _clInputFont + lblInputFont.Font = _fntInputFont + lblListBackcolor.BackColor = _clListBackcolor + lblDetailBackcolor.BackColor = _clDetailBackcolor + lblDetail.ForeColor = _clDetail + lblDetailLink.ForeColor = _clDetailLink + + Select Case _MyNameBalloon + Case NameBalloonEnum.None + cmbNameBalloon.SelectedIndex = 0 + Case NameBalloonEnum.UserID + cmbNameBalloon.SelectedIndex = 1 + Case NameBalloonEnum.NickName + cmbNameBalloon.SelectedIndex = 2 + End Select + + If _MyPostCtrlEnter Then + ComboBoxPostKeySelect.SelectedIndex = 1 + Else + If _MyPostShiftEnter Then + ComboBoxPostKeySelect.SelectedIndex = 2 + Else + ComboBoxPostKeySelect.SelectedIndex = 0 + End If + End If + + TextCountApi.Text = _countApi.ToString + TextCountApiReply.Text = _countApiReply.ToString + BrowserPathText.Text = _browserpath + 'CheckboxReply.Checked = _MyCheckReply + CheckPostAndGet.Checked = _MyPostAndGet + CheckUseRecommendStatus.Checked = _MyUseRecommendStatus + CheckDispUsername.Checked = _MyDispUsername + CheckCloseToExit.Checked = _MyCloseToExit + CheckMinimizeToTray.Checked = _MyMinimizeToTray + Select Case _MyDispLatestPost + Case DispTitleEnum.None + ComboDispTitle.SelectedIndex = 0 + Case DispTitleEnum.Ver + ComboDispTitle.SelectedIndex = 1 + Case DispTitleEnum.Post + ComboDispTitle.SelectedIndex = 2 + Case DispTitleEnum.UnreadRepCount + ComboDispTitle.SelectedIndex = 3 + Case DispTitleEnum.UnreadAllCount + ComboDispTitle.SelectedIndex = 4 + Case DispTitleEnum.UnreadAllRepCount + ComboDispTitle.SelectedIndex = 5 + Case DispTitleEnum.UnreadCountAllCount + ComboDispTitle.SelectedIndex = 6 + Case DispTitleEnum.OwnStatus + ComboDispTitle.SelectedIndex = 7 + End Select + CheckSortOrderLock.Checked = _MySortOrderLock + CheckTinyURL.Checked = _MyTinyUrlResolve + Select Case _MyProxyType + Case HttpConnection.ProxyType.None + RadioProxyNone.Checked = True + Case HttpConnection.ProxyType.IE + RadioProxyIE.Checked = True + Case Else + RadioProxySpecified.Checked = True + End Select + Dim chk As Boolean = RadioProxySpecified.Checked + LabelProxyAddress.Enabled = chk + TextProxyAddress.Enabled = chk + LabelProxyPort.Enabled = chk + TextProxyPort.Enabled = chk + LabelProxyUser.Enabled = chk + TextProxyUser.Enabled = chk + LabelProxyPassword.Enabled = chk + TextProxyPassword.Enabled = chk + + TextProxyAddress.Text = _MyProxyAddress + TextProxyPort.Text = _MyProxyPort.ToString + TextProxyUser.Text = _MyProxyUser + TextProxyPassword.Text = _MyProxyPassword + + CheckPeriodAdjust.Checked = _MyPeriodAdjust + CheckStartupVersion.Checked = _MyStartupVersion + CheckStartupFollowers.Checked = _MyStartupFollowers + CheckFavRestrict.Checked = _MyRestrictFavCheck + CheckAlwaysTop.Checked = _MyAlwaysTop + CheckAutoConvertUrl.Checked = _MyUrlConvertAuto + CheckOutputz.Checked = _MyOutputz + TextBoxOutputzKey.Text = _MyOutputzKey + + Select Case _MyOutputzUrlmode + Case OutputzUrlmode.twittercom + ComboBoxOutputzUrlmode.SelectedIndex = 0 + Case OutputzUrlmode.twittercomWithUsername + ComboBoxOutputzUrlmode.SelectedIndex = 1 + End Select + + CheckNicoms.Checked = _MyNicoms + chkUnreadStyle.Checked = _MyUnreadStyle + CmbDateTimeFormat.Text = _MyDateTimeFormat + ConnectionTimeOut.Text = _MyDefaultTimeOut.ToString + 'CheckProtectNotInclude.Checked = _MyProtectNotInclude + CheckRetweetNoConfirm.Checked = _MyRetweetNoConfirm + CheckBalloonLimit.Checked = _MyLimitBalloon + ComboBoxAutoShortUrlFirst.SelectedIndex = _MyAutoShortUrlFirst + chkTabIconDisp.Checked = _MyTabIconDisp + chkReadOwnPost.Checked = _MyReadOwnPost + chkGetFav.Checked = _MyGetFav + CheckMonospace.Checked = _MyMonoSpace + CheckReadOldPosts.Checked = _MyReadOldPosts + CheckUseSsl.Checked = _MyUseSsl + TextBitlyId.Text = _MyBitlyId + TextBitlyPw.Text = _MyBitlyPw + TextBitlyId.Modified = False + TextBitlyPw.Modified = False + CheckShowGrid.Checked = _MyShowGrid + CheckAtIdSupple.Checked = _MyUseAtIdSupplement + CheckHashSupple.Checked = _MyUseHashSupplement + CheckPreviewEnable.Checked = _MyPreviewEnable + TwitterAPIText.Text = _MyTwitterApiUrl + TwitterSearchAPIText.Text = _MyTwitterSearchApiUrl + Select Case _MyReplyIconState + Case REPLY_ICONSTATE.None + ReplyIconStateCombo.SelectedIndex = 0 + Case REPLY_ICONSTATE.StaticIcon + ReplyIconStateCombo.SelectedIndex = 1 + Case REPLY_ICONSTATE.BlinkIcon + ReplyIconStateCombo.SelectedIndex = 2 + End Select + Select Case _MyLanguage + Case "OS" + LanguageCombo.SelectedIndex = 0 + Case "ja" + LanguageCombo.SelectedIndex = 1 + Case "en" + LanguageCombo.SelectedIndex = 2 + Case "zh-CN" + LanguageCombo.SelectedIndex = 3 + Case Else + LanguageCombo.SelectedIndex = 0 + End Select + HotkeyCheck.Checked = _HotkeyEnabled + HotkeyAlt.Checked = ((_HotkeyMod And Keys.Alt) = Keys.Alt) + HotkeyCtrl.Checked = ((_HotkeyMod And Keys.Control) = Keys.Control) + HotkeyShift.Checked = ((_HotkeyMod And Keys.Shift) = Keys.Shift) + HotkeyWin.Checked = ((_HotkeyMod And Keys.LWin) = Keys.LWin) + HotkeyCode.Text = _HotkeyValue.ToString + HotkeyText.Text = _HotkeyKey.ToString + HotkeyText.Tag = _HotkeyKey + HotkeyAlt.Enabled = HotkeyEnabled + HotkeyShift.Enabled = HotkeyEnabled + HotkeyCtrl.Enabled = HotkeyEnabled + HotkeyWin.Enabled = HotkeyEnabled + HotkeyText.Enabled = HotkeyEnabled + HotkeyCode.Enabled = HotkeyEnabled + ChkNewMentionsBlink.Checked = _BlinkNewMentions + + TreeView1.SelectedNode = TreeView1.Nodes(0) + ActiveControl = Username + + CheckOutputz_CheckedChanged(sender, e) + + GetMoreTextCountApi.Text = _MoreCountApi.ToString + FirstTextCountApi.Text = _FirstCountApi.ToString + SearchTextCountApi.Text = _SearchCountApi.ToString + FavoritesTextCountApi.Text = _FavoritesCountApi.ToString + UseChangeGetCount.Checked = _MyUseAdditonalCount + Label28.Enabled = UseChangeGetCount.Checked + Label30.Enabled = UseChangeGetCount.Checked + Label53.Enabled = UseChangeGetCount.Checked + Label66.Enabled = UseChangeGetCount.Checked + GetMoreTextCountApi.Enabled = UseChangeGetCount.Checked + FirstTextCountApi.Enabled = UseChangeGetCount.Checked + SearchTextCountApi.Enabled = UseChangeGetCount.Checked + FavoritesTextCountApi.Enabled = UseChangeGetCount.Checked + End Sub + + Private Sub UserstreamPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Dim prd As Integer + Try + prd = CType(UserstreamPeriod.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.UserstreamPeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If prd < 0 OrElse prd > 60 Then + MessageBox.Show(My.Resources.UserstreamPeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End If + CalcApiUsing() + End Sub + + Private Sub TimelinePeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Dim prd As Integer + Try + prd = CType(TimelinePeriod.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then + MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText2) + e.Cancel = True + Exit Sub + End If + CalcApiUsing() + End Sub + + Private Sub ReplyPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Dim prd As Integer + Try + prd = CType(ReplyPeriod.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then + MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText2) + e.Cancel = True + Exit Sub + End If + CalcApiUsing() + End Sub + + Private Sub DMPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Dim prd As Integer + Try + prd = CType(DMPeriod.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.DMPeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then + MessageBox.Show(My.Resources.DMPeriod_ValidatingText2) + e.Cancel = True + Exit Sub + End If + CalcApiUsing() + End Sub + + Private Sub PubSearchPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Dim prd As Integer + Try + prd = CType(PubSearchPeriod.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.PubSearchPeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If prd <> 0 AndAlso (prd < 30 OrElse prd > 6000) Then + MessageBox.Show(My.Resources.PubSearchPeriod_ValidatingText2) + e.Cancel = True + End If + End Sub + + Private Sub ListsPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Dim prd As Integer + Try + prd = CType(ListsPeriod.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.DMPeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then + MessageBox.Show(My.Resources.DMPeriod_ValidatingText2) + e.Cancel = True + Exit Sub + End If + CalcApiUsing() + End Sub + + Private Sub UReadMng_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) + If UReadMng.Checked = True Then + StartupReaded.Enabled = True + Else + StartupReaded.Enabled = False + End If + End Sub + + Private Sub btnFontAndColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnInputFont.Click + Dim Btn As Button = CType(sender, Button) + Dim rtn As DialogResult + + FontDialog1.AllowVerticalFonts = False + FontDialog1.AllowScriptChange = True + FontDialog1.AllowSimulations = True + FontDialog1.AllowVectorFonts = True + FontDialog1.FixedPitchOnly = False + FontDialog1.FontMustExist = True + FontDialog1.ScriptsOnly = False + FontDialog1.ShowApply = False + FontDialog1.ShowEffects = True + FontDialog1.ShowColor = True + + Select Case Btn.Name + Case "btnUnread" + FontDialog1.Color = lblUnread.ForeColor + FontDialog1.Font = lblUnread.Font + Case "btnDetail" + FontDialog1.Color = lblDetail.ForeColor + FontDialog1.Font = lblDetail.Font + Case "btnListFont" + FontDialog1.Color = lblListFont.ForeColor + FontDialog1.Font = lblListFont.Font + Case "btnInputFont" + FontDialog1.Color = lblInputFont.ForeColor + FontDialog1.Font = lblInputFont.Font + End Select + + Try + rtn = FontDialog1.ShowDialog + Catch ex As ArgumentException + MessageBox.Show(ex.Message) + Exit Sub + End Try + + If rtn = Windows.Forms.DialogResult.Cancel Then Exit Sub + + Select Case Btn.Name + Case "btnUnread" + lblUnread.ForeColor = FontDialog1.Color + lblUnread.Font = FontDialog1.Font + Case "btnDetail" + lblDetail.ForeColor = FontDialog1.Color + lblDetail.Font = FontDialog1.Font + Case "btnListFont" + lblListFont.ForeColor = FontDialog1.Color + lblListFont.Font = FontDialog1.Font + Case "btnInputFont" + lblInputFont.ForeColor = FontDialog1.Color + lblInputFont.Font = FontDialog1.Font + End Select + + End Sub + + Private Sub btnColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSelf.Click, btnAtSelf.Click, btnTarget.Click, btnAtTarget.Click, btnAtFromTarget.Click, btnFav.Click, btnOWL.Click, btnInputBackcolor.Click, btnAtTo.Click, btnListBack.Click, btnDetailBack.Click, btnDetailLink.Click, btnRetweet.Click + Dim Btn As Button = CType(sender, Button) + Dim rtn As DialogResult + + ColorDialog1.AllowFullOpen = True + ColorDialog1.AnyColor = True + ColorDialog1.FullOpen = False + ColorDialog1.SolidColorOnly = False + + Select Case Btn.Name + Case "btnSelf" + ColorDialog1.Color = lblSelf.BackColor + Case "btnAtSelf" + ColorDialog1.Color = lblAtSelf.BackColor + Case "btnTarget" + ColorDialog1.Color = lblTarget.BackColor + Case "btnAtTarget" + ColorDialog1.Color = lblAtTarget.BackColor + Case "btnAtFromTarget" + ColorDialog1.Color = lblAtFromTarget.BackColor + Case "btnFav" + ColorDialog1.Color = lblFav.ForeColor + Case "btnOWL" + ColorDialog1.Color = lblOWL.ForeColor + Case "btnRetweet" + ColorDialog1.Color = lblRetweet.ForeColor + Case "btnInputBackcolor" + ColorDialog1.Color = lblInputBackcolor.BackColor + Case "btnAtTo" + ColorDialog1.Color = lblAtTo.BackColor + Case "btnListBack" + ColorDialog1.Color = lblListBackcolor.BackColor + Case "btnDetailBack" + ColorDialog1.Color = lblDetailBackcolor.BackColor + Case "btnDetailLink" + ColorDialog1.Color = lblDetailLink.ForeColor + End Select + + rtn = ColorDialog1.ShowDialog + + If rtn = Windows.Forms.DialogResult.Cancel Then Exit Sub + + Select Case Btn.Name + Case "btnSelf" + lblSelf.BackColor = ColorDialog1.Color + Case "btnAtSelf" + lblAtSelf.BackColor = ColorDialog1.Color + Case "btnTarget" + lblTarget.BackColor = ColorDialog1.Color + Case "btnAtTarget" + lblAtTarget.BackColor = ColorDialog1.Color + Case "btnAtFromTarget" + lblAtFromTarget.BackColor = ColorDialog1.Color + Case "btnFav" + lblFav.ForeColor = ColorDialog1.Color + Case "btnOWL" + lblOWL.ForeColor = ColorDialog1.Color + Case "btnRetweet" + lblRetweet.ForeColor = ColorDialog1.Color + Case "btnInputBackcolor" + lblInputBackcolor.BackColor = ColorDialog1.Color + Case "btnAtTo" + lblAtTo.BackColor = ColorDialog1.Color + Case "btnListBack" + lblListBackcolor.BackColor = ColorDialog1.Color + Case "btnDetailBack" + lblDetailBackcolor.BackColor = ColorDialog1.Color + Case "btnDetailLink" + lblDetailLink.ForeColor = ColorDialog1.Color + End Select + End Sub + + Public Property UserstreamPeriodInt() As Integer + Get + Return _MyUserstreamPeriod + End Get + Set(ByVal value As Integer) + _MyUserstreamPeriod = value + End Set + End Property + + Public Property UserstreamStartup() As Boolean + Get + Return Me._MyUserstreamStartup + End Get + Set(ByVal value As Boolean) + Me._MyUserstreamStartup = value + End Set + End Property + + Public Property TimelinePeriodInt() As Integer + Get + Return _MytimelinePeriod + End Get + Set(ByVal value As Integer) + _MytimelinePeriod = value + End Set + End Property + + Public Property ReplyPeriodInt() As Integer + Get + Return _MyReplyPeriod + End Get + Set(ByVal value As Integer) + _MyReplyPeriod = value + End Set + End Property + + Public Property DMPeriodInt() As Integer + Get + Return _MyDMPeriod + End Get + Set(ByVal value As Integer) + _MyDMPeriod = value + End Set + End Property + + Public Property PubSearchPeriodInt() As Integer + Get + Return _MyPubSearchPeriod + End Get + Set(ByVal value As Integer) + _MyPubSearchPeriod = value + End Set + End Property + + Public Property ListsPeriodInt() As Integer + Get + Return _MyListsPeriod + End Get + Set(ByVal value As Integer) + _MyListsPeriod = value + End Set + End Property + + Public Property Readed() As Boolean + Get + Return _MyReaded + End Get + Set(ByVal value As Boolean) + _MyReaded = value + End Set + End Property + + Public Property IconSz() As IconSizes + Get + Return _MyIconSize + End Get + Set(ByVal value As IconSizes) + _MyIconSize = value + End Set + End Property + + Public Property Status() As String + Get + Return _MyStatusText + End Get + Set(ByVal value As String) + _MyStatusText = value + End Set + End Property + + Public Property UnreadManage() As Boolean + Get + Return _MyUnreadManage + End Get + Set(ByVal value As Boolean) + _MyUnreadManage = value + End Set + End Property + + Public Property PlaySound() As Boolean + Get + Return _MyPlaySound + End Get + Set(ByVal value As Boolean) + _MyPlaySound = value + End Set + End Property + + Public Property OneWayLove() As Boolean + Get + Return _MyOneWayLove + End Get + Set(ByVal value As Boolean) + _MyOneWayLove = value + End Set + End Property + + '''''未使用 + Public Property FontUnread() As Font + Get + Return _fntUnread + End Get + Set(ByVal value As Font) + _fntUnread = value + '無視 + End Set + End Property + + Public Property ColorUnread() As Color + Get + Return _clUnread + End Get + Set(ByVal value As Color) + _clUnread = value + End Set + End Property + + '''''リストフォントとして使用 + Public Property FontReaded() As Font + Get + Return _fntReaded + End Get + Set(ByVal value As Font) + _fntReaded = value + End Set + End Property + + Public Property ColorReaded() As Color + Get + Return _clReaded + End Get + Set(ByVal value As Color) + _clReaded = value + End Set + End Property + + Public Property ColorFav() As Color + Get + Return _clFav + End Get + Set(ByVal value As Color) + _clFav = value + End Set + End Property + + Public Property ColorOWL() As Color + Get + Return _clOWL + End Get + Set(ByVal value As Color) + _clOWL = value + End Set + End Property + + Public Property ColorRetweet() As Color + Get + Return _clRetweet + End Get + Set(ByVal value As Color) + _clRetweet = value + End Set + End Property + + Public Property FontDetail() As Font + Get + Return _fntDetail + End Get + Set(ByVal value As Font) + _fntDetail = value + End Set + End Property + + Public Property ColorDetail() As Color + Get + Return _clDetail + End Get + Set(ByVal value As Color) + _clDetail = value + End Set + End Property + + Public Property ColorDetailLink() As Color + Get + Return _clDetailLink + End Get + Set(ByVal value As Color) + _clDetailLink = value + End Set + End Property + + Public Property ColorSelf() As Color + Get + Return _clSelf + End Get + Set(ByVal value As Color) + _clSelf = value + End Set + End Property + + Public Property ColorAtSelf() As Color + Get + Return _clAtSelf + End Get + Set(ByVal value As Color) + _clAtSelf = value + End Set + End Property + + Public Property ColorTarget() As Color + Get + Return _clTarget + End Get + Set(ByVal value As Color) + _clTarget = value + End Set + End Property + + Public Property ColorAtTarget() As Color + Get + Return _clAtTarget + End Get + Set(ByVal value As Color) + _clAtTarget = value + End Set + End Property + + Public Property ColorAtFromTarget() As Color + Get + Return _clAtFromTarget + End Get + Set(ByVal value As Color) + _clAtFromTarget = value + End Set + End Property + + Public Property ColorAtTo() As Color + Get + Return _clAtTo + End Get + Set(ByVal value As Color) + _clAtTo = value + End Set + End Property + + Public Property ColorInputBackcolor() As Color + Get + Return _clInputBackcolor + End Get + Set(ByVal value As Color) + _clInputBackcolor = value + End Set + End Property + + Public Property ColorInputFont() As Color + Get + Return _clInputFont + End Get + Set(ByVal value As Color) + _clInputFont = value + End Set + End Property + + Public Property FontInputFont() As Font + Get + Return _fntInputFont + End Get + Set(ByVal value As Font) + _fntInputFont = value + End Set + End Property + + Public Property ColorListBackcolor() As Color + Get + Return _clListBackcolor + End Get + Set(ByVal value As Color) + _clListBackcolor = value + End Set + End Property + + Public Property ColorDetailBackcolor() As Color + Get + Return _clDetailBackcolor + End Get + Set(ByVal value As Color) + _clDetailBackcolor = value + End Set + End Property + + Public Property NameBalloon() As NameBalloonEnum + Get + Return _MyNameBalloon + End Get + Set(ByVal value As NameBalloonEnum) + _MyNameBalloon = value + End Set + End Property + + Public Property PostCtrlEnter() As Boolean + Get + Return _MyPostCtrlEnter + End Get + Set(ByVal value As Boolean) + _MyPostCtrlEnter = value + End Set + End Property + + Public Property PostShiftEnter() As Boolean + Get + Return _MyPostShiftEnter + End Get + Set(ByVal value As Boolean) + _MyPostShiftEnter = value + End Set + End Property + + Public Property CountApi() As Integer + Get + Return _countApi + End Get + Set(ByVal value As Integer) + _countApi = value + End Set + End Property + + Public Property CountApiReply() As Integer + Get + Return _countApiReply + End Get + Set(ByVal value As Integer) + _countApiReply = value + End Set + End Property + + Public Property MoreCountApi() As Integer + Get + Return _MoreCountApi + End Get + Set(ByVal value As Integer) + _MoreCountApi = value + End Set + End Property + + Public Property FirstCountApi() As Integer + Get + Return _FirstCountApi + End Get + Set(ByVal value As Integer) + _FirstCountApi = value + End Set + End Property + + Public Property SearchCountApi() As Integer + Get + Return _SearchCountApi + End Get + Set(ByVal value As Integer) + _SearchCountApi = value + End Set + End Property + + Public Property FavoritesCountApi() As Integer + Get + Return _FavoritesCountApi + End Get + Set(ByVal value As Integer) + _FavoritesCountApi = value + End Set + End Property + + Public Property PostAndGet() As Boolean + Get + Return _MyPostAndGet + End Get + Set(ByVal value As Boolean) + _MyPostAndGet = value + End Set + End Property + + Public Property UseRecommendStatus() As Boolean + Get + Return _MyUseRecommendStatus + End Get + Set(ByVal value As Boolean) + _MyUseRecommendStatus = value + End Set + End Property + + Public Property RecommendStatusText() As String + Get + Return _MyRecommendStatusText + End Get + Set(ByVal value As String) + _MyRecommendStatusText = value + End Set + End Property + + Public Property DispUsername() As Boolean + Get + Return _MyDispUsername + End Get + Set(ByVal value As Boolean) + _MyDispUsername = value + End Set + End Property + + Public Property CloseToExit() As Boolean + Get + Return _MyCloseToExit + End Get + Set(ByVal value As Boolean) + _MyCloseToExit = value + End Set + End Property + + Public Property MinimizeToTray() As Boolean + Get + Return _MyMinimizeToTray + End Get + Set(ByVal value As Boolean) + _MyMinimizeToTray = value + End Set + End Property + + Public Property DispLatestPost() As DispTitleEnum + Get + Return _MyDispLatestPost + End Get + Set(ByVal value As DispTitleEnum) + _MyDispLatestPost = value + End Set + End Property + + Public Property BrowserPath() As String + Get + Return _browserpath + End Get + Set(ByVal value As String) + _browserpath = value + End Set + End Property + + Public Property TinyUrlResolve() As Boolean + Get + Return _MyTinyUrlResolve + End Get + Set(ByVal value As Boolean) + _MyTinyUrlResolve = value + End Set + End Property + + Private Sub CheckUseRecommendStatus_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckUseRecommendStatus.CheckedChanged + If CheckUseRecommendStatus.Checked = True Then + StatusText.Enabled = False + Else + StatusText.Enabled = True + End If + End Sub + + Public Property SortOrderLock() As Boolean + Get + Return _MySortOrderLock + End Get + Set(ByVal value As Boolean) + _MySortOrderLock = value + End Set + End Property + + Public Property SelectedProxyType() As HttpConnection.ProxyType + Get + Return _MyProxyType + End Get + Set(ByVal value As HttpConnection.ProxyType) + _MyProxyType = value + End Set + End Property + + Public Property ProxyAddress() As String + Get + Return _MyProxyAddress + End Get + Set(ByVal value As String) + _MyProxyAddress = value + End Set + End Property + + Public Property ProxyPort() As Integer + Get + Return _MyProxyPort + End Get + Set(ByVal value As Integer) + _MyProxyPort = value + End Set + End Property + + Public Property ProxyUser() As String + Get + Return _MyProxyUser + End Get + Set(ByVal value As String) + _MyProxyUser = value + End Set + End Property + + Public Property ProxyPassword() As String + Get + Return _MyProxyPassword + End Get + Set(ByVal value As String) + _MyProxyPassword = value + End Set + End Property + + Public Property PeriodAdjust() As Boolean + Get + Return _MyPeriodAdjust + End Get + Set(ByVal value As Boolean) + _MyPeriodAdjust = value + End Set + End Property + + Public Property StartupVersion() As Boolean + Get + Return _MyStartupVersion + End Get + Set(ByVal value As Boolean) + _MyStartupVersion = value + End Set + End Property + + Public Property StartupFollowers() As Boolean + Get + Return _MyStartupFollowers + End Get + Set(ByVal value As Boolean) + _MyStartupFollowers = value + End Set + End Property + + Public Property RestrictFavCheck() As Boolean + Get + Return _MyRestrictFavCheck + End Get + Set(ByVal value As Boolean) + _MyRestrictFavCheck = value + End Set + End Property + + Public Property AlwaysTop() As Boolean + Get + Return _MyAlwaysTop + End Get + Set(ByVal value As Boolean) + _MyAlwaysTop = value + End Set + End Property + + Public Property UrlConvertAuto() As Boolean + Get + Return _MyUrlConvertAuto + End Get + Set(ByVal value As Boolean) + _MyUrlConvertAuto = value + End Set + End Property + Public Property OutputzEnabled() As Boolean + Get + Return _MyOutputz + End Get + Set(ByVal value As Boolean) + _MyOutputz = value + End Set + End Property + Public Property OutputzKey() As String + Get + Return _MyOutputzKey + End Get + Set(ByVal value As String) + _MyOutputzKey = value + End Set + End Property + Public Property OutputzUrlmode() As OutputzUrlmode + Get + Return _MyOutputzUrlmode + End Get + Set(ByVal value As OutputzUrlmode) + _MyOutputzUrlmode = value + End Set + End Property + + Public Property Nicoms() As Boolean + Get + Return _MyNicoms + End Get + Set(ByVal value As Boolean) + _MyNicoms = value + End Set + End Property + Public Property AutoShortUrlFirst() As UrlConverter + Get + Return _MyAutoShortUrlFirst + End Get + Set(ByVal value As UrlConverter) + _MyAutoShortUrlFirst = value + End Set + End Property + + Public Property UseUnreadStyle() As Boolean + Get + Return _MyUnreadStyle + End Get + Set(ByVal value As Boolean) + _MyUnreadStyle = value + End Set + End Property + + Public Property DateTimeFormat() As String + Get + Return _MyDateTimeFormat + End Get + Set(ByVal value As String) + _MyDateTimeFormat = value + End Set + End Property + + Public Property DefaultTimeOut() As Integer + Get + Return _MyDefaultTimeOut + End Get + Set(ByVal value As Integer) + _MyDefaultTimeOut = value + End Set + End Property + + 'Public Property ProtectNotInclude() As Boolean + ' Get + ' Return _MyProtectNotInclude + ' End Get + ' Set(ByVal value As Boolean) + ' _MyProtectNotInclude = value + ' End Set + 'End Property + + Public Property RetweetNoConfirm() As Boolean + Get + Return _MyRetweetNoConfirm + End Get + Set(ByVal value As Boolean) + _MyRetweetNoConfirm = value + End Set + End Property + + Public Property TabIconDisp() As Boolean + Get + Return _MyTabIconDisp + End Get + Set(ByVal value As Boolean) + _MyTabIconDisp = value + End Set + End Property + + Public Property ReplyIconState() As REPLY_ICONSTATE + Get + Return _MyReplyIconState + End Get + Set(ByVal value As REPLY_ICONSTATE) + _MyReplyIconState = value + End Set + End Property + + Public Property ReadOwnPost() As Boolean + Get + Return _MyReadOwnPost + End Get + Set(ByVal value As Boolean) + _MyReadOwnPost = value + End Set + End Property + + Public Property GetFav() As Boolean + Get + Return _MyGetFav + End Get + Set(ByVal value As Boolean) + _MyGetFav = value + End Set + End Property + + Public Property IsMonospace() As Boolean + Get + Return _MyMonoSpace + End Get + Set(ByVal value As Boolean) + _MyMonoSpace = value + End Set + End Property + + Public Property ReadOldPosts() As Boolean + Get + Return _MyReadOldPosts + End Get + Set(ByVal value As Boolean) + _MyReadOldPosts = value + End Set + End Property + + Public Property UseSsl() As Boolean + Get + Return _MyUseSsl + End Get + Set(ByVal value As Boolean) + _MyUseSsl = value + End Set + End Property + + Public Property BitlyUser() As String + Get + Return _MyBitlyId + End Get + Set(ByVal value As String) + _MyBitlyId = value + End Set + End Property + + Public Property BitlyPwd() As String + Get + Return _MyBitlyPw + End Get + Set(ByVal value As String) + _MyBitlyPw = value + End Set + End Property + + Public Property ShowGrid() As Boolean + Get + Return _MyShowGrid + End Get + Set(ByVal value As Boolean) + _MyShowGrid = value + End Set + End Property + + Public Property UseAtIdSupplement() As Boolean + Get + Return _MyUseAtIdSupplement + End Get + Set(ByVal value As Boolean) + _MyUseAtIdSupplement = value + End Set + End Property + + Public Property UseHashSupplement() As Boolean + Get + Return _MyUseHashSupplement + End Get + Set(ByVal value As Boolean) + _MyUseHashSupplement = value + End Set + End Property + + Public Property PreviewEnable() As Boolean + Get + Return _MyPreviewEnable + End Get + Set(ByVal value As Boolean) + _MyPreviewEnable = value + End Set + End Property + + Public Property UseAdditionalCount() As Boolean + Get + Return _MyUseAdditonalCount + End Get + Set(ByVal value As Boolean) + _MyUseAdditonalCount = value + End Set + End Property + + Public Property TwitterApiUrl() As String + Get + Return _MyTwitterApiUrl + End Get + Set(ByVal value As String) + _MyTwitterApiUrl = value + End Set + End Property + + Public Property TwitterSearchApiUrl() As String + Get + Return _MyTwitterSearchApiUrl + End Get + Set(ByVal value As String) + _MyTwitterSearchApiUrl = value + End Set + End Property + + Public Property Language() As String + Get + Return _MyLanguage + End Get + Set(ByVal value As String) + _MyLanguage = value + End Set + End Property + + Public Property IsOAuth() As Boolean + Get + Return _MyIsOAuth + End Get + Set(ByVal value As Boolean) + _MyIsOAuth = value + End Set + End Property + + Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click + Dim filedlg As New OpenFileDialog() + + filedlg.Filter = My.Resources.Button3_ClickText1 + filedlg.FilterIndex = 1 + filedlg.Title = My.Resources.Button3_ClickText2 + filedlg.RestoreDirectory = True + + If filedlg.ShowDialog() = Windows.Forms.DialogResult.OK Then + BrowserPathText.Text = filedlg.FileName + End If + End Sub + + Private Sub RadioProxySpecified_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioProxySpecified.CheckedChanged + Dim chk As Boolean = RadioProxySpecified.Checked + LabelProxyAddress.Enabled = chk + TextProxyAddress.Enabled = chk + LabelProxyPort.Enabled = chk + TextProxyPort.Enabled = chk + LabelProxyUser.Enabled = chk + TextProxyUser.Enabled = chk + LabelProxyPassword.Enabled = chk + TextProxyPassword.Enabled = chk + End Sub + + Private Sub TextProxyPort_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextProxyPort.Validating + Dim port As Integer + If TextProxyPort.Text.Trim() = "" Then TextProxyPort.Text = "0" + If Integer.TryParse(TextProxyPort.Text.Trim(), port) = False Then + MessageBox.Show(My.Resources.TextProxyPort_ValidatingText1) + e.Cancel = True + Exit Sub + End If + If port < 0 Or port > 65535 Then + MessageBox.Show(My.Resources.TextProxyPort_ValidatingText2) + e.Cancel = True + Exit Sub + End If + End Sub + + Private Sub CheckOutputz_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckOutputz.CheckedChanged + If CheckOutputz.Checked = True Then + Label59.Enabled = True + Label60.Enabled = True + TextBoxOutputzKey.Enabled = True + ComboBoxOutputzUrlmode.Enabled = True + Else + Label59.Enabled = False + Label60.Enabled = False + TextBoxOutputzKey.Enabled = False + ComboBoxOutputzUrlmode.Enabled = False + End If + End Sub + + Private Sub TextBoxOutputzKey_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextBoxOutputzKey.Validating + If CheckOutputz.Checked Then + TextBoxOutputzKey.Text = Trim(TextBoxOutputzKey.Text) + If TextBoxOutputzKey.Text.Length = 0 Then + MessageBox.Show(My.Resources.TextBoxOutputzKey_Validating) + e.Cancel = True + Exit Sub + End If + End If + End Sub + + Private Function CreateDateTimeFormatSample() As Boolean + Try + LabelDateTimeFormatApplied.Text = DateTime.Now.ToString(CmbDateTimeFormat.Text) + Catch ex As FormatException + LabelDateTimeFormatApplied.Text = My.Resources.CreateDateTimeFormatSampleText1 + Return False + End Try + Return True + End Function + + Private Sub CmbDateTimeFormat_TextUpdate(ByVal sender As System.Object, ByVal e As System.EventArgs) + CreateDateTimeFormatSample() + End Sub + + Private Sub CmbDateTimeFormat_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) + CreateDateTimeFormatSample() + End Sub + + Private Sub CmbDateTimeFormat_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + If Not CreateDateTimeFormatSample() Then + MessageBox.Show(My.Resources.CmbDateTimeFormat_Validating) + e.Cancel = True + End If + End Sub + + Private Sub ConnectionTimeOut_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ConnectionTimeOut.Validating + Dim tm As Integer + Try + tm = CInt(ConnectionTimeOut.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.ConnectionTimeOut_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If tm < HttpTimeOut.MinValue OrElse tm > HttpTimeOut.MaxValue Then + MessageBox.Show(My.Resources.ConnectionTimeOut_ValidatingText1) + e.Cancel = True + End If + End Sub + + Private Sub LabelDateTimeFormatApplied_VisibleChanged(ByVal sender As Object, ByVal e As System.EventArgs) + CreateDateTimeFormatSample() + End Sub + + Private Sub TextCountApi_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextCountApi.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(TextCountApi.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If cnt < 20 OrElse cnt > 200 Then + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub + + Private Sub TextCountApiReply_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextCountApiReply.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(TextCountApiReply.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If cnt < 20 OrElse cnt > 200 Then + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub + + Public Property LimitBalloon() As Boolean + Get + Return _MyLimitBalloon + End Get + Set(ByVal value As Boolean) + _MyLimitBalloon = value + End Set + End Property + + Private Sub ComboBoxAutoShortUrlFirst_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBoxAutoShortUrlFirst.SelectedIndexChanged + If ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Bitly OrElse _ + ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Jmp Then + TextBitlyId.Enabled = True + TextBitlyPw.Enabled = True + Else + TextBitlyId.Enabled = False + TextBitlyPw.Enabled = False + End If + End Sub + + Private Sub ButtonBackToDefaultFontColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonBackToDefaultFontColor.Click, ButtonBackToDefaultFontColor2.Click + lblUnread.ForeColor = System.Drawing.SystemColors.ControlText + lblUnread.Font = New Font(SystemFonts.DefaultFont, FontStyle.Bold Or FontStyle.Underline) + + lblListFont.ForeColor = System.Drawing.SystemColors.ControlText + lblListFont.Font = System.Drawing.SystemFonts.DefaultFont + + lblDetail.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.ControlText) + lblDetail.Font = System.Drawing.SystemFonts.DefaultFont + + lblInputFont.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.ControlText) + lblInputFont.Font = System.Drawing.SystemFonts.DefaultFont + + lblSelf.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.AliceBlue) + + lblAtSelf.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.AntiqueWhite) + + lblTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LemonChiffon) + + lblAtTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LavenderBlush) + + lblAtFromTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Honeydew) + + lblFav.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Red) + + lblOWL.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Blue) + + lblInputBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LemonChiffon) + + lblAtTo.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Pink) + + lblListBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Window) + + lblDetailBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Window) + + lblDetailLink.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Blue) + + lblRetweet.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Green) + End Sub + + Private Sub AuthorizeButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthorizeButton.Click + Dim user As String = Me.Username.Text.Trim + Dim pwd As String = Me.Password.Text.Trim + If String.IsNullOrEmpty(user) OrElse String.IsNullOrEmpty(pwd) Then + MessageBox.Show(My.Resources.Save_ClickText1) + Exit Sub + End If + + '現在の設定内容で通信 + Dim ptype As HttpConnection.ProxyType + If RadioProxyNone.Checked Then + ptype = HttpConnection.ProxyType.None + ElseIf RadioProxyIE.Checked Then + ptype = HttpConnection.ProxyType.IE + Else + ptype = HttpConnection.ProxyType.Specified + End If + Dim padr As String = TextProxyAddress.Text.Trim() + Dim pport As Integer = Integer.Parse(TextProxyPort.Text.Trim()) + Dim pusr As String = TextProxyUser.Text.Trim() + Dim ppw As String = TextProxyPassword.Text.Trim() + + '通信基底クラス初期化 + HttpConnection.InitializeConnection(20, ptype, padr, pport, pusr, ppw) + HttpTwitter.TwitterUrl = TwitterAPIText.Text.Trim + HttpTwitter.TwitterSearchUrl = TwitterSearchAPIText.Text.Trim + If Me.AuthBasicRadio.Checked Then + tw.Initialize("", "") + Else + tw.Initialize("", "", "") + End If + Dim rslt As String = tw.Authenticate(user, pwd) + If String.IsNullOrEmpty(rslt) Then + MessageBox.Show(My.Resources.AuthorizeButton_Click1, "Authenticate", MessageBoxButtons.OK) + Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click3 + Me.AuthUserLabel.Text = tw.Username + Else + MessageBox.Show(My.Resources.AuthorizeButton_Click2 + Environment.NewLine + rslt, "Authenticate", MessageBoxButtons.OK) + Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 + Me.AuthUserLabel.Text = "" + End If + CalcApiUsing() + End Sub + + Private Sub AuthClearButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthClearButton.Click + tw.ClearAuthInfo() + Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 + Me.AuthUserLabel.Text = "" + CalcApiUsing() + End Sub + + Private Sub AuthOAuthRadio_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthOAuthRadio.CheckedChanged + If tw Is Nothing Then Exit Sub + If AuthBasicRadio.Checked Then + 'BASIC認証時のみ表示 + tw.Initialize("", "") + Me.AuthStateLabel.Enabled = False + Me.AuthUserLabel.Enabled = False + Me.AuthClearButton.Enabled = False + Else + tw.Initialize("", "", "") + Me.AuthStateLabel.Enabled = True + Me.AuthUserLabel.Enabled = True + Me.AuthClearButton.Enabled = True + End If + Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 + Me.AuthUserLabel.Text = "" + CalcApiUsing() + End Sub + + Private Sub DisplayApiMaxCount() + If TwitterApiInfo.MaxCount > -1 Then + LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, TwitterApiInfo.UsingCount, TwitterApiInfo.MaxCount) + Else + LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, TwitterApiInfo.UsingCount, "???") + End If + End Sub + + Private Sub CalcApiUsing() + Dim UsingApi As Integer = 0 + Dim tmp As Integer + Dim ListsTabNum As Integer = 0 + + Try + ' 初回起動時などにNothingの場合あり + ListsTabNum = TabInformations.GetInstance.GetTabsByType(TabUsageType.Lists).Count + Catch ex As Exception + Exit Sub + End Try + + ' Recent計算 0は手動更新 + If Integer.TryParse(TimelinePeriod.Text, tmp) Then + If tmp <> 0 Then + UsingApi += 3600 \ tmp + End If + End If + + ' Reply計算 0は手動更新 + If Integer.TryParse(ReplyPeriod.Text, tmp) Then + If tmp <> 0 Then + UsingApi += 3600 \ tmp + End If + End If + + ' DM計算 0は手動更新 送受信両方 + If Integer.TryParse(DMPeriod.Text, tmp) Then + If tmp <> 0 Then + UsingApi += (3600 \ tmp) * 2 + End If + End If + + ' Listsタブ計算 0は手動更新 + If Integer.TryParse(ListsPeriod.Text, tmp) Then + If tmp <> 0 Then + UsingApi += (3600 \ tmp) * ListsTabNum + End If + End If + + If tw IsNot Nothing Then + If TwitterApiInfo.MaxCount = -1 Then + If Twitter.AccountState = ACCOUNT_STATE.Valid Then + TwitterApiInfo.UsingCount = UsingApi + Dim proc As New Thread(New Threading.ThreadStart(Sub() + tw.GetInfoApi(Nothing) '取得エラー時はinfoCountは初期状態(値:-1) + If Me.IsHandleCreated Then Invoke(New MethodInvoker(AddressOf DisplayApiMaxCount)) + End Sub)) + proc.Start() + Else + LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, UsingApi, "???") + End If + Else + LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, UsingApi, TwitterApiInfo.MaxCount) + End If + End If + + + LabelPostAndGet.Visible = CheckPostAndGet.Checked + + End Sub + + Private Sub CheckPostAndGet_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckPostAndGet.CheckedChanged + CalcApiUsing() + End Sub + + Private Sub Setting_Shown(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Shown + Do + Thread.Sleep(10) + If Me.Disposing OrElse Me.IsDisposed Then Exit Sub + Loop Until Me.IsHandleCreated + CalcApiUsing() + End Sub + + Private Sub ButtonApiCalc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonApiCalc.Click + CalcApiUsing() + End Sub + + Private Sub New() + + ' この呼び出しはデザイナーで必要です。 + InitializeComponent() + + ' InitializeComponent() 呼び出しの後で初期化を追加します。 + + End Sub + + Public Shared ReadOnly Property Instance As AppendSettingDialog + Get + Return _instance + End Get + End Property + + Private Function BitlyValidation(ByVal id As String, ByVal apikey As String) As Boolean + If String.IsNullOrEmpty(id) OrElse String.IsNullOrEmpty(apikey) Then + Return False + End If + + Dim req As String = "http://api.bit.ly/v3/validate" + Dim content As String = "" + Dim param As New Dictionary(Of String, String) + + param.Add("login", "tweenapi") + param.Add("apiKey", "R_c5ee0e30bdfff88723c4457cc331886b") + param.Add("x_login", id) + param.Add("x_apiKey", apikey) + param.Add("format", "txt") + + If Not (New HttpVarious).PostData(req, param, content) Then + Return True ' 通信エラーの場合はとりあえずチェックを通ったことにする + ElseIf content.Trim() = "1" Then + Return True ' 検証成功 + ElseIf content.Trim() = "0" Then + Return False ' 検証失敗 APIキーとIDの組み合わせが違う + Else + Return True ' 規定外応答:通信エラーの可能性があるためとりあえずチェックを通ったことにする + End If + End Function + + Private Sub Cancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cancel.Click + _ValidationError = False + End Sub + + Public Property HotkeyEnabled As Boolean + Public Property HotkeyKey As Keys + Public Property HotkeyValue As Integer + Public Property HotkeyMod As Keys + + Private Sub HotkeyText_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles HotkeyText.KeyDown + 'KeyValueで判定する。 + '表示文字とのテーブルを用意すること + HotkeyText.Text = e.KeyCode.ToString + HotkeyCode.Text = e.KeyValue.ToString + HotkeyText.Tag = e.KeyCode + e.Handled = True + e.SuppressKeyPress = True + End Sub + + Private Sub HotkeyCheck_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles HotkeyCheck.CheckedChanged + HotkeyCtrl.Enabled = HotkeyCheck.Checked + HotkeyAlt.Enabled = HotkeyCheck.Checked + HotkeyShift.Enabled = HotkeyCheck.Checked + HotkeyWin.Enabled = HotkeyCheck.Checked + HotkeyText.Enabled = HotkeyCheck.Checked + HotkeyCode.Enabled = HotkeyCheck.Checked + End Sub + + Public Property BlinkNewMentions As Boolean + + Private Sub GetMoreTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles GetMoreTextCountApi.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(GetMoreTextCountApi.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub + + Private Sub UseChangeGetCount_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles UseChangeGetCount.CheckedChanged + GetMoreTextCountApi.Enabled = UseChangeGetCount.Checked + FirstTextCountApi.Enabled = UseChangeGetCount.Checked + Label28.Enabled = UseChangeGetCount.Checked + Label30.Enabled = UseChangeGetCount.Checked + Label53.Enabled = UseChangeGetCount.Checked + Label66.Enabled = UseChangeGetCount.Checked + SearchTextCountApi.Enabled = UseChangeGetCount.Checked + FavoritesTextCountApi.Enabled = UseChangeGetCount.Checked + End Sub + + Private Sub FirstTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles FirstTextCountApi.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(FirstTextCountApi.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub + + Private Sub CheckEnableBasicAuth_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckEnableBasicAuth.CheckedChanged + AuthBasicRadio.Enabled = CheckEnableBasicAuth.Checked + End Sub + + Private Sub SearchTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles SearchTextCountApi.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(SearchTextCountApi.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextsearchCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 100) Then + MessageBox.Show(My.Resources.TextSearchCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub + + Private Sub FavoritesTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles FavoritesTextCountApi.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(FavoritesTextCountApi.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub +End Class \ No newline at end of file Modified: branches/SettingDialog/Tween/Tween.vb =================================================================== --- branches/SettingDialog/Tween/Tween.vb 2010-12-18 14:23:55 UTC (rev 1216) +++ branches/SettingDialog/Tween/Tween.vb 2010-12-18 14:29:36 UTC (rev 1217) @@ -87,7 +87,7 @@ Private tw As New Twitter 'サブ画面インスタンス - Private SettingDialog As Setting = Setting.Instance '設定画面インスタンス + Private SettingDialog As AppendSettingDialog = AppendSettingDialog.Instance '設定画面インスタンス Private TabDialog As New TabsDialog 'タブ選択ダイアログインスタンス Private SearchDialog As New SearchWord '検索画面インスタンス Private fDialog As New FilterDialog 'フィルター編集画面 Modified: branches/SettingDialog/Tween/Tween.vbproj =================================================================== --- branches/SettingDialog/Tween/Tween.vbproj 2010-12-18 14:23:55 UTC (rev 1216) +++ branches/SettingDialog/Tween/Tween.vbproj 2010-12-18 14:29:36 UTC (rev 1217) @@ -114,6 +114,12 @@ + + AppendSettingDialog.vb + + + Form + AtIdSupplement.vb @@ -279,6 +285,9 @@ + + AppendSettingDialog.vb + Designer AtIdSupplement.vb From svnnotify @ sourceforge.jp Sun Dec 19 01:57:52 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 19 Dec 2010 01:57:52 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMThdICDjg6Hjg4Pjgrvjg7zjgrjlkajjgoo=?= =?utf-8?b?44GW44Gj44GP44KK44Go5L+u5q2j?= Message-ID: <1292691472.226166.11197.nullmailer@users.sourceforge.jp> Revision: 1218 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1218 Author: syo68k Date: 2010-12-19 01:57:51 +0900 (Sun, 19 Dec 2010) Log Message: ----------- メッセージ周りざっくりと修正 Modified Paths: -------------- branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb branches/SettingDialog/Tween/AppendSettingDialog.resx branches/SettingDialog/Tween/AppendSettingDialog.vb -------------- next part -------------- Modified: branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb 2010-12-18 14:29:36 UTC (rev 1217) +++ branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb 2010-12-18 16:57:51 UTC (rev 1218) @@ -22,27 +22,58 @@ 'コード エディターを使って変更しないでください。 _ Private Sub InitializeComponent() - Dim TreeNode1 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("更新間隔") - Dim TreeNode2 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("起動時の動作") - Dim TreeNode3 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("取得件数") - Dim TreeNode4 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("UserStream") - Dim TreeNode5 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("基本", New System.Windows.Forms.TreeNode() {TreeNode1, TreeNode2, TreeNode3, TreeNode4}) - Dim TreeNode6 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("ツイートの動作") - Dim TreeNode7 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("動作", New System.Windows.Forms.TreeNode() {TreeNode6}) - Dim TreeNode8 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("リストの表示") - Dim TreeNode9 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("表示", New System.Windows.Forms.TreeNode() {TreeNode8}) - Dim TreeNode10 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("フォント2") - Dim TreeNode11 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("フォント", New System.Windows.Forms.TreeNode() {TreeNode10}) - Dim TreeNode12 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("プロキシ") - Dim TreeNode13 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("通信", New System.Windows.Forms.TreeNode() {TreeNode12}) + Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AppendSettingDialog)) Me.SplitContainer1 = New System.Windows.Forms.SplitContainer() Me.TreeView1 = New System.Windows.Forms.TreeView() + Me.BasedPanel = New System.Windows.Forms.Panel() + Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() + Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() + Me.Label6 = New System.Windows.Forms.Label() + Me.AuthClearButton = New System.Windows.Forms.Button() + Me.AuthUserLabel = New System.Windows.Forms.Label() + Me.AuthStateLabel = New System.Windows.Forms.Label() + Me.Label4 = New System.Windows.Forms.Label() + Me.AuthorizeButton = New System.Windows.Forms.Button() + Me.Label1 = New System.Windows.Forms.Label() + Me.Label2 = New System.Windows.Forms.Label() + Me.Username = New System.Windows.Forms.TextBox() + Me.Password = New System.Windows.Forms.TextBox() + Me.GetPeriodPanel = New System.Windows.Forms.Panel() + Me.TimelinePeriod = New System.Windows.Forms.TextBox() + Me.Label3 = New System.Windows.Forms.Label() + Me.ButtonApiCalc = New System.Windows.Forms.Button() + Me.LabelPostAndGet = New System.Windows.Forms.Label() + Me.LabelApiUsing = New System.Windows.Forms.Label() + Me.Label33 = New System.Windows.Forms.Label() + Me.ListsPeriod = New System.Windows.Forms.TextBox() + Me.Label7 = New System.Windows.Forms.Label() + Me.PubSearchPeriod = New System.Windows.Forms.TextBox() + Me.Label69 = New System.Windows.Forms.Label() + Me.ReplyPeriod = New System.Windows.Forms.TextBox() + Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() + Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() + Me.Label5 = New System.Windows.Forms.Label() + Me.DMPeriod = New System.Windows.Forms.TextBox() + Me.GetCountPanel = New System.Windows.Forms.Panel() + Me.Label30 = New System.Windows.Forms.Label() + Me.Label28 = New System.Windows.Forms.Label() + Me.Label19 = New System.Windows.Forms.Label() + Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() + Me.SearchTextCountApi = New System.Windows.Forms.TextBox() + Me.Label66 = New System.Windows.Forms.Label() + Me.FirstTextCountApi = New System.Windows.Forms.TextBox() + Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() + Me.Label53 = New System.Windows.Forms.Label() + Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() + Me.TextCountApiReply = New System.Windows.Forms.TextBox() + Me.Label67 = New System.Windows.Forms.Label() + Me.TextCountApi = New System.Windows.Forms.TextBox() + Me.StartupPanel = New System.Windows.Forms.Panel() + Me.StartupReaded = New System.Windows.Forms.CheckBox() + Me.CheckStartupFollowers = New System.Windows.Forms.CheckBox() + Me.CheckStartupVersion = New System.Windows.Forms.CheckBox() + Me.chkGetFav = New System.Windows.Forms.CheckBox() Me.UserStreamPanel = New System.Windows.Forms.Panel() - Me.GroupBox4 = New System.Windows.Forms.GroupBox() - Me.UserstreamPeriod = New System.Windows.Forms.TextBox() - Me.Label83 = New System.Windows.Forms.Label() - Me.Label70 = New System.Windows.Forms.Label() - Me.StartupUserstreamCheck = New System.Windows.Forms.CheckBox() Me.ActionPanel = New System.Windows.Forms.Panel() Me.GroupBox3 = New System.Windows.Forms.GroupBox() Me.HotkeyCheck = New System.Windows.Forms.CheckBox() @@ -52,27 +83,93 @@ Me.HotkeyAlt = New System.Windows.Forms.CheckBox() Me.HotkeyShift = New System.Windows.Forms.CheckBox() Me.HotkeyCtrl = New System.Windows.Forms.CheckBox() - Me.Label82 = New System.Windows.Forms.Label() Me.CheckHashSupple = New System.Windows.Forms.CheckBox() - Me.Label79 = New System.Windows.Forms.Label() Me.CheckAtIdSupple = New System.Windows.Forms.CheckBox() Me.Label57 = New System.Windows.Forms.Label() - Me.Label56 = New System.Windows.Forms.Label() Me.CheckFavRestrict = New System.Windows.Forms.CheckBox() Me.Button3 = New System.Windows.Forms.Button() Me.PlaySnd = New System.Windows.Forms.CheckBox() - Me.Label14 = New System.Windows.Forms.Label() Me.Label15 = New System.Windows.Forms.Label() - Me.Label38 = New System.Windows.Forms.Label() Me.BrowserPathText = New System.Windows.Forms.TextBox() Me.UReadMng = New System.Windows.Forms.CheckBox() Me.Label44 = New System.Windows.Forms.Label() Me.CheckCloseToExit = New System.Windows.Forms.CheckBox() - Me.Label40 = New System.Windows.Forms.Label() Me.CheckMinimizeToTray = New System.Windows.Forms.CheckBox() - Me.Label41 = New System.Windows.Forms.Label() - Me.Label39 = New System.Windows.Forms.Label() Me.CheckReadOldPosts = New System.Windows.Forms.CheckBox() + Me.TweetActPanel = New System.Windows.Forms.Panel() + Me.TextBitlyPw = New System.Windows.Forms.TextBox() + Me.ComboBoxPostKeySelect = New System.Windows.Forms.ComboBox() + Me.Label27 = New System.Windows.Forms.Label() + Me.CheckRetweetNoConfirm = New System.Windows.Forms.CheckBox() + Me.TextBitlyId = New System.Windows.Forms.TextBox() + Me.Label12 = New System.Windows.Forms.Label() + Me.Label77 = New System.Windows.Forms.Label() + Me.CheckUseRecommendStatus = New System.Windows.Forms.CheckBox() + Me.Label76 = New System.Windows.Forms.Label() + Me.StatusText = New System.Windows.Forms.TextBox() + Me.ComboBoxAutoShortUrlFirst = New System.Windows.Forms.ComboBox() + Me.Label71 = New System.Windows.Forms.Label() + Me.CheckTinyURL = New System.Windows.Forms.CheckBox() + Me.CheckAutoConvertUrl = New System.Windows.Forms.CheckBox() + Me.PreviewPanel = New System.Windows.Forms.Panel() + Me.ReplyIconStateCombo = New System.Windows.Forms.ComboBox() + Me.Label72 = New System.Windows.Forms.Label() + Me.ChkNewMentionsBlink = New System.Windows.Forms.CheckBox() + Me.chkTabIconDisp = New System.Windows.Forms.CheckBox() + Me.CheckPreviewEnable = New System.Windows.Forms.CheckBox() + Me.Label81 = New System.Windows.Forms.Label() + Me.LanguageCombo = New System.Windows.Forms.ComboBox() + Me.Label13 = New System.Windows.Forms.Label() + Me.CheckAlwaysTop = New System.Windows.Forms.CheckBox() + Me.CheckMonospace = New System.Windows.Forms.CheckBox() + Me.CheckBalloonLimit = New System.Windows.Forms.CheckBox() + Me.Label10 = New System.Windows.Forms.Label() + Me.ComboDispTitle = New System.Windows.Forms.ComboBox() + Me.Label45 = New System.Windows.Forms.Label() + Me.cmbNameBalloon = New System.Windows.Forms.ComboBox() + Me.CheckDispUsername = New System.Windows.Forms.CheckBox() + Me.CheckBox3 = New System.Windows.Forms.CheckBox() + Me.TweetPrvPanel = New System.Windows.Forms.Panel() + Me.Label47 = New System.Windows.Forms.Label() + Me.LabelDateTimeFormatApplied = New System.Windows.Forms.Label() + Me.Label62 = New System.Windows.Forms.Label() + Me.CmbDateTimeFormat = New System.Windows.Forms.ComboBox() + Me.Label23 = New System.Windows.Forms.Label() + Me.Label11 = New System.Windows.Forms.Label() + Me.IconSize = New System.Windows.Forms.ComboBox() + Me.TextBox3 = New System.Windows.Forms.TextBox() + Me.CheckSortOrderLock = New System.Windows.Forms.CheckBox() + Me.CheckShowGrid = New System.Windows.Forms.CheckBox() + Me.chkReadOwnPost = New System.Windows.Forms.CheckBox() + Me.chkUnreadStyle = New System.Windows.Forms.CheckBox() + Me.OneWayLv = New System.Windows.Forms.CheckBox() + Me.FontPanel = New System.Windows.Forms.Panel() + Me.GroupBox1 = New System.Windows.Forms.GroupBox() + Me.btnRetweet = New System.Windows.Forms.Button() + Me.lblRetweet = New System.Windows.Forms.Label() + Me.Label80 = New System.Windows.Forms.Label() + Me.ButtonBackToDefaultFontColor = New System.Windows.Forms.Button() + Me.btnDetailLink = New System.Windows.Forms.Button() + Me.lblDetailLink = New System.Windows.Forms.Label() + Me.Label18 = New System.Windows.Forms.Label() + Me.btnUnread = New System.Windows.Forms.Button() + Me.lblUnread = New System.Windows.Forms.Label() + Me.Label20 = New System.Windows.Forms.Label() + Me.btnDetailBack = New System.Windows.Forms.Button() + Me.lblDetailBackcolor = New System.Windows.Forms.Label() + Me.Label37 = New System.Windows.Forms.Label() + Me.btnDetail = New System.Windows.Forms.Button() + Me.lblDetail = New System.Windows.Forms.Label() + Me.Label26 = New System.Windows.Forms.Label() + Me.btnOWL = New System.Windows.Forms.Button() + Me.lblOWL = New System.Windows.Forms.Label() + Me.Label24 = New System.Windows.Forms.Label() + Me.btnFav = New System.Windows.Forms.Button() + Me.lblFav = New System.Windows.Forms.Label() + Me.Label22 = New System.Windows.Forms.Label() + Me.btnListFont = New System.Windows.Forms.Button() + Me.lblListFont = New System.Windows.Forms.Label() + Me.Label61 = New System.Windows.Forms.Label() Me.FontPanel2 = New System.Windows.Forms.Panel() Me.GroupBox5 = New System.Windows.Forms.GroupBox() Me.btnInputFont = New System.Windows.Forms.Button() @@ -103,67 +200,6 @@ Me.Label105 = New System.Windows.Forms.Label() Me.Label107 = New System.Windows.Forms.Label() Me.Label109 = New System.Windows.Forms.Label() - Me.GetPeriodPanel = New System.Windows.Forms.Panel() - Me.TimelinePeriod = New System.Windows.Forms.TextBox() - Me.Label3 = New System.Windows.Forms.Label() - Me.ButtonApiCalc = New System.Windows.Forms.Button() - Me.LabelPostAndGet = New System.Windows.Forms.Label() - Me.LabelApiUsing = New System.Windows.Forms.Label() - Me.Label33 = New System.Windows.Forms.Label() - Me.ListsPeriod = New System.Windows.Forms.TextBox() - Me.Label7 = New System.Windows.Forms.Label() - Me.PubSearchPeriod = New System.Windows.Forms.TextBox() - Me.Label69 = New System.Windows.Forms.Label() - Me.ReplyPeriod = New System.Windows.Forms.TextBox() - Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() - Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() - Me.Label5 = New System.Windows.Forms.Label() - Me.DMPeriod = New System.Windows.Forms.TextBox() - Me.TweetPrvPanel = New System.Windows.Forms.Panel() - Me.Label47 = New System.Windows.Forms.Label() - Me.LabelDateTimeFormatApplied = New System.Windows.Forms.Label() - Me.Label62 = New System.Windows.Forms.Label() - Me.CmbDateTimeFormat = New System.Windows.Forms.ComboBox() - Me.Label23 = New System.Windows.Forms.Label() - Me.Label11 = New System.Windows.Forms.Label() - Me.IconSize = New System.Windows.Forms.ComboBox() - Me.TextBox3 = New System.Windows.Forms.TextBox() - Me.Label21 = New System.Windows.Forms.Label() - Me.CheckSortOrderLock = New System.Windows.Forms.CheckBox() - Me.Label78 = New System.Windows.Forms.Label() - Me.CheckShowGrid = New System.Windows.Forms.CheckBox() - Me.Label73 = New System.Windows.Forms.Label() - Me.chkReadOwnPost = New System.Windows.Forms.CheckBox() - Me.Label17 = New System.Windows.Forms.Label() - Me.chkUnreadStyle = New System.Windows.Forms.CheckBox() - Me.Label16 = New System.Windows.Forms.Label() - Me.OneWayLv = New System.Windows.Forms.CheckBox() - Me.PreviewPanel = New System.Windows.Forms.Panel() - Me.ReplyIconStateCombo = New System.Windows.Forms.ComboBox() - Me.Label72 = New System.Windows.Forms.Label() - Me.Label43 = New System.Windows.Forms.Label() - Me.Label48 = New System.Windows.Forms.Label() - Me.ChkNewMentionsBlink = New System.Windows.Forms.CheckBox() - Me.chkTabIconDisp = New System.Windows.Forms.CheckBox() - Me.Label35 = New System.Windows.Forms.Label() - Me.CheckPreviewEnable = New System.Windows.Forms.CheckBox() - Me.Label81 = New System.Windows.Forms.Label() - Me.LanguageCombo = New System.Windows.Forms.ComboBox() - Me.Label13 = New System.Windows.Forms.Label() - Me.CheckAlwaysTop = New System.Windows.Forms.CheckBox() - Me.Label58 = New System.Windows.Forms.Label() - Me.Label75 = New System.Windows.Forms.Label() - Me.CheckMonospace = New System.Windows.Forms.CheckBox() - Me.Label68 = New System.Windows.Forms.Label() - Me.CheckBalloonLimit = New System.Windows.Forms.CheckBox() - Me.Label10 = New System.Windows.Forms.Label() - Me.ComboDispTitle = New System.Windows.Forms.ComboBox() - Me.Label45 = New System.Windows.Forms.Label() - Me.cmbNameBalloon = New System.Windows.Forms.ComboBox() - Me.Label46 = New System.Windows.Forms.Label() - Me.CheckDispUsername = New System.Windows.Forms.CheckBox() - Me.Label25 = New System.Windows.Forms.Label() - Me.CheckBox3 = New System.Windows.Forms.CheckBox() Me.ConnectionPanel = New System.Windows.Forms.Panel() Me.CheckNicoms = New System.Windows.Forms.CheckBox() Me.Label60 = New System.Windows.Forms.Label() @@ -180,35 +216,7 @@ Me.Label64 = New System.Windows.Forms.Label() Me.ConnectionTimeOut = New System.Windows.Forms.TextBox() Me.Label63 = New System.Windows.Forms.Label() - Me.GetCountPanel = New System.Windows.Forms.Panel() - Me.Label30 = New System.Windows.Forms.Label() - Me.Label28 = New System.Windows.Forms.Label() - Me.Label19 = New System.Windows.Forms.Label() - Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() - Me.SearchTextCountApi = New System.Windows.Forms.TextBox() - Me.Label66 = New System.Windows.Forms.Label() - Me.FirstTextCountApi = New System.Windows.Forms.TextBox() - Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() - Me.Label53 = New System.Windows.Forms.Label() - Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() - Me.TextCountApiReply = New System.Windows.Forms.TextBox() - Me.Label67 = New System.Windows.Forms.Label() - Me.TextCountApi = New System.Windows.Forms.TextBox() - Me.BasedPanel = New System.Windows.Forms.Panel() - Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() - Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() - Me.Label6 = New System.Windows.Forms.Label() - Me.AuthClearButton = New System.Windows.Forms.Button() - Me.AuthUserLabel = New System.Windows.Forms.Label() - Me.AuthStateLabel = New System.Windows.Forms.Label() - Me.Label4 = New System.Windows.Forms.Label() - Me.AuthorizeButton = New System.Windows.Forms.Button() - Me.Label1 = New System.Windows.Forms.Label() - Me.Label2 = New System.Windows.Forms.Label() - Me.Username = New System.Windows.Forms.TextBox() - Me.Password = New System.Windows.Forms.TextBox() Me.ProxyPanel = New System.Windows.Forms.Panel() - Me.GroupBox2 = New System.Windows.Forms.GroupBox() Me.Label55 = New System.Windows.Forms.Label() Me.TextProxyPassword = New System.Windows.Forms.TextBox() Me.LabelProxyPassword = New System.Windows.Forms.Label() @@ -221,92 +229,38 @@ Me.RadioProxySpecified = New System.Windows.Forms.RadioButton() Me.RadioProxyIE = New System.Windows.Forms.RadioButton() Me.RadioProxyNone = New System.Windows.Forms.RadioButton() - Me.TweetActPanel = New System.Windows.Forms.Panel() - Me.TextBitlyPw = New System.Windows.Forms.TextBox() - Me.ComboBoxPostKeySelect = New System.Windows.Forms.ComboBox() - Me.Label27 = New System.Windows.Forms.Label() - Me.CheckRetweetNoConfirm = New System.Windows.Forms.CheckBox() - Me.TextBitlyId = New System.Windows.Forms.TextBox() - Me.Label42 = New System.Windows.Forms.Label() - Me.Label12 = New System.Windows.Forms.Label() - Me.Label77 = New System.Windows.Forms.Label() - Me.CheckUseRecommendStatus = New System.Windows.Forms.CheckBox() - Me.Label76 = New System.Windows.Forms.Label() - Me.StatusText = New System.Windows.Forms.TextBox() - Me.ComboBoxAutoShortUrlFirst = New System.Windows.Forms.ComboBox() - Me.Label50 = New System.Windows.Forms.Label() - Me.Label71 = New System.Windows.Forms.Label() - Me.CheckTinyURL = New System.Windows.Forms.CheckBox() - Me.CheckAutoConvertUrl = New System.Windows.Forms.CheckBox() - Me.Label29 = New System.Windows.Forms.Label() - Me.FontPanel = New System.Windows.Forms.Panel() - Me.GroupBox1 = New System.Windows.Forms.GroupBox() - Me.btnRetweet = New System.Windows.Forms.Button() - Me.lblRetweet = New System.Windows.Forms.Label() - Me.Label80 = New System.Windows.Forms.Label() - Me.ButtonBackToDefaultFontColor = New System.Windows.Forms.Button() - Me.btnDetailLink = New System.Windows.Forms.Button() - Me.lblDetailLink = New System.Windows.Forms.Label() - Me.Label18 = New System.Windows.Forms.Label() - Me.btnUnread = New System.Windows.Forms.Button() - Me.lblUnread = New System.Windows.Forms.Label() - Me.Label20 = New System.Windows.Forms.Label() - Me.btnDetailBack = New System.Windows.Forms.Button() - Me.lblDetailBackcolor = New System.Windows.Forms.Label() - Me.Label37 = New System.Windows.Forms.Label() - Me.btnDetail = New System.Windows.Forms.Button() - Me.lblDetail = New System.Windows.Forms.Label() - Me.Label26 = New System.Windows.Forms.Label() - Me.btnOWL = New System.Windows.Forms.Button() - Me.lblOWL = New System.Windows.Forms.Label() - Me.Label24 = New System.Windows.Forms.Label() - Me.btnFav = New System.Windows.Forms.Button() - Me.lblFav = New System.Windows.Forms.Label() - Me.Label22 = New System.Windows.Forms.Label() - Me.btnListFont = New System.Windows.Forms.Button() - Me.lblListFont = New System.Windows.Forms.Label() - Me.Label61 = New System.Windows.Forms.Label() - Me.StartupPanel = New System.Windows.Forms.Panel() - Me.Label9 = New System.Windows.Forms.Label() - Me.StartupReaded = New System.Windows.Forms.CheckBox() - Me.Label54 = New System.Windows.Forms.Label() - Me.CheckStartupFollowers = New System.Windows.Forms.CheckBox() - Me.Label51 = New System.Windows.Forms.Label() - Me.CheckStartupVersion = New System.Windows.Forms.CheckBox() - Me.Label74 = New System.Windows.Forms.Label() - Me.chkGetFav = New System.Windows.Forms.CheckBox() Me.FontDialog1 = New System.Windows.Forms.FontDialog() Me.ColorDialog1 = New System.Windows.Forms.ColorDialog() Me.Cancel = New System.Windows.Forms.Button() Me.Save = New System.Windows.Forms.Button() + Me.StartupUserstreamCheck = New System.Windows.Forms.CheckBox() + Me.Label83 = New System.Windows.Forms.Label() + Me.UserstreamPeriod = New System.Windows.Forms.TextBox() CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SplitContainer1.Panel1.SuspendLayout() Me.SplitContainer1.Panel2.SuspendLayout() Me.SplitContainer1.SuspendLayout() + Me.BasedPanel.SuspendLayout() + Me.GetPeriodPanel.SuspendLayout() + Me.GetCountPanel.SuspendLayout() + Me.StartupPanel.SuspendLayout() Me.UserStreamPanel.SuspendLayout() - Me.GroupBox4.SuspendLayout() Me.ActionPanel.SuspendLayout() Me.GroupBox3.SuspendLayout() + Me.TweetActPanel.SuspendLayout() + Me.PreviewPanel.SuspendLayout() + Me.TweetPrvPanel.SuspendLayout() + Me.FontPanel.SuspendLayout() + Me.GroupBox1.SuspendLayout() Me.FontPanel2.SuspendLayout() Me.GroupBox5.SuspendLayout() - Me.GetPeriodPanel.SuspendLayout() - Me.TweetPrvPanel.SuspendLayout() - Me.PreviewPanel.SuspendLayout() Me.ConnectionPanel.SuspendLayout() - Me.GetCountPanel.SuspendLayout() - Me.BasedPanel.SuspendLayout() Me.ProxyPanel.SuspendLayout() - Me.GroupBox2.SuspendLayout() - Me.TweetActPanel.SuspendLayout() - Me.FontPanel.SuspendLayout() - Me.GroupBox1.SuspendLayout() - Me.StartupPanel.SuspendLayout() Me.SuspendLayout() ' 'SplitContainer1 ' - Me.SplitContainer1.Dock = System.Windows.Forms.DockStyle.Top - Me.SplitContainer1.Location = New System.Drawing.Point(0, 0) + resources.ApplyResources(Me.SplitContainer1, "SplitContainer1") Me.SplitContainer1.Name = "SplitContainer1" ' 'SplitContainer1.Panel1 @@ -316,9 +270,6 @@ 'SplitContainer1.Panel2 ' Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Window - Me.SplitContainer1.Panel2.Controls.Add(Me.BasedPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.GetCountPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.StartupPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.UserStreamPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.ActionPanel) @@ -329,796 +280,104 @@ Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel2) Me.SplitContainer1.Panel2.Controls.Add(Me.ConnectionPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.ProxyPanel) - Me.SplitContainer1.Size = New System.Drawing.Size(701, 368) - Me.SplitContainer1.SplitterDistance = 172 - Me.SplitContainer1.TabIndex = 0 + Me.SplitContainer1.Panel2.Controls.Add(Me.BasedPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.GetCountPanel) ' 'TreeView1 ' - Me.TreeView1.Dock = System.Windows.Forms.DockStyle.Fill - Me.TreeView1.Location = New System.Drawing.Point(0, 0) + Me.TreeView1.Cursor = System.Windows.Forms.Cursors.Hand + resources.ApplyResources(Me.TreeView1, "TreeView1") Me.TreeView1.Name = "TreeView1" - TreeNode1.Name = "PeriodNode" - TreeNode1.Text = "更新間隔" - TreeNode2.Name = "StartUpNode" - TreeNode2.Text = "起動時の動作" - TreeNode3.Name = "GetCountNode" - TreeNode3.Text = "取得件数" - TreeNode4.Name = "UserStreamNode" - TreeNode4.Text = "UserStream" - TreeNode5.Name = "BasedNode" - TreeNode5.Text = "基本" - TreeNode6.Name = "TweetActNode" - TreeNode6.Text = "ツイートの動作" - TreeNode7.Name = "ActionNode" - TreeNode7.Text = "動作" - TreeNode8.Name = "TweetPrvNode" - TreeNode8.Text = "リストの表示" - TreeNode9.Name = "PreviewNode" - TreeNode9.Text = "表示" - TreeNode10.Name = "FontNode2" - TreeNode10.Text = "フォント2" - TreeNode11.Name = "FontNode" - TreeNode11.Text = "フォント" - TreeNode12.Name = "ProxyNode" - TreeNode12.Text = "プロキシ" - TreeNode13.Name = "ConnectionNode" - TreeNode13.Text = "通信" - Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {TreeNode5, TreeNode7, TreeNode9, TreeNode11, TreeNode13}) - Me.TreeView1.Size = New System.Drawing.Size(172, 368) - Me.TreeView1.TabIndex = 0 + Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {CType(resources.GetObject("TreeView1.Nodes"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes1"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes2"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes3"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes4"), System.Windows.Forms.TreeNode)}) ' - 'UserStreamPanel + 'BasedPanel ' - Me.UserStreamPanel.Controls.Add(Me.GroupBox4) - Me.UserStreamPanel.Dock = System.Windows.Forms.DockStyle.Fill - Me.UserStreamPanel.Enabled = False - Me.UserStreamPanel.Location = New System.Drawing.Point(0, 0) - Me.UserStreamPanel.Name = "UserStreamPanel" - Me.UserStreamPanel.Size = New System.Drawing.Size(525, 368) - Me.UserStreamPanel.TabIndex = 44 - Me.UserStreamPanel.Visible = False + Me.BasedPanel.BackColor = System.Drawing.SystemColors.Window + Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) + Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) + Me.BasedPanel.Controls.Add(Me.Label6) + Me.BasedPanel.Controls.Add(Me.AuthClearButton) + Me.BasedPanel.Controls.Add(Me.AuthUserLabel) + Me.BasedPanel.Controls.Add(Me.AuthStateLabel) + Me.BasedPanel.Controls.Add(Me.Label4) + Me.BasedPanel.Controls.Add(Me.AuthorizeButton) + Me.BasedPanel.Controls.Add(Me.Label1) + Me.BasedPanel.Controls.Add(Me.Label2) + Me.BasedPanel.Controls.Add(Me.Username) + Me.BasedPanel.Controls.Add(Me.Password) + resources.ApplyResources(Me.BasedPanel, "BasedPanel") + Me.BasedPanel.Name = "BasedPanel" ' - 'GroupBox4 + 'AuthBasicRadio ' - Me.GroupBox4.Controls.Add(Me.UserstreamPeriod) - Me.GroupBox4.Controls.Add(Me.Label83) - Me.GroupBox4.Controls.Add(Me.Label70) - Me.GroupBox4.Controls.Add(Me.StartupUserstreamCheck) - Me.GroupBox4.Location = New System.Drawing.Point(21, 20) - Me.GroupBox4.Name = "GroupBox4" - Me.GroupBox4.Size = New System.Drawing.Size(387, 60) - Me.GroupBox4.TabIndex = 43 - Me.GroupBox4.TabStop = False - Me.GroupBox4.Text = "Userstream" + resources.ApplyResources(Me.AuthBasicRadio, "AuthBasicRadio") + Me.AuthBasicRadio.Name = "AuthBasicRadio" + Me.AuthBasicRadio.UseVisualStyleBackColor = True ' - 'UserstreamPeriod + 'AuthOAuthRadio ' - Me.UserstreamPeriod.Location = New System.Drawing.Point(241, 36) - Me.UserstreamPeriod.Name = "UserstreamPeriod" - Me.UserstreamPeriod.Size = New System.Drawing.Size(65, 19) - Me.UserstreamPeriod.TabIndex = 3 + resources.ApplyResources(Me.AuthOAuthRadio, "AuthOAuthRadio") + Me.AuthOAuthRadio.Checked = True + Me.AuthOAuthRadio.Name = "AuthOAuthRadio" + Me.AuthOAuthRadio.TabStop = True + Me.AuthOAuthRadio.UseVisualStyleBackColor = True ' - 'Label83 + 'Label6 ' - Me.Label83.AutoSize = True - Me.Label83.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label83.Location = New System.Drawing.Point(8, 39) - Me.Label83.Name = "Label83" - Me.Label83.Size = New System.Drawing.Size(145, 12) - Me.Label83.TabIndex = 2 - Me.Label83.Text = "発言一覧への反映間隔(秒)" + resources.ApplyResources(Me.Label6, "Label6") + Me.Label6.Name = "Label6" ' - 'Label70 + 'AuthClearButton ' - Me.Label70.AutoSize = True - Me.Label70.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label70.Location = New System.Drawing.Point(8, 15) - Me.Label70.Name = "Label70" - Me.Label70.Size = New System.Drawing.Size(89, 12) - Me.Label70.TabIndex = 0 - Me.Label70.Text = "起動時自動接続" + resources.ApplyResources(Me.AuthClearButton, "AuthClearButton") + Me.AuthClearButton.Name = "AuthClearButton" + Me.AuthClearButton.UseVisualStyleBackColor = True ' - 'StartupUserstreamCheck + 'AuthUserLabel ' - Me.StartupUserstreamCheck.AutoSize = True - Me.StartupUserstreamCheck.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.StartupUserstreamCheck.Location = New System.Drawing.Point(241, 14) - Me.StartupUserstreamCheck.Name = "StartupUserstreamCheck" - Me.StartupUserstreamCheck.Size = New System.Drawing.Size(67, 16) - Me.StartupUserstreamCheck.TabIndex = 1 - Me.StartupUserstreamCheck.Text = "接続する" - Me.StartupUserstreamCheck.UseVisualStyleBackColor = True + Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") + Me.AuthUserLabel.Name = "AuthUserLabel" ' - 'ActionPanel + 'AuthStateLabel ' - Me.ActionPanel.BackColor = System.Drawing.SystemColors.Window - Me.ActionPanel.Controls.Add(Me.GroupBox3) - Me.ActionPanel.Controls.Add(Me.Label82) - Me.ActionPanel.Controls.Add(Me.CheckHashSupple) - Me.ActionPanel.Controls.Add(Me.Label79) - Me.ActionPanel.Controls.Add(Me.CheckAtIdSupple) - Me.ActionPanel.Controls.Add(Me.Label57) - Me.ActionPanel.Controls.Add(Me.Label56) - Me.ActionPanel.Controls.Add(Me.CheckFavRestrict) - Me.ActionPanel.Controls.Add(Me.Button3) - Me.ActionPanel.Controls.Add(Me.PlaySnd) - Me.ActionPanel.Controls.Add(Me.Label14) - Me.ActionPanel.Controls.Add(Me.Label15) - Me.ActionPanel.Controls.Add(Me.Label38) - Me.ActionPanel.Controls.Add(Me.BrowserPathText) - Me.ActionPanel.Controls.Add(Me.UReadMng) - Me.ActionPanel.Controls.Add(Me.Label44) - Me.ActionPanel.Controls.Add(Me.CheckCloseToExit) - Me.ActionPanel.Controls.Add(Me.Label40) - Me.ActionPanel.Controls.Add(Me.CheckMinimizeToTray) - Me.ActionPanel.Controls.Add(Me.Label41) - Me.ActionPanel.Controls.Add(Me.Label39) - Me.ActionPanel.Controls.Add(Me.CheckReadOldPosts) - Me.ActionPanel.Dock = System.Windows.Forms.DockStyle.Fill - Me.ActionPanel.Enabled = False - Me.ActionPanel.Location = New System.Drawing.Point(0, 0) - Me.ActionPanel.Name = "ActionPanel" - Me.ActionPanel.Size = New System.Drawing.Size(525, 368) - Me.ActionPanel.TabIndex = 52 - Me.ActionPanel.Visible = False + Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") + Me.AuthStateLabel.Name = "AuthStateLabel" ' - 'GroupBox3 + 'Label4 ' - Me.GroupBox3.Controls.Add(Me.HotkeyCheck) - Me.GroupBox3.Controls.Add(Me.HotkeyCode) - Me.GroupBox3.Controls.Add(Me.HotkeyText) - Me.GroupBox3.Controls.Add(Me.HotkeyWin) - Me.GroupBox3.Controls.Add(Me.HotkeyAlt) - Me.GroupBox3.Controls.Add(Me.HotkeyShift) - Me.GroupBox3.Controls.Add(Me.HotkeyCtrl) - Me.GroupBox3.Location = New System.Drawing.Point(21, 269) - Me.GroupBox3.Name = "GroupBox3" - Me.GroupBox3.Size = New System.Drawing.Size(474, 41) - Me.GroupBox3.TabIndex = 76 - Me.GroupBox3.TabStop = False - Me.GroupBox3.Text = "ホットキー" + resources.ApplyResources(Me.Label4, "Label4") + Me.Label4.Name = "Label4" ' - 'HotkeyCheck + 'AuthorizeButton ' - Me.HotkeyCheck.AutoSize = True - Me.HotkeyCheck.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.HotkeyCheck.Location = New System.Drawing.Point(4, 15) - Me.HotkeyCheck.Name = "HotkeyCheck" - Me.HotkeyCheck.Size = New System.Drawing.Size(48, 16) - Me.HotkeyCheck.TabIndex = 0 - Me.HotkeyCheck.Text = "有効" - Me.HotkeyCheck.UseVisualStyleBackColor = True + resources.ApplyResources(Me.AuthorizeButton, "AuthorizeButton") + Me.AuthorizeButton.Name = "AuthorizeButton" + Me.AuthorizeButton.UseVisualStyleBackColor = True ' - 'HotkeyCode + 'Label1 ' - Me.HotkeyCode.AutoSize = True - Me.HotkeyCode.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.HotkeyCode.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.HotkeyCode.Location = New System.Drawing.Point(340, 16) - Me.HotkeyCode.Name = "HotkeyCode" - Me.HotkeyCode.Size = New System.Drawing.Size(13, 14) - Me.HotkeyCode.TabIndex = 6 - Me.HotkeyCode.Text = "0" + resources.ApplyResources(Me.Label1, "Label1") + Me.Label1.Name = "Label1" ' - 'HotkeyText + 'Label2 ' - Me.HotkeyText.ImeMode = System.Windows.Forms.ImeMode.Disable - Me.HotkeyText.Location = New System.Drawing.Point(257, 13) - Me.HotkeyText.Name = "HotkeyText" - Me.HotkeyText.ReadOnly = True - Me.HotkeyText.Size = New System.Drawing.Size(77, 19) - Me.HotkeyText.TabIndex = 5 + resources.ApplyResources(Me.Label2, "Label2") + Me.Label2.Name = "Label2" ' - 'HotkeyWin + 'Username ' - Me.HotkeyWin.AutoSize = True - Me.HotkeyWin.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.HotkeyWin.Location = New System.Drawing.Point(211, 15) - Me.HotkeyWin.Name = "HotkeyWin" - Me.HotkeyWin.Size = New System.Drawing.Size(42, 16) - Me.HotkeyWin.TabIndex = 4 - Me.HotkeyWin.Text = "Win" - Me.HotkeyWin.UseVisualStyleBackColor = True + resources.ApplyResources(Me.Username, "Username") + Me.Username.Name = "Username" ' - 'HotkeyAlt + 'Password ' - Me.HotkeyAlt.AutoSize = True - Me.HotkeyAlt.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.HotkeyAlt.Location = New System.Drawing.Point(168, 15) - Me.HotkeyAlt.Name = "HotkeyAlt" - Me.HotkeyAlt.Size = New System.Drawing.Size(39, 16) - Me.HotkeyAlt.TabIndex = 3 - Me.HotkeyAlt.Text = "Alt" - Me.HotkeyAlt.UseVisualStyleBackColor = True + resources.ApplyResources(Me.Password, "Password") + Me.Password.Name = "Password" + Me.Password.UseSystemPasswordChar = True ' - 'HotkeyShift - ' - Me.HotkeyShift.AutoSize = True - Me.HotkeyShift.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.HotkeyShift.Location = New System.Drawing.Point(116, 15) - Me.HotkeyShift.Name = "HotkeyShift" - Me.HotkeyShift.Size = New System.Drawing.Size(48, 16) - Me.HotkeyShift.TabIndex = 2 - Me.HotkeyShift.Text = "Shift" - Me.HotkeyShift.UseVisualStyleBackColor = True - ' - 'HotkeyCtrl - ' - Me.HotkeyCtrl.AutoSize = True - Me.HotkeyCtrl.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.HotkeyCtrl.Location = New System.Drawing.Point(69, 15) - Me.HotkeyCtrl.Name = "HotkeyCtrl" - Me.HotkeyCtrl.Size = New System.Drawing.Size(43, 16) - Me.HotkeyCtrl.TabIndex = 1 - Me.HotkeyCtrl.Text = "Ctrl" - Me.HotkeyCtrl.UseVisualStyleBackColor = True - ' - 'Label82 - ' - Me.Label82.AutoSize = True - Me.Label82.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label82.Location = New System.Drawing.Point(26, 248) - Me.Label82.Name = "Label82" - Me.Label82.Size = New System.Drawing.Size(76, 12) - Me.Label82.TabIndex = 74 - Me.Label82.Text = "#タグ入力補助" - ' - 'CheckHashSupple - ' - Me.CheckHashSupple.AutoSize = True - Me.CheckHashSupple.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckHashSupple.Location = New System.Drawing.Point(188, 247) - Me.CheckHashSupple.Name = "CheckHashSupple" - Me.CheckHashSupple.Size = New System.Drawing.Size(67, 16) - Me.CheckHashSupple.TabIndex = 75 - Me.CheckHashSupple.Text = "使用する" - Me.CheckHashSupple.UseVisualStyleBackColor = True - ' - 'Label79 - ' - Me.Label79.AutoSize = True - Me.Label79.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label79.Location = New System.Drawing.Point(26, 226) - Me.Label79.Name = "Label79" - Me.Label79.Size = New System.Drawing.Size(72, 12) - Me.Label79.TabIndex = 72 - Me.Label79.Text = "@ID入力補助" - ' - 'CheckAtIdSupple - ' - Me.CheckAtIdSupple.AutoSize = True - Me.CheckAtIdSupple.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckAtIdSupple.Location = New System.Drawing.Point(188, 225) - Me.CheckAtIdSupple.Name = "CheckAtIdSupple" - Me.CheckAtIdSupple.Size = New System.Drawing.Size(67, 16) - Me.CheckAtIdSupple.TabIndex = 73 - Me.CheckAtIdSupple.Text = "使用する" - Me.CheckAtIdSupple.UseVisualStyleBackColor = True - ' - 'Label57 - ' - Me.Label57.AutoSize = True - Me.Label57.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label57.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label57.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label57.Location = New System.Drawing.Point(26, 210) - Me.Label57.Name = "Label57" - Me.Label57.Size = New System.Drawing.Size(340, 12) - Me.Label57.TabIndex = 71 - Me.Label57.Text = "発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨" - ' - 'Label56 - ' - Me.Label56.AutoSize = True - Me.Label56.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label56.Location = New System.Drawing.Point(26, 192) - Me.Label56.Name = "Label56" - Me.Label56.Size = New System.Drawing.Size(103, 12) - Me.Label56.TabIndex = 69 - Me.Label56.Text = "Fav結果厳密チェック" - ' - 'CheckFavRestrict - ' - Me.CheckFavRestrict.AutoSize = True - Me.CheckFavRestrict.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckFavRestrict.Location = New System.Drawing.Point(188, 191) - Me.CheckFavRestrict.Name = "CheckFavRestrict" - Me.CheckFavRestrict.Size = New System.Drawing.Size(74, 16) - Me.CheckFavRestrict.TabIndex = 70 - Me.CheckFavRestrict.Text = "チェックする" - Me.CheckFavRestrict.UseVisualStyleBackColor = True - ' - 'Button3 - ' - Me.Button3.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Button3.Location = New System.Drawing.Point(418, 157) - Me.Button3.Name = "Button3" - Me.Button3.Size = New System.Drawing.Size(75, 21) - Me.Button3.TabIndex = 65 - Me.Button3.Text = "参照" - Me.Button3.UseVisualStyleBackColor = True - ' - 'PlaySnd - ' - Me.PlaySnd.AutoSize = True - Me.PlaySnd.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.PlaySnd.Location = New System.Drawing.Point(184, 17) - Me.PlaySnd.Name = "PlaySnd" - Me.PlaySnd.Size = New System.Drawing.Size(67, 16) - Me.PlaySnd.TabIndex = 40 - Me.PlaySnd.Text = "再生する" - Me.PlaySnd.UseVisualStyleBackColor = True - ' - 'Label14 - ' - Me.Label14.AutoSize = True - Me.Label14.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label14.Location = New System.Drawing.Point(22, 18) - Me.Label14.Name = "Label14" - Me.Label14.Size = New System.Drawing.Size(66, 12) - Me.Label14.TabIndex = 39 - Me.Label14.Text = "サウンド再生" - ' - 'Label15 - ' - Me.Label15.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label15.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label15.Location = New System.Drawing.Point(22, 36) - Me.Label15.Name = "Label15" - Me.Label15.Size = New System.Drawing.Size(408, 22) - Me.Label15.TabIndex = 41 - Me.Label15.Text = "タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。" - ' - 'Label38 - ' - Me.Label38.AutoSize = True - Me.Label38.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label38.Location = New System.Drawing.Point(24, 70) - Me.Label38.Name = "Label38" - Me.Label38.Size = New System.Drawing.Size(53, 12) - Me.Label38.TabIndex = 42 - Me.Label38.Text = "未読管理" - ' - 'BrowserPathText - ' - Me.BrowserPathText.Location = New System.Drawing.Point(184, 160) - Me.BrowserPathText.Name = "BrowserPathText" - Me.BrowserPathText.Size = New System.Drawing.Size(228, 19) - Me.BrowserPathText.TabIndex = 64 - ' - 'UReadMng - ' - Me.UReadMng.AutoSize = True - Me.UReadMng.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.UReadMng.Location = New System.Drawing.Point(184, 69) - Me.UReadMng.Name = "UReadMng" - Me.UReadMng.Size = New System.Drawing.Size(43, 16) - Me.UReadMng.TabIndex = 43 - Me.UReadMng.Text = "する" - Me.UReadMng.UseVisualStyleBackColor = True - ' - 'Label44 - ' - Me.Label44.AutoSize = True - Me.Label44.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label44.Location = New System.Drawing.Point(21, 164) - Me.Label44.Name = "Label44" - Me.Label44.Size = New System.Drawing.Size(60, 12) - Me.Label44.TabIndex = 63 - Me.Label44.Text = "ブラウザパス" - ' - 'CheckCloseToExit - ' - Me.CheckCloseToExit.AutoSize = True - Me.CheckCloseToExit.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckCloseToExit.Location = New System.Drawing.Point(184, 113) - Me.CheckCloseToExit.Name = "CheckCloseToExit" - Me.CheckCloseToExit.Size = New System.Drawing.Size(67, 16) - Me.CheckCloseToExit.TabIndex = 47 - Me.CheckCloseToExit.Text = "終了する" - Me.CheckCloseToExit.UseVisualStyleBackColor = True - ' - 'Label40 - ' - Me.Label40.AutoSize = True - Me.Label40.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label40.Location = New System.Drawing.Point(22, 114) - Me.Label40.Name = "Label40" - Me.Label40.Size = New System.Drawing.Size(100, 12) - Me.Label40.TabIndex = 46 - Me.Label40.Text = "×ボタンを押したとき" - ' - 'CheckMinimizeToTray - ' - Me.CheckMinimizeToTray.AutoSize = True - Me.CheckMinimizeToTray.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckMinimizeToTray.Location = New System.Drawing.Point(184, 135) - Me.CheckMinimizeToTray.Name = "CheckMinimizeToTray" - Me.CheckMinimizeToTray.Size = New System.Drawing.Size(90, 16) - Me.CheckMinimizeToTray.TabIndex = 49 - Me.CheckMinimizeToTray.Text = "アイコン化する" - Me.CheckMinimizeToTray.UseVisualStyleBackColor = True - ' - 'Label41 - ' - Me.Label41.AutoSize = True - Me.Label41.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label41.Location = New System.Drawing.Point(22, 136) - Me.Label41.Name = "Label41" - Me.Label41.Size = New System.Drawing.Size(76, 12) - Me.Label41.TabIndex = 48 - Me.Label41.Text = "最小化したとき" - ' - 'Label39 - ' - Me.Label39.AutoSize = True - Me.Label39.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label39.Location = New System.Drawing.Point(22, 92) - Me.Label39.Name = "Label39" - Me.Label39.Size = New System.Drawing.Size(89, 12) - Me.Label39.TabIndex = 44 - Me.Label39.Text = "新着時未読クリア" - ' - 'CheckReadOldPosts - ' - Me.CheckReadOldPosts.AutoSize = True - Me.CheckReadOldPosts.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckReadOldPosts.Location = New System.Drawing.Point(184, 91) - Me.CheckReadOldPosts.Name = "CheckReadOldPosts" - Me.CheckReadOldPosts.Size = New System.Drawing.Size(43, 16) - Me.CheckReadOldPosts.TabIndex = 45 - Me.CheckReadOldPosts.Text = "する" - Me.CheckReadOldPosts.UseVisualStyleBackColor = True - ' - 'FontPanel2 - ' - Me.FontPanel2.Controls.Add(Me.GroupBox5) - Me.FontPanel2.Dock = System.Windows.Forms.DockStyle.Fill - Me.FontPanel2.Enabled = False - Me.FontPanel2.Location = New System.Drawing.Point(0, 0) - Me.FontPanel2.Name = "FontPanel2" - Me.FontPanel2.Size = New System.Drawing.Size(525, 368) - Me.FontPanel2.TabIndex = 25 - Me.FontPanel2.Visible = False - ' - 'GroupBox5 - ' - Me.GroupBox5.Controls.Add(Me.btnInputFont) - Me.GroupBox5.Controls.Add(Me.btnInputBackcolor) - Me.GroupBox5.Controls.Add(Me.btnAtTo) - Me.GroupBox5.Controls.Add(Me.btnListBack) - Me.GroupBox5.Controls.Add(Me.btnAtFromTarget) - Me.GroupBox5.Controls.Add(Me.btnAtTarget) - Me.GroupBox5.Controls.Add(Me.btnTarget) - Me.GroupBox5.Controls.Add(Me.btnAtSelf) - Me.GroupBox5.Controls.Add(Me.btnSelf) - Me.GroupBox5.Controls.Add(Me.lblInputFont) - Me.GroupBox5.Controls.Add(Me.lblInputBackcolor) - Me.GroupBox5.Controls.Add(Me.lblAtTo) - Me.GroupBox5.Controls.Add(Me.lblListBackcolor) - Me.GroupBox5.Controls.Add(Me.lblAtFromTarget) - Me.GroupBox5.Controls.Add(Me.lblAtTarget) - Me.GroupBox5.Controls.Add(Me.lblTarget) - Me.GroupBox5.Controls.Add(Me.lblAtSelf) - Me.GroupBox5.Controls.Add(Me.lblSelf) - Me.GroupBox5.Controls.Add(Me.ButtonBackToDefaultFontColor2) - Me.GroupBox5.Controls.Add(Me.Label89) - Me.GroupBox5.Controls.Add(Me.Label91) - Me.GroupBox5.Controls.Add(Me.Label95) - Me.GroupBox5.Controls.Add(Me.Label99) - Me.GroupBox5.Controls.Add(Me.Label101) - Me.GroupBox5.Controls.Add(Me.Label103) - Me.GroupBox5.Controls.Add(Me.Label105) - Me.GroupBox5.Controls.Add(Me.Label107) - Me.GroupBox5.Controls.Add(Me.Label109) - Me.GroupBox5.Location = New System.Drawing.Point(22, 18) - Me.GroupBox5.Name = "GroupBox5" - Me.GroupBox5.Size = New System.Drawing.Size(489, 290) - Me.GroupBox5.TabIndex = 1 - Me.GroupBox5.TabStop = False - Me.GroupBox5.Text = "フォント&色設定" - ' - 'btnInputFont - ' - Me.btnInputFont.AutoSize = True - Me.btnInputFont.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnInputFont.Location = New System.Drawing.Point(398, 216) - Me.btnInputFont.Name = "btnInputFont" - Me.btnInputFont.Size = New System.Drawing.Size(75, 22) - Me.btnInputFont.TabIndex = 69 - Me.btnInputFont.Text = "フォント&&色" - Me.btnInputFont.UseVisualStyleBackColor = True - ' - 'btnInputBackcolor - ' - Me.btnInputBackcolor.AutoSize = True - Me.btnInputBackcolor.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnInputBackcolor.Location = New System.Drawing.Point(398, 191) - Me.btnInputBackcolor.Name = "btnInputBackcolor" - Me.btnInputBackcolor.Size = New System.Drawing.Size(75, 22) - Me.btnInputBackcolor.TabIndex = 68 - Me.btnInputBackcolor.Text = "背景色" - Me.btnInputBackcolor.UseVisualStyleBackColor = True - ' - 'btnAtTo - ' - Me.btnAtTo.AutoSize = True - Me.btnAtTo.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnAtTo.Location = New System.Drawing.Point(398, 141) - Me.btnAtTo.Name = "btnAtTo" - Me.btnAtTo.Size = New System.Drawing.Size(75, 22) - Me.btnAtTo.TabIndex = 66 - Me.btnAtTo.Text = "背景色" - Me.btnAtTo.UseVisualStyleBackColor = True - ' - 'btnListBack - ' - Me.btnListBack.AutoSize = True - Me.btnListBack.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnListBack.Location = New System.Drawing.Point(398, 166) - Me.btnListBack.Name = "btnListBack" - Me.btnListBack.Size = New System.Drawing.Size(75, 22) - Me.btnListBack.TabIndex = 67 - Me.btnListBack.Text = "背景色" - Me.btnListBack.UseVisualStyleBackColor = True - ' - 'btnAtFromTarget - ' - Me.btnAtFromTarget.AutoSize = True - Me.btnAtFromTarget.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnAtFromTarget.Location = New System.Drawing.Point(398, 116) - Me.btnAtFromTarget.Name = "btnAtFromTarget" - Me.btnAtFromTarget.Size = New System.Drawing.Size(75, 22) - Me.btnAtFromTarget.TabIndex = 65 - Me.btnAtFromTarget.Text = "背景色" - Me.btnAtFromTarget.UseVisualStyleBackColor = True - ' - 'btnAtTarget - ' - Me.btnAtTarget.AutoSize = True - Me.btnAtTarget.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnAtTarget.Location = New System.Drawing.Point(398, 91) - Me.btnAtTarget.Name = "btnAtTarget" - Me.btnAtTarget.Size = New System.Drawing.Size(75, 22) - Me.btnAtTarget.TabIndex = 64 - Me.btnAtTarget.Text = "背景色" - Me.btnAtTarget.UseVisualStyleBackColor = True - ' - 'btnTarget - ' - Me.btnTarget.AutoSize = True - Me.btnTarget.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnTarget.Location = New System.Drawing.Point(398, 66) - Me.btnTarget.Name = "btnTarget" - Me.btnTarget.Size = New System.Drawing.Size(75, 22) - Me.btnTarget.TabIndex = 63 - Me.btnTarget.Text = "背景色" - Me.btnTarget.UseVisualStyleBackColor = True - ' - 'btnAtSelf - ' - Me.btnAtSelf.AutoSize = True - Me.btnAtSelf.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnAtSelf.Location = New System.Drawing.Point(398, 41) - Me.btnAtSelf.Name = "btnAtSelf" - Me.btnAtSelf.Size = New System.Drawing.Size(75, 22) - Me.btnAtSelf.TabIndex = 62 - Me.btnAtSelf.Text = "背景色" - Me.btnAtSelf.UseVisualStyleBackColor = True - ' - 'btnSelf - ' - Me.btnSelf.AutoSize = True - Me.btnSelf.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnSelf.Location = New System.Drawing.Point(398, 16) - Me.btnSelf.Name = "btnSelf" - Me.btnSelf.Size = New System.Drawing.Size(75, 22) - Me.btnSelf.TabIndex = 61 - Me.btnSelf.Text = "背景色" - Me.btnSelf.UseVisualStyleBackColor = True - ' - 'lblInputFont - ' - Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblInputFont.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblInputFont.Location = New System.Drawing.Point(214, 220) - Me.lblInputFont.Name = "lblInputFont" - Me.lblInputFont.Size = New System.Drawing.Size(102, 19) - Me.lblInputFont.TabIndex = 60 - Me.lblInputFont.Text = "This is sample." - Me.lblInputFont.TextAlign = System.Drawing.ContentAlignment.MiddleLeft - ' - 'lblInputBackcolor - ' - Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblInputBackcolor.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblInputBackcolor.Location = New System.Drawing.Point(214, 195) - Me.lblInputBackcolor.Name = "lblInputBackcolor" - Me.lblInputBackcolor.Size = New System.Drawing.Size(102, 19) - Me.lblInputBackcolor.TabIndex = 59 - Me.lblInputBackcolor.Text = "This is sample." - Me.lblInputBackcolor.TextAlign = System.Drawing.ContentAlignment.MiddleLeft - ' - 'lblAtTo - ' - Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtTo.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblAtTo.Location = New System.Drawing.Point(214, 145) - Me.lblAtTo.Name = "lblAtTo" - Me.lblAtTo.Size = New System.Drawing.Size(102, 19) - Me.lblAtTo.TabIndex = 57 - Me.lblAtTo.Text = "This is sample." - Me.lblAtTo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft - ' - 'lblListBackcolor - ' - Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblListBackcolor.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblListBackcolor.Location = New System.Drawing.Point(214, 170) - Me.lblListBackcolor.Name = "lblListBackcolor" - Me.lblListBackcolor.Size = New System.Drawing.Size(102, 19) - Me.lblListBackcolor.TabIndex = 58 - Me.lblListBackcolor.Text = "This is sample." - Me.lblListBackcolor.TextAlign = System.Drawing.ContentAlignment.MiddleLeft - ' - 'lblAtFromTarget - ' - Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtFromTarget.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblAtFromTarget.Location = New System.Drawing.Point(214, 120) - Me.lblAtFromTarget.Name = "lblAtFromTarget" - Me.lblAtFromTarget.Size = New System.Drawing.Size(102, 19) - Me.lblAtFromTarget.TabIndex = 56 - Me.lblAtFromTarget.Text = "This is sample." - Me.lblAtFromTarget.TextAlign = System.Drawing.ContentAlignment.MiddleLeft - ' - 'lblAtTarget - ' - Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtTarget.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblAtTarget.Location = New System.Drawing.Point(214, 95) - Me.lblAtTarget.Name = "lblAtTarget" - Me.lblAtTarget.Size = New System.Drawing.Size(102, 19) - Me.lblAtTarget.TabIndex = 55 - Me.lblAtTarget.Text = "This is sample." - Me.lblAtTarget.TextAlign = System.Drawing.ContentAlignment.MiddleLeft - ' - 'lblTarget - ' - Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblTarget.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblTarget.Location = New System.Drawing.Point(214, 70) - Me.lblTarget.Name = "lblTarget" - Me.lblTarget.Size = New System.Drawing.Size(102, 19) - Me.lblTarget.TabIndex = 54 - Me.lblTarget.Text = "This is sample." - Me.lblTarget.TextAlign = System.Drawing.ContentAlignment.MiddleLeft - ' - 'lblAtSelf - ' - Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtSelf.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblAtSelf.Location = New System.Drawing.Point(214, 45) - Me.lblAtSelf.Name = "lblAtSelf" - Me.lblAtSelf.Size = New System.Drawing.Size(102, 19) - Me.lblAtSelf.TabIndex = 53 - Me.lblAtSelf.Text = "This is sample." - Me.lblAtSelf.TextAlign = System.Drawing.ContentAlignment.MiddleLeft - ' - 'lblSelf - ' - Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblSelf.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblSelf.Location = New System.Drawing.Point(214, 19) - Me.lblSelf.Name = "lblSelf" - Me.lblSelf.Size = New System.Drawing.Size(102, 19) - Me.lblSelf.TabIndex = 52 - Me.lblSelf.Text = "This is sample." - Me.lblSelf.TextAlign = System.Drawing.ContentAlignment.MiddleLeft - ' - 'ButtonBackToDefaultFontColor2 - ' - Me.ButtonBackToDefaultFontColor2.AutoSize = True - Me.ButtonBackToDefaultFontColor2.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.ButtonBackToDefaultFontColor2.Location = New System.Drawing.Point(191, 252) - Me.ButtonBackToDefaultFontColor2.Name = "ButtonBackToDefaultFontColor2" - Me.ButtonBackToDefaultFontColor2.Size = New System.Drawing.Size(90, 22) - Me.ButtonBackToDefaultFontColor2.TabIndex = 51 - Me.ButtonBackToDefaultFontColor2.Text = "デフォルトに戻す" - Me.ButtonBackToDefaultFontColor2.UseVisualStyleBackColor = True - ' - 'Label89 - ' - Me.Label89.AutoSize = True - Me.Label89.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label89.Location = New System.Drawing.Point(9, 220) - Me.Label89.Name = "Label89" - Me.Label89.Size = New System.Drawing.Size(74, 12) - Me.Label89.TabIndex = 48 - Me.Label89.Text = "入力欄フォント" - ' - 'Label91 - ' - Me.Label91.AutoSize = True - Me.Label91.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label91.Location = New System.Drawing.Point(9, 195) - Me.Label91.Name = "Label91" - Me.Label91.Size = New System.Drawing.Size(131, 12) - Me.Label91.TabIndex = 45 - Me.Label91.Text = "入力欄アクティブ時背景色" - ' - 'Label95 - ' - Me.Label95.AutoSize = True - Me.Label95.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label95.Location = New System.Drawing.Point(9, 145) - Me.Label95.Name = "Label95" - Me.Label95.Size = New System.Drawing.Size(102, 12) - Me.Label95.TabIndex = 39 - Me.Label95.Text = "その発言の@先発言" - ' - 'Label99 - ' - Me.Label99.AutoSize = True - Me.Label99.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label99.Location = New System.Drawing.Point(9, 170) - Me.Label99.Name = "Label99" - Me.Label99.Size = New System.Drawing.Size(53, 12) - Me.Label99.TabIndex = 42 - Me.Label99.Text = "一般発言" - ' - 'Label101 - ' - Me.Label101.AutoSize = True - Me.Label101.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label101.Location = New System.Drawing.Point(9, 120) - Me.Label101.Name = "Label101" - Me.Label101.Size = New System.Drawing.Size(134, 12) - Me.Label101.TabIndex = 36 - Me.Label101.Text = "その発言の@先の人の発言" - ' - 'Label103 - ' - Me.Label103.AutoSize = True - Me.Label103.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label103.Location = New System.Drawing.Point(9, 95) - Me.Label103.Name = "Label103" - Me.Label103.Size = New System.Drawing.Size(88, 12) - Me.Label103.TabIndex = 33 - Me.Label103.Text = "その人への@返信" - ' - 'Label105 - ' - Me.Label105.AutoSize = True - Me.Label105.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label105.Location = New System.Drawing.Point(9, 70) - Me.Label105.Name = "Label105" - Me.Label105.Size = New System.Drawing.Size(70, 12) - Me.Label105.TabIndex = 30 - Me.Label105.Text = "その人の発言" - ' - 'Label107 - ' - Me.Label107.AutoSize = True - Me.Label107.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label107.Location = New System.Drawing.Point(9, 45) - Me.Label107.Name = "Label107" - Me.Label107.Size = New System.Drawing.Size(81, 12) - Me.Label107.TabIndex = 27 - Me.Label107.Text = "自分への@返信" - ' - 'Label109 - ' - Me.Label109.AutoSize = True - Me.Label109.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label109.Location = New System.Drawing.Point(9, 20) - Me.Label109.Name = "Label109" - Me.Label109.Size = New System.Drawing.Size(63, 12) - Me.Label109.TabIndex = 24 - Me.Label109.Text = "自分の発言" - ' 'GetPeriodPanel ' Me.GetPeriodPanel.BackColor = System.Drawing.SystemColors.Window @@ -1137,835 +396,87 @@ Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) Me.GetPeriodPanel.Controls.Add(Me.Label5) Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) - Me.GetPeriodPanel.Dock = System.Windows.Forms.DockStyle.Fill - Me.GetPeriodPanel.Enabled = False - Me.GetPeriodPanel.Location = New System.Drawing.Point(0, 0) + resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") Me.GetPeriodPanel.Name = "GetPeriodPanel" - Me.GetPeriodPanel.Size = New System.Drawing.Size(525, 368) - Me.GetPeriodPanel.TabIndex = 1 - Me.GetPeriodPanel.Visible = False ' 'TimelinePeriod ' - Me.TimelinePeriod.Location = New System.Drawing.Point(258, 21) + resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") Me.TimelinePeriod.Name = "TimelinePeriod" - Me.TimelinePeriod.Size = New System.Drawing.Size(65, 19) - Me.TimelinePeriod.TabIndex = 29 ' 'Label3 ' - Me.Label3.AutoSize = True - Me.Label3.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label3.Location = New System.Drawing.Point(25, 24) + resources.ApplyResources(Me.Label3, "Label3") Me.Label3.Name = "Label3" - Me.Label3.Size = New System.Drawing.Size(130, 12) - Me.Label3.TabIndex = 28 - Me.Label3.Text = "タイムライン更新間隔(秒)" ' 'ButtonApiCalc ' - Me.ButtonApiCalc.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.ButtonApiCalc.Location = New System.Drawing.Point(258, 167) + resources.ApplyResources(Me.ButtonApiCalc, "ButtonApiCalc") Me.ButtonApiCalc.Name = "ButtonApiCalc" - Me.ButtonApiCalc.Size = New System.Drawing.Size(75, 23) - Me.ButtonApiCalc.TabIndex = 41 - Me.ButtonApiCalc.Text = "再計算" Me.ButtonApiCalc.UseVisualStyleBackColor = True ' 'LabelPostAndGet ' - Me.LabelPostAndGet.AutoSize = True - Me.LabelPostAndGet.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.LabelPostAndGet.Location = New System.Drawing.Point(31, 207) + resources.ApplyResources(Me.LabelPostAndGet, "LabelPostAndGet") Me.LabelPostAndGet.Name = "LabelPostAndGet" - Me.LabelPostAndGet.Size = New System.Drawing.Size(285, 12) - Me.LabelPostAndGet.TabIndex = 42 - Me.LabelPostAndGet.Text = "投稿時取得が有効のため、投稿のたびにAPIを消費します。" ' 'LabelApiUsing ' - Me.LabelApiUsing.AutoSize = True - Me.LabelApiUsing.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.LabelApiUsing.Location = New System.Drawing.Point(31, 175) + resources.ApplyResources(Me.LabelApiUsing, "LabelApiUsing") Me.LabelApiUsing.Name = "LabelApiUsing" - Me.LabelApiUsing.Size = New System.Drawing.Size(23, 12) - Me.LabelApiUsing.TabIndex = 40 - Me.LabelApiUsing.Text = "999" - Me.LabelApiUsing.TextAlign = System.Drawing.ContentAlignment.MiddleRight ' 'Label33 ' - Me.Label33.AutoSize = True - Me.Label33.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label33.Location = New System.Drawing.Point(25, 138) + resources.ApplyResources(Me.Label33, "Label33") Me.Label33.Name = "Label33" - Me.Label33.Size = New System.Drawing.Size(102, 12) - Me.Label33.TabIndex = 38 - Me.Label33.Text = "Lists更新間隔(秒)" ' 'ListsPeriod ' - Me.ListsPeriod.Location = New System.Drawing.Point(258, 135) + resources.ApplyResources(Me.ListsPeriod, "ListsPeriod") Me.ListsPeriod.Name = "ListsPeriod" - Me.ListsPeriod.Size = New System.Drawing.Size(65, 19) - Me.ListsPeriod.TabIndex = 39 ' 'Label7 ' - Me.Label7.AutoSize = True - Me.Label7.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label7.Location = New System.Drawing.Point(25, 114) + resources.ApplyResources(Me.Label7, "Label7") Me.Label7.Name = "Label7" - Me.Label7.Size = New System.Drawing.Size(137, 12) - Me.Label7.TabIndex = 36 - Me.Label7.Text = "Twitter検索更新間隔(秒)" ' 'PubSearchPeriod ' - Me.PubSearchPeriod.Location = New System.Drawing.Point(258, 111) + resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") Me.PubSearchPeriod.Name = "PubSearchPeriod" - Me.PubSearchPeriod.Size = New System.Drawing.Size(65, 19) - Me.PubSearchPeriod.TabIndex = 37 ' 'Label69 ' - Me.Label69.AutoSize = True - Me.Label69.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label69.Location = New System.Drawing.Point(25, 66) + resources.ApplyResources(Me.Label69, "Label69") Me.Label69.Name = "Label69" - Me.Label69.Size = New System.Drawing.Size(123, 12) - Me.Label69.TabIndex = 32 - Me.Label69.Text = "Mentions更新間隔(秒)" ' 'ReplyPeriod ' - Me.ReplyPeriod.Location = New System.Drawing.Point(258, 63) + resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") Me.ReplyPeriod.Name = "ReplyPeriod" - Me.ReplyPeriod.Size = New System.Drawing.Size(65, 19) - Me.ReplyPeriod.TabIndex = 33 ' 'CheckPostAndGet ' - Me.CheckPostAndGet.AutoSize = True - Me.CheckPostAndGet.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckPostAndGet.Location = New System.Drawing.Point(35, 43) + resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") Me.CheckPostAndGet.Name = "CheckPostAndGet" - Me.CheckPostAndGet.Size = New System.Drawing.Size(84, 16) - Me.CheckPostAndGet.TabIndex = 30 - Me.CheckPostAndGet.Text = "投稿時取得" Me.CheckPostAndGet.UseVisualStyleBackColor = True ' 'CheckPeriodAdjust ' - Me.CheckPeriodAdjust.AutoSize = True - Me.CheckPeriodAdjust.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckPeriodAdjust.Location = New System.Drawing.Point(252, 43) + resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" - Me.CheckPeriodAdjust.Size = New System.Drawing.Size(91, 16) - Me.CheckPeriodAdjust.TabIndex = 31 - Me.CheckPeriodAdjust.Text = "自動調整する" Me.CheckPeriodAdjust.UseVisualStyleBackColor = True - Me.CheckPeriodAdjust.Visible = False ' 'Label5 ' - Me.Label5.AutoSize = True - Me.Label5.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label5.Location = New System.Drawing.Point(25, 90) + resources.ApplyResources(Me.Label5, "Label5") Me.Label5.Name = "Label5" - Me.Label5.Size = New System.Drawing.Size(94, 12) - Me.Label5.TabIndex = 34 - Me.Label5.Text = "DM更新間隔(秒)" ' 'DMPeriod ' - Me.DMPeriod.Location = New System.Drawing.Point(258, 87) + resources.ApplyResources(Me.DMPeriod, "DMPeriod") Me.DMPeriod.Name = "DMPeriod" - Me.DMPeriod.Size = New System.Drawing.Size(65, 19) - Me.DMPeriod.TabIndex = 35 ' - 'TweetPrvPanel - ' - Me.TweetPrvPanel.Controls.Add(Me.Label47) - Me.TweetPrvPanel.Controls.Add(Me.LabelDateTimeFormatApplied) - Me.TweetPrvPanel.Controls.Add(Me.Label62) - Me.TweetPrvPanel.Controls.Add(Me.CmbDateTimeFormat) - Me.TweetPrvPanel.Controls.Add(Me.Label23) - Me.TweetPrvPanel.Controls.Add(Me.Label11) - Me.TweetPrvPanel.Controls.Add(Me.IconSize) - Me.TweetPrvPanel.Controls.Add(Me.TextBox3) - Me.TweetPrvPanel.Controls.Add(Me.Label21) - Me.TweetPrvPanel.Controls.Add(Me.CheckSortOrderLock) - Me.TweetPrvPanel.Controls.Add(Me.Label78) - Me.TweetPrvPanel.Controls.Add(Me.CheckShowGrid) - Me.TweetPrvPanel.Controls.Add(Me.Label73) - Me.TweetPrvPanel.Controls.Add(Me.chkReadOwnPost) - Me.TweetPrvPanel.Controls.Add(Me.Label17) - Me.TweetPrvPanel.Controls.Add(Me.chkUnreadStyle) - Me.TweetPrvPanel.Controls.Add(Me.Label16) - Me.TweetPrvPanel.Controls.Add(Me.OneWayLv) - Me.TweetPrvPanel.Dock = System.Windows.Forms.DockStyle.Fill - Me.TweetPrvPanel.Enabled = False - Me.TweetPrvPanel.Location = New System.Drawing.Point(0, 0) - Me.TweetPrvPanel.Name = "TweetPrvPanel" - Me.TweetPrvPanel.Size = New System.Drawing.Size(525, 368) - Me.TweetPrvPanel.TabIndex = 86 - Me.TweetPrvPanel.Visible = False - ' - 'Label47 - ' - Me.Label47.AutoSize = True - Me.Label47.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label47.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label47.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label47.Location = New System.Drawing.Point(214, 134) - Me.Label47.Name = "Label47" - Me.Label47.Size = New System.Drawing.Size(131, 12) - Me.Label47.TabIndex = 104 - Me.Label47.Text = "再起動後有効になります。" - ' - 'LabelDateTimeFormatApplied - ' - Me.LabelDateTimeFormatApplied.AutoSize = True - Me.LabelDateTimeFormatApplied.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.LabelDateTimeFormatApplied.Location = New System.Drawing.Point(264, 90) - Me.LabelDateTimeFormatApplied.Name = "LabelDateTimeFormatApplied" - Me.LabelDateTimeFormatApplied.Size = New System.Drawing.Size(44, 12) - Me.LabelDateTimeFormatApplied.TabIndex = 100 - Me.LabelDateTimeFormatApplied.Text = "Label63" - ' - 'Label62 - ' - Me.Label62.AutoSize = True - Me.Label62.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label62.Location = New System.Drawing.Point(214, 90) - Me.Label62.Name = "Label62" - Me.Label62.Size = New System.Drawing.Size(44, 12) - Me.Label62.TabIndex = 99 - Me.Label62.Text = "Sample:" - ' - 'CmbDateTimeFormat - ' - Me.CmbDateTimeFormat.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.CmbDateTimeFormat.Items.AddRange(New Object() {"yyyy/MM/dd H:mm:ss", "yy/M/d H:mm:ss", "H:mm:ss yy/M/d", "M/d H:mm:ss", "M/d H:mm", "H:mm:ss M/d", "H:mm:ss", "H:mm", "tt h:mm", "M/d tt h:mm:ss", "M/d tt h:mm"}) - Me.CmbDateTimeFormat.Location = New System.Drawing.Point(216, 67) - Me.CmbDateTimeFormat.Name = "CmbDateTimeFormat" - Me.CmbDateTimeFormat.Size = New System.Drawing.Size(199, 20) - Me.CmbDateTimeFormat.TabIndex = 98 - ' - 'Label23 - ' - Me.Label23.AutoSize = True - Me.Label23.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label23.Location = New System.Drawing.Point(25, 70) - Me.Label23.Name = "Label23" - Me.Label23.Size = New System.Drawing.Size(113, 12) - Me.Label23.TabIndex = 97 - Me.Label23.Text = "リストの日時フォーマット" - ' - 'Label11 - ' - Me.Label11.AutoSize = True - Me.Label11.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label11.Location = New System.Drawing.Point(25, 108) - Me.Label11.Name = "Label11" - Me.Label11.Size = New System.Drawing.Size(163, 12) - Me.Label11.TabIndex = 101 - Me.Label11.Text = "リストのアイコンサイズ(初期値16)" - ' - 'IconSize - ' - Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.IconSize.FormattingEnabled = True - Me.IconSize.Items.AddRange(New Object() {"none", "16*16", "24*24", "48*48", "48*48(2Column)"}) - Me.IconSize.Location = New System.Drawing.Point(252, 105) - Me.IconSize.Name = "IconSize" - Me.IconSize.Size = New System.Drawing.Size(161, 20) - Me.IconSize.TabIndex = 103 - ' - 'TextBox3 - ' - Me.TextBox3.Enabled = False - Me.TextBox3.Location = New System.Drawing.Point(216, 106) - Me.TextBox3.Name = "TextBox3" - Me.TextBox3.Size = New System.Drawing.Size(34, 19) - Me.TextBox3.TabIndex = 102 - ' - 'Label21 - ' - Me.Label21.AutoSize = True - Me.Label21.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label21.Location = New System.Drawing.Point(27, 202) - Me.Label21.Name = "Label21" - Me.Label21.Size = New System.Drawing.Size(44, 12) - Me.Label21.TabIndex = 95 - Me.Label21.Text = "ソート順" - ' - 'CheckSortOrderLock - ' - Me.CheckSortOrderLock.AutoSize = True - Me.CheckSortOrderLock.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckSortOrderLock.Location = New System.Drawing.Point(218, 202) - Me.CheckSortOrderLock.Name = "CheckSortOrderLock" - Me.CheckSortOrderLock.Size = New System.Drawing.Size(67, 16) - Me.CheckSortOrderLock.TabIndex = 96 - Me.CheckSortOrderLock.Text = "ロックする" - Me.CheckSortOrderLock.UseVisualStyleBackColor = True - ' - 'Label78 - ' - Me.Label78.AutoSize = True - Me.Label78.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label78.Location = New System.Drawing.Point(27, 180) - Me.Label78.Name = "Label78" - Me.Label78.Size = New System.Drawing.Size(73, 12) - Me.Label78.TabIndex = 93 - Me.Label78.Text = "リスト区切り線" - ' - 'CheckShowGrid - ' - Me.CheckShowGrid.AutoSize = True - Me.CheckShowGrid.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckShowGrid.Location = New System.Drawing.Point(218, 180) - Me.CheckShowGrid.Name = "CheckShowGrid" - Me.CheckShowGrid.Size = New System.Drawing.Size(67, 16) - Me.CheckShowGrid.TabIndex = 94 - Me.CheckShowGrid.Text = "表示する" - Me.CheckShowGrid.UseVisualStyleBackColor = True - ' - 'Label73 - ' - Me.Label73.AutoSize = True - Me.Label73.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label73.Location = New System.Drawing.Point(27, 159) - Me.Label73.Name = "Label73" - Me.Label73.Size = New System.Drawing.Size(87, 12) - Me.Label73.TabIndex = 91 - Me.Label73.Text = "自発言の既読化" - ' - 'chkReadOwnPost - ' - Me.chkReadOwnPost.AutoSize = True - Me.chkReadOwnPost.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.chkReadOwnPost.Location = New System.Drawing.Point(218, 158) - Me.chkReadOwnPost.Name = "chkReadOwnPost" - Me.chkReadOwnPost.Size = New System.Drawing.Size(76, 16) - Me.chkReadOwnPost.TabIndex = 92 - Me.chkReadOwnPost.Text = "既読にする" - Me.chkReadOwnPost.UseVisualStyleBackColor = True - ' - 'Label17 - ' - Me.Label17.AutoSize = True - Me.Label17.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label17.Location = New System.Drawing.Point(26, 43) - Me.Label17.Name = "Label17" - Me.Label17.Size = New System.Drawing.Size(158, 12) - Me.Label17.TabIndex = 83 - Me.Label17.Text = "未読スタイル(フォント&色)適用" - ' - 'chkUnreadStyle - ' - Me.chkUnreadStyle.AutoSize = True - Me.chkUnreadStyle.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.chkUnreadStyle.Location = New System.Drawing.Point(217, 42) - Me.chkUnreadStyle.Name = "chkUnreadStyle" - Me.chkUnreadStyle.Size = New System.Drawing.Size(67, 16) - Me.chkUnreadStyle.TabIndex = 84 - Me.chkUnreadStyle.Text = "適用する" - Me.chkUnreadStyle.UseVisualStyleBackColor = True - ' - 'Label16 - ' - Me.Label16.AutoSize = True - Me.Label16.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label16.Location = New System.Drawing.Point(26, 21) - Me.Label16.Name = "Label16" - Me.Label16.Size = New System.Drawing.Size(97, 12) - Me.Label16.TabIndex = 81 - Me.Label16.Text = "片思い色分け表示" - ' - 'OneWayLv - ' - Me.OneWayLv.AutoSize = True - Me.OneWayLv.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.OneWayLv.Location = New System.Drawing.Point(217, 20) - Me.OneWayLv.Name = "OneWayLv" - Me.OneWayLv.Size = New System.Drawing.Size(43, 16) - Me.OneWayLv.TabIndex = 82 - Me.OneWayLv.Text = "する" - Me.OneWayLv.UseVisualStyleBackColor = True - ' - 'PreviewPanel - ' - Me.PreviewPanel.Controls.Add(Me.ReplyIconStateCombo) - Me.PreviewPanel.Controls.Add(Me.Label72) - Me.PreviewPanel.Controls.Add(Me.Label43) - Me.PreviewPanel.Controls.Add(Me.Label48) - Me.PreviewPanel.Controls.Add(Me.ChkNewMentionsBlink) - Me.PreviewPanel.Controls.Add(Me.chkTabIconDisp) - Me.PreviewPanel.Controls.Add(Me.Label35) - Me.PreviewPanel.Controls.Add(Me.CheckPreviewEnable) - Me.PreviewPanel.Controls.Add(Me.Label81) - Me.PreviewPanel.Controls.Add(Me.LanguageCombo) - Me.PreviewPanel.Controls.Add(Me.Label13) - Me.PreviewPanel.Controls.Add(Me.CheckAlwaysTop) - Me.PreviewPanel.Controls.Add(Me.Label58) - Me.PreviewPanel.Controls.Add(Me.Label75) - Me.PreviewPanel.Controls.Add(Me.CheckMonospace) - Me.PreviewPanel.Controls.Add(Me.Label68) - Me.PreviewPanel.Controls.Add(Me.CheckBalloonLimit) - Me.PreviewPanel.Controls.Add(Me.Label10) - Me.PreviewPanel.Controls.Add(Me.ComboDispTitle) - Me.PreviewPanel.Controls.Add(Me.Label45) - Me.PreviewPanel.Controls.Add(Me.cmbNameBalloon) - Me.PreviewPanel.Controls.Add(Me.Label46) - Me.PreviewPanel.Controls.Add(Me.CheckDispUsername) - Me.PreviewPanel.Controls.Add(Me.Label25) - Me.PreviewPanel.Controls.Add(Me.CheckBox3) - Me.PreviewPanel.Dock = System.Windows.Forms.DockStyle.Fill - Me.PreviewPanel.Enabled = False - Me.PreviewPanel.Location = New System.Drawing.Point(0, 0) - Me.PreviewPanel.Name = "PreviewPanel" - Me.PreviewPanel.Size = New System.Drawing.Size(525, 368) - Me.PreviewPanel.TabIndex = 50 - Me.PreviewPanel.Visible = False - ' - 'ReplyIconStateCombo - ' - Me.ReplyIconStateCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ReplyIconStateCombo.FormattingEnabled = True - Me.ReplyIconStateCombo.Items.AddRange(New Object() {"通知なし", "アイコン変更", "アイコン変更&点滅"}) - Me.ReplyIconStateCombo.Location = New System.Drawing.Point(217, 142) - Me.ReplyIconStateCombo.Name = "ReplyIconStateCombo" - Me.ReplyIconStateCombo.Size = New System.Drawing.Size(121, 20) - Me.ReplyIconStateCombo.TabIndex = 94 - ' - 'Label72 - ' - Me.Label72.AutoSize = True - Me.Label72.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label72.Location = New System.Drawing.Point(26, 145) - Me.Label72.Name = "Label72" - Me.Label72.Size = New System.Drawing.Size(134, 12) - Me.Label72.TabIndex = 93 - Me.Label72.Text = "未読Mentions通知アイコン" - ' - 'Label43 - ' - Me.Label43.AutoSize = True - Me.Label43.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label43.Location = New System.Drawing.Point(26, 169) - Me.Label43.Name = "Label43" - Me.Label43.Size = New System.Drawing.Size(135, 12) - Me.Label43.TabIndex = 95 - Me.Label43.Text = "新着Mentions時画面点滅" - ' - 'Label48 - ' - Me.Label48.AutoSize = True - Me.Label48.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label48.Location = New System.Drawing.Point(26, 121) - Me.Label48.Name = "Label48" - Me.Label48.Size = New System.Drawing.Size(115, 12) - Me.Label48.TabIndex = 91 - Me.Label48.Text = "タブの未読アイコン表示" - ' - 'ChkNewMentionsBlink - ' - Me.ChkNewMentionsBlink.AutoSize = True - Me.ChkNewMentionsBlink.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.ChkNewMentionsBlink.Location = New System.Drawing.Point(217, 168) - Me.ChkNewMentionsBlink.Name = "ChkNewMentionsBlink" - Me.ChkNewMentionsBlink.Size = New System.Drawing.Size(67, 16) - Me.ChkNewMentionsBlink.TabIndex = 96 - Me.ChkNewMentionsBlink.Text = "点滅する" - Me.ChkNewMentionsBlink.UseVisualStyleBackColor = True - ' - 'chkTabIconDisp - ' - Me.chkTabIconDisp.AutoSize = True - Me.chkTabIconDisp.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.chkTabIconDisp.Location = New System.Drawing.Point(217, 120) - Me.chkTabIconDisp.Name = "chkTabIconDisp" - Me.chkTabIconDisp.Size = New System.Drawing.Size(67, 16) - Me.chkTabIconDisp.TabIndex = 92 - Me.chkTabIconDisp.Text = "表示する" - Me.chkTabIconDisp.UseVisualStyleBackColor = True - ' - 'Label35 - ' - Me.Label35.AutoSize = True - Me.Label35.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label35.Location = New System.Drawing.Point(26, 193) - Me.Label35.Name = "Label35" - Me.Label35.Size = New System.Drawing.Size(126, 12) - Me.Label35.TabIndex = 59 - Me.Label35.Text = "画像リンクサムネイル表示" - ' - 'CheckPreviewEnable - ' - Me.CheckPreviewEnable.AutoSize = True - Me.CheckPreviewEnable.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckPreviewEnable.Location = New System.Drawing.Point(217, 192) - Me.CheckPreviewEnable.Name = "CheckPreviewEnable" - Me.CheckPreviewEnable.Size = New System.Drawing.Size(67, 16) - Me.CheckPreviewEnable.TabIndex = 60 - Me.CheckPreviewEnable.Text = "使用する" - Me.CheckPreviewEnable.UseVisualStyleBackColor = True - ' - 'Label81 - ' - Me.Label81.AutoSize = True - Me.Label81.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label81.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label81.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label81.Location = New System.Drawing.Point(87, 290) - Me.Label81.Name = "Label81" - Me.Label81.Size = New System.Drawing.Size(115, 12) - Me.Label81.TabIndex = 84 - Me.Label81.Text = "Apply after restarting" - ' - 'LanguageCombo - ' - Me.LanguageCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.LanguageCombo.FormattingEnabled = True - Me.LanguageCombo.Items.AddRange(New Object() {"OS Default", "Japanese", "English", "Simplified Chinese"}) - Me.LanguageCombo.Location = New System.Drawing.Point(213, 290) - Me.LanguageCombo.Name = "LanguageCombo" - Me.LanguageCombo.Size = New System.Drawing.Size(121, 20) - Me.LanguageCombo.TabIndex = 85 - ' - 'Label13 - ' - Me.Label13.AutoSize = True - Me.Label13.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label13.Location = New System.Drawing.Point(26, 290) - Me.Label13.Name = "Label13" - Me.Label13.Size = New System.Drawing.Size(53, 12) - Me.Label13.TabIndex = 83 - Me.Label13.Text = "Language" - ' - 'CheckAlwaysTop - ' - Me.CheckAlwaysTop.AutoSize = True - Me.CheckAlwaysTop.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckAlwaysTop.Location = New System.Drawing.Point(217, 265) - Me.CheckAlwaysTop.Name = "CheckAlwaysTop" - Me.CheckAlwaysTop.Size = New System.Drawing.Size(112, 16) - Me.CheckAlwaysTop.TabIndex = 82 - Me.CheckAlwaysTop.Text = "最前面に表示する" - Me.CheckAlwaysTop.UseVisualStyleBackColor = True - ' - 'Label58 - ' - Me.Label58.AutoSize = True - Me.Label58.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label58.Location = New System.Drawing.Point(26, 266) - Me.Label58.Name = "Label58" - Me.Label58.Size = New System.Drawing.Size(86, 12) - Me.Label58.TabIndex = 81 - Me.Label58.Text = "常に最前面表示" - ' - 'Label75 - ' - Me.Label75.AutoSize = True - Me.Label75.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label75.Location = New System.Drawing.Point(26, 237) - Me.Label75.Name = "Label75" - Me.Label75.Size = New System.Drawing.Size(162, 12) - Me.Label75.TabIndex = 63 - Me.Label75.Text = "発言詳細表示フォント(AA対応)" - ' - 'CheckMonospace - ' - Me.CheckMonospace.AutoSize = True - Me.CheckMonospace.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckMonospace.Location = New System.Drawing.Point(217, 236) - Me.CheckMonospace.Name = "CheckMonospace" - Me.CheckMonospace.Size = New System.Drawing.Size(171, 16) - Me.CheckMonospace.TabIndex = 64 - Me.CheckMonospace.Text = "等幅(フォント適用不具合あり)" - Me.CheckMonospace.UseVisualStyleBackColor = True - ' - 'Label68 - ' - Me.Label68.AutoSize = True - Me.Label68.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label68.Location = New System.Drawing.Point(24, 67) - Me.Label68.Name = "Label68" - Me.Label68.Size = New System.Drawing.Size(92, 12) - Me.Label68.TabIndex = 47 - Me.Label68.Text = "バルーン表示制限" - ' - 'CheckBalloonLimit - ' - Me.CheckBalloonLimit.AutoSize = True - Me.CheckBalloonLimit.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckBalloonLimit.Location = New System.Drawing.Point(215, 66) - Me.CheckBalloonLimit.Name = "CheckBalloonLimit" - Me.CheckBalloonLimit.Size = New System.Drawing.Size(182, 16) - Me.CheckBalloonLimit.TabIndex = 48 - Me.CheckBalloonLimit.Text = "画面最小化・アイコン時のみ表示" - Me.CheckBalloonLimit.UseVisualStyleBackColor = True - ' - 'Label10 - ' - Me.Label10.AutoSize = True - Me.Label10.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label10.Location = New System.Drawing.Point(24, 21) - Me.Label10.Name = "Label10" - Me.Label10.Size = New System.Drawing.Size(130, 12) - Me.Label10.TabIndex = 43 - Me.Label10.Text = "新着バルーンのユーザー名" - ' - 'ComboDispTitle - ' - Me.ComboDispTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboDispTitle.FormattingEnabled = True - Me.ComboDispTitle.Items.AddRange(New Object() {"(なし)", "バージョン", "最終発言", "@未読数", "未読数", "未読数(@未読数)", "全未読/全発言数", "発言数/フォロー数/フォロワー数"}) - Me.ComboDispTitle.Location = New System.Drawing.Point(215, 88) - Me.ComboDispTitle.Name = "ComboDispTitle" - Me.ComboDispTitle.Size = New System.Drawing.Size(197, 20) - Me.ComboDispTitle.TabIndex = 50 - ' - 'Label45 - ' - Me.Label45.AutoSize = True - Me.Label45.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label45.Location = New System.Drawing.Point(24, 91) - Me.Label45.Name = "Label45" - Me.Label45.Size = New System.Drawing.Size(60, 12) - Me.Label45.TabIndex = 49 - Me.Label45.Text = "タイトルバー" - ' - 'cmbNameBalloon - ' - Me.cmbNameBalloon.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.cmbNameBalloon.FormattingEnabled = True - Me.cmbNameBalloon.Items.AddRange(New Object() {"なし", "ユーザーID", "ニックネーム"}) - Me.cmbNameBalloon.Location = New System.Drawing.Point(215, 18) - Me.cmbNameBalloon.Name = "cmbNameBalloon" - Me.cmbNameBalloon.Size = New System.Drawing.Size(100, 20) - Me.cmbNameBalloon.TabIndex = 44 - ' - 'Label46 - ' - Me.Label46.AutoSize = True - Me.Label46.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label46.Location = New System.Drawing.Point(24, 45) - Me.Label46.Name = "Label46" - Me.Label46.Size = New System.Drawing.Size(122, 12) - Me.Label46.TabIndex = 45 - Me.Label46.Text = "タイトルバーとツールチップ" - ' - 'CheckDispUsername - ' - Me.CheckDispUsername.AutoSize = True - Me.CheckDispUsername.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckDispUsername.Location = New System.Drawing.Point(215, 44) - Me.CheckDispUsername.Name = "CheckDispUsername" - Me.CheckDispUsername.Size = New System.Drawing.Size(109, 16) - Me.CheckDispUsername.TabIndex = 46 - Me.CheckDispUsername.Text = "ユーザー名を表示" - Me.CheckDispUsername.UseVisualStyleBackColor = True - ' - 'Label25 - ' - Me.Label25.AutoSize = True - Me.Label25.Enabled = False - Me.Label25.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label25.Location = New System.Drawing.Point(26, 215) - Me.Label25.Name = "Label25" - Me.Label25.Size = New System.Drawing.Size(134, 12) - Me.Label25.TabIndex = 61 - Me.Label25.Text = "発言詳細部のアイコン表示" - ' - 'CheckBox3 - ' - Me.CheckBox3.AutoSize = True - Me.CheckBox3.Enabled = False - Me.CheckBox3.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckBox3.Location = New System.Drawing.Point(217, 214) - Me.CheckBox3.Name = "CheckBox3" - Me.CheckBox3.Size = New System.Drawing.Size(67, 16) - Me.CheckBox3.TabIndex = 62 - Me.CheckBox3.Text = "表示する" - Me.CheckBox3.UseVisualStyleBackColor = True - ' - 'ConnectionPanel - ' - Me.ConnectionPanel.Controls.Add(Me.CheckNicoms) - Me.ConnectionPanel.Controls.Add(Me.Label60) - Me.ConnectionPanel.Controls.Add(Me.ComboBoxOutputzUrlmode) - Me.ConnectionPanel.Controls.Add(Me.Label59) - Me.ConnectionPanel.Controls.Add(Me.TextBoxOutputzKey) - Me.ConnectionPanel.Controls.Add(Me.CheckOutputz) - Me.ConnectionPanel.Controls.Add(Me.CheckEnableBasicAuth) - Me.ConnectionPanel.Controls.Add(Me.TwitterSearchAPIText) - Me.ConnectionPanel.Controls.Add(Me.Label31) - Me.ConnectionPanel.Controls.Add(Me.TwitterAPIText) - Me.ConnectionPanel.Controls.Add(Me.Label8) - Me.ConnectionPanel.Controls.Add(Me.CheckUseSsl) - Me.ConnectionPanel.Controls.Add(Me.Label64) - Me.ConnectionPanel.Controls.Add(Me.ConnectionTimeOut) - Me.ConnectionPanel.Controls.Add(Me.Label63) - Me.ConnectionPanel.Dock = System.Windows.Forms.DockStyle.Fill - Me.ConnectionPanel.Enabled = False - Me.ConnectionPanel.Location = New System.Drawing.Point(0, 0) - Me.ConnectionPanel.Name = "ConnectionPanel" - Me.ConnectionPanel.Size = New System.Drawing.Size(525, 368) - Me.ConnectionPanel.TabIndex = 53 - Me.ConnectionPanel.Visible = False - ' - 'CheckNicoms - ' - Me.CheckNicoms.AutoSize = True - Me.CheckNicoms.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckNicoms.Location = New System.Drawing.Point(23, 295) - Me.CheckNicoms.Name = "CheckNicoms" - Me.CheckNicoms.Size = New System.Drawing.Size(237, 16) - Me.CheckNicoms.TabIndex = 24 - Me.CheckNicoms.Text = "ニコニコ動画のURLをnico.msで短縮して送信" - Me.CheckNicoms.UseVisualStyleBackColor = True - ' - 'Label60 - ' - Me.Label60.AutoSize = True - Me.Label60.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label60.Location = New System.Drawing.Point(36, 245) - Me.Label60.Name = "Label60" - Me.Label60.Size = New System.Drawing.Size(99, 12) - Me.Label60.TabIndex = 22 - Me.Label60.Text = "アウトプット先のURL" - ' - 'ComboBoxOutputzUrlmode - ' - Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxOutputzUrlmode.FormattingEnabled = True - Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {"twitter.com", "twitter.com/username"}) - Me.ComboBoxOutputzUrlmode.Location = New System.Drawing.Point(205, 242) - Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" - Me.ComboBoxOutputzUrlmode.Size = New System.Drawing.Size(182, 20) - Me.ComboBoxOutputzUrlmode.TabIndex = 23 - ' - 'Label59 - ' - Me.Label59.AutoSize = True - Me.Label59.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label59.Location = New System.Drawing.Point(36, 199) - Me.Label59.Name = "Label59" - Me.Label59.Size = New System.Drawing.Size(63, 12) - Me.Label59.TabIndex = 20 - Me.Label59.Text = "復活の呪文" - ' - 'TextBoxOutputzKey - ' - Me.TextBoxOutputzKey.Location = New System.Drawing.Point(205, 196) - Me.TextBoxOutputzKey.Name = "TextBoxOutputzKey" - Me.TextBoxOutputzKey.Size = New System.Drawing.Size(182, 19) - Me.TextBoxOutputzKey.TabIndex = 21 - ' - 'CheckOutputz - ' - Me.CheckOutputz.AutoSize = True - Me.CheckOutputz.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckOutputz.Location = New System.Drawing.Point(23, 162) - Me.CheckOutputz.Name = "CheckOutputz" - Me.CheckOutputz.Size = New System.Drawing.Size(115, 16) - Me.CheckOutputz.TabIndex = 19 - Me.CheckOutputz.Text = "Outputzに対応する" - Me.CheckOutputz.UseVisualStyleBackColor = True - ' - 'CheckEnableBasicAuth - ' - Me.CheckEnableBasicAuth.AutoSize = True - Me.CheckEnableBasicAuth.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckEnableBasicAuth.Location = New System.Drawing.Point(22, 329) - Me.CheckEnableBasicAuth.Name = "CheckEnableBasicAuth" - Me.CheckEnableBasicAuth.Size = New System.Drawing.Size(178, 16) - Me.CheckEnableBasicAuth.TabIndex = 18 - Me.CheckEnableBasicAuth.Text = "BASIC認証への変更を許可する" - Me.CheckEnableBasicAuth.UseVisualStyleBackColor = True - ' - 'TwitterSearchAPIText - ' - Me.TwitterSearchAPIText.Location = New System.Drawing.Point(262, 125) - Me.TwitterSearchAPIText.Name = "TwitterSearchAPIText" - Me.TwitterSearchAPIText.Size = New System.Drawing.Size(125, 19) - Me.TwitterSearchAPIText.TabIndex = 17 - Me.TwitterSearchAPIText.Text = "search.twitter.com" - ' - 'Label31 - ' - Me.Label31.AutoSize = True - Me.Label31.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label31.Location = New System.Drawing.Point(21, 128) - Me.Label31.Name = "Label31" - Me.Label31.Size = New System.Drawing.Size(228, 12) - Me.Label31.TabIndex = 16 - Me.Label31.Text = "Twitter SearchAPI URL (search.twitter.com)" - ' - 'TwitterAPIText - ' - Me.TwitterAPIText.Location = New System.Drawing.Point(262, 100) - Me.TwitterAPIText.Name = "TwitterAPIText" - Me.TwitterAPIText.Size = New System.Drawing.Size(125, 19) - Me.TwitterAPIText.TabIndex = 15 - Me.TwitterAPIText.Text = "api.twitter.com" - ' - 'Label8 - ' - Me.Label8.AutoSize = True - Me.Label8.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label8.Location = New System.Drawing.Point(21, 103) - Me.Label8.Name = "Label8" - Me.Label8.Size = New System.Drawing.Size(174, 12) - Me.Label8.TabIndex = 14 - Me.Label8.Text = "Twitter API URL (api.twitter.com)" - ' - 'CheckUseSsl - ' - Me.CheckUseSsl.AutoSize = True - Me.CheckUseSsl.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckUseSsl.Location = New System.Drawing.Point(23, 78) - Me.CheckUseSsl.Name = "CheckUseSsl" - Me.CheckUseSsl.Size = New System.Drawing.Size(145, 16) - Me.CheckUseSsl.TabIndex = 13 - Me.CheckUseSsl.Text = "通信にHTTPSを使用する" - Me.CheckUseSsl.UseVisualStyleBackColor = True - ' - 'Label64 - ' - Me.Label64.AutoSize = True - Me.Label64.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label64.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label64.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label64.Location = New System.Drawing.Point(21, 51) - Me.Label64.Name = "Label64" - Me.Label64.Size = New System.Drawing.Size(349, 12) - Me.Label64.TabIndex = 12 - Me.Label64.Text = "※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。" - ' - 'ConnectionTimeOut - ' - Me.ConnectionTimeOut.Location = New System.Drawing.Point(262, 18) - Me.ConnectionTimeOut.Name = "ConnectionTimeOut" - Me.ConnectionTimeOut.Size = New System.Drawing.Size(123, 19) - Me.ConnectionTimeOut.TabIndex = 11 - ' - 'Label63 - ' - Me.Label63.AutoSize = True - Me.Label63.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label63.Location = New System.Drawing.Point(21, 21) - Me.Label63.Name = "Label63" - Me.Label63.Size = New System.Drawing.Size(131, 12) - Me.Label63.TabIndex = 10 - Me.Label63.Text = "タイムアウトまでの時間(秒)" - ' 'GetCountPanel ' Me.GetCountPanel.BackColor = System.Drawing.SystemColors.Window @@ -1982,415 +493,270 @@ Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) Me.GetCountPanel.Controls.Add(Me.Label67) Me.GetCountPanel.Controls.Add(Me.TextCountApi) - Me.GetCountPanel.Dock = System.Windows.Forms.DockStyle.Fill - Me.GetCountPanel.Enabled = False - Me.GetCountPanel.Location = New System.Drawing.Point(0, 0) + resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") Me.GetCountPanel.Name = "GetCountPanel" - Me.GetCountPanel.Size = New System.Drawing.Size(525, 368) - Me.GetCountPanel.TabIndex = 44 - Me.GetCountPanel.Visible = False ' 'Label30 ' - Me.Label30.AutoSize = True - Me.Label30.Location = New System.Drawing.Point(28, 192) + resources.ApplyResources(Me.Label30, "Label30") Me.Label30.Name = "Label30" - Me.Label30.Size = New System.Drawing.Size(117, 12) - Me.Label30.TabIndex = 52 - Me.Label30.Text = "PublicSearchの取得数" ' 'Label28 ' - Me.Label28.AutoSize = True - Me.Label28.Location = New System.Drawing.Point(28, 144) + resources.ApplyResources(Me.Label28, "Label28") Me.Label28.Name = "Label28" - Me.Label28.Size = New System.Drawing.Size(63, 12) - Me.Label28.TabIndex = 51 - Me.Label28.Text = "初回の更新" ' 'Label19 ' - Me.Label19.AutoSize = True - Me.Label19.Location = New System.Drawing.Point(31, 58) + resources.ApplyResources(Me.Label19, "Label19") Me.Label19.Name = "Label19" - Me.Label19.Size = New System.Drawing.Size(87, 12) - Me.Label19.TabIndex = 50 - Me.Label19.Text = "Mentions取得数" ' 'FavoritesTextCountApi ' - Me.FavoritesTextCountApi.Location = New System.Drawing.Point(259, 159) + resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" - Me.FavoritesTextCountApi.Size = New System.Drawing.Size(58, 19) - Me.FavoritesTextCountApi.TabIndex = 48 ' 'SearchTextCountApi ' - Me.SearchTextCountApi.Location = New System.Drawing.Point(259, 185) + resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") Me.SearchTextCountApi.Name = "SearchTextCountApi" - Me.SearchTextCountApi.Size = New System.Drawing.Size(58, 19) - Me.SearchTextCountApi.TabIndex = 49 ' 'Label66 ' - Me.Label66.AutoSize = True - Me.Label66.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label66.Location = New System.Drawing.Point(28, 166) + resources.ApplyResources(Me.Label66, "Label66") Me.Label66.Name = "Label66" - Me.Label66.Size = New System.Drawing.Size(99, 12) - Me.Label66.TabIndex = 47 - Me.Label66.Text = "Favoritesの取得数" ' 'FirstTextCountApi ' - Me.FirstTextCountApi.Location = New System.Drawing.Point(259, 135) + resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") Me.FirstTextCountApi.Name = "FirstTextCountApi" - Me.FirstTextCountApi.Size = New System.Drawing.Size(58, 19) - Me.FirstTextCountApi.TabIndex = 46 ' 'GetMoreTextCountApi ' - Me.GetMoreTextCountApi.Location = New System.Drawing.Point(259, 112) + resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" - Me.GetMoreTextCountApi.Size = New System.Drawing.Size(59, 19) - Me.GetMoreTextCountApi.TabIndex = 45 ' 'Label53 ' - Me.Label53.AutoSize = True - Me.Label53.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label53.Location = New System.Drawing.Point(28, 118) + resources.ApplyResources(Me.Label53, "Label53") Me.Label53.Name = "Label53" - Me.Label53.Size = New System.Drawing.Size(79, 12) - Me.Label53.TabIndex = 44 - Me.Label53.Text = "前データの更新" ' 'UseChangeGetCount ' - Me.UseChangeGetCount.AutoSize = True - Me.UseChangeGetCount.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.UseChangeGetCount.Location = New System.Drawing.Point(30, 89) + resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") Me.UseChangeGetCount.Name = "UseChangeGetCount" - Me.UseChangeGetCount.Size = New System.Drawing.Size(247, 16) - Me.UseChangeGetCount.TabIndex = 43 - Me.UseChangeGetCount.Text = "次の項目の更新時の取得数を個別に設定する" Me.UseChangeGetCount.UseVisualStyleBackColor = True ' 'TextCountApiReply ' - Me.TextCountApiReply.Location = New System.Drawing.Point(258, 51) + resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") Me.TextCountApiReply.Name = "TextCountApiReply" - Me.TextCountApiReply.Size = New System.Drawing.Size(58, 19) - Me.TextCountApiReply.TabIndex = 41 ' 'Label67 ' - Me.Label67.AutoSize = True - Me.Label67.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label67.Location = New System.Drawing.Point(30, 24) + resources.ApplyResources(Me.Label67, "Label67") Me.Label67.Name = "Label67" - Me.Label67.Size = New System.Drawing.Size(77, 12) - Me.Label67.TabIndex = 39 - Me.Label67.Text = "標準取得件数" ' 'TextCountApi ' - Me.TextCountApi.Location = New System.Drawing.Point(259, 21) + resources.ApplyResources(Me.TextCountApi, "TextCountApi") Me.TextCountApi.Name = "TextCountApi" - Me.TextCountApi.Size = New System.Drawing.Size(57, 19) - Me.TextCountApi.TabIndex = 40 ' - 'BasedPanel + 'StartupPanel ' - Me.BasedPanel.BackColor = System.Drawing.SystemColors.Window - Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) - Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) - Me.BasedPanel.Controls.Add(Me.Label6) - Me.BasedPanel.Controls.Add(Me.AuthClearButton) - Me.BasedPanel.Controls.Add(Me.AuthUserLabel) - Me.BasedPanel.Controls.Add(Me.AuthStateLabel) - Me.BasedPanel.Controls.Add(Me.Label4) - Me.BasedPanel.Controls.Add(Me.AuthorizeButton) - Me.BasedPanel.Controls.Add(Me.Label1) - Me.BasedPanel.Controls.Add(Me.Label2) - Me.BasedPanel.Controls.Add(Me.Username) - Me.BasedPanel.Controls.Add(Me.Password) - Me.BasedPanel.Dock = System.Windows.Forms.DockStyle.Fill - Me.BasedPanel.Enabled = False - Me.BasedPanel.Location = New System.Drawing.Point(0, 0) - Me.BasedPanel.Name = "BasedPanel" - Me.BasedPanel.Size = New System.Drawing.Size(525, 368) - Me.BasedPanel.TabIndex = 0 - Me.BasedPanel.Visible = False + Me.StartupPanel.BackColor = System.Drawing.SystemColors.Window + Me.StartupPanel.Controls.Add(Me.StartupReaded) + Me.StartupPanel.Controls.Add(Me.CheckStartupFollowers) + Me.StartupPanel.Controls.Add(Me.CheckStartupVersion) + Me.StartupPanel.Controls.Add(Me.chkGetFav) + resources.ApplyResources(Me.StartupPanel, "StartupPanel") + Me.StartupPanel.Name = "StartupPanel" ' - 'AuthBasicRadio + 'StartupReaded ' - Me.AuthBasicRadio.AutoSize = True - Me.AuthBasicRadio.Enabled = False - Me.AuthBasicRadio.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.AuthBasicRadio.Location = New System.Drawing.Point(227, 20) - Me.AuthBasicRadio.Name = "AuthBasicRadio" - Me.AuthBasicRadio.Size = New System.Drawing.Size(57, 16) - Me.AuthBasicRadio.TabIndex = 14 - Me.AuthBasicRadio.Text = "BASIC" - Me.AuthBasicRadio.UseVisualStyleBackColor = True + resources.ApplyResources(Me.StartupReaded, "StartupReaded") + Me.StartupReaded.Name = "StartupReaded" + Me.StartupReaded.UseVisualStyleBackColor = True ' - 'AuthOAuthRadio + 'CheckStartupFollowers ' - Me.AuthOAuthRadio.AutoSize = True - Me.AuthOAuthRadio.Checked = True - Me.AuthOAuthRadio.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.AuthOAuthRadio.Location = New System.Drawing.Point(113, 20) - Me.AuthOAuthRadio.Name = "AuthOAuthRadio" - Me.AuthOAuthRadio.Size = New System.Drawing.Size(93, 16) - Me.AuthOAuthRadio.TabIndex = 13 - Me.AuthOAuthRadio.TabStop = True - Me.AuthOAuthRadio.Text = "OAuth(xAuth)" - Me.AuthOAuthRadio.UseVisualStyleBackColor = True + resources.ApplyResources(Me.CheckStartupFollowers, "CheckStartupFollowers") + Me.CheckStartupFollowers.Name = "CheckStartupFollowers" + Me.CheckStartupFollowers.UseVisualStyleBackColor = True ' - 'Label6 + 'CheckStartupVersion ' - Me.Label6.AutoSize = True - Me.Label6.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label6.Location = New System.Drawing.Point(22, 22) - Me.Label6.Name = "Label6" - Me.Label6.Size = New System.Drawing.Size(53, 12) - Me.Label6.TabIndex = 12 - Me.Label6.Text = "認証方法" + resources.ApplyResources(Me.CheckStartupVersion, "CheckStartupVersion") + Me.CheckStartupVersion.Name = "CheckStartupVersion" + Me.CheckStartupVersion.UseVisualStyleBackColor = True ' - 'AuthClearButton + 'chkGetFav ' - Me.AuthClearButton.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.AuthClearButton.Location = New System.Drawing.Point(305, 64) - Me.AuthClearButton.Name = "AuthClearButton" - Me.AuthClearButton.Size = New System.Drawing.Size(75, 23) - Me.AuthClearButton.TabIndex = 18 - Me.AuthClearButton.Text = "クリア" - Me.AuthClearButton.UseVisualStyleBackColor = True + resources.ApplyResources(Me.chkGetFav, "chkGetFav") + Me.chkGetFav.Name = "chkGetFav" + Me.chkGetFav.UseVisualStyleBackColor = True ' - 'AuthUserLabel + 'UserStreamPanel ' - Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.AuthUserLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.AuthUserLabel.Location = New System.Drawing.Point(113, 68) - Me.AuthUserLabel.Name = "AuthUserLabel" - Me.AuthUserLabel.Size = New System.Drawing.Size(149, 14) - Me.AuthUserLabel.TabIndex = 17 - Me.AuthUserLabel.Text = "認証済み" + Me.UserStreamPanel.Controls.Add(Me.UserstreamPeriod) + Me.UserStreamPanel.Controls.Add(Me.StartupUserstreamCheck) + Me.UserStreamPanel.Controls.Add(Me.Label83) + resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") + Me.UserStreamPanel.Name = "UserStreamPanel" ' - 'AuthStateLabel + 'ActionPanel ' - Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.AuthStateLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.AuthStateLabel.Location = New System.Drawing.Point(113, 54) - Me.AuthStateLabel.Name = "AuthStateLabel" - Me.AuthStateLabel.Size = New System.Drawing.Size(112, 14) - Me.AuthStateLabel.TabIndex = 16 - Me.AuthStateLabel.Text = "Not Authenticated" + Me.ActionPanel.BackColor = System.Drawing.SystemColors.Window + Me.ActionPanel.Controls.Add(Me.GroupBox3) + Me.ActionPanel.Controls.Add(Me.CheckHashSupple) + Me.ActionPanel.Controls.Add(Me.CheckAtIdSupple) + Me.ActionPanel.Controls.Add(Me.Label57) + Me.ActionPanel.Controls.Add(Me.CheckFavRestrict) + Me.ActionPanel.Controls.Add(Me.Button3) + Me.ActionPanel.Controls.Add(Me.PlaySnd) + Me.ActionPanel.Controls.Add(Me.Label15) + Me.ActionPanel.Controls.Add(Me.BrowserPathText) + Me.ActionPanel.Controls.Add(Me.UReadMng) + Me.ActionPanel.Controls.Add(Me.Label44) + Me.ActionPanel.Controls.Add(Me.CheckCloseToExit) + Me.ActionPanel.Controls.Add(Me.CheckMinimizeToTray) + Me.ActionPanel.Controls.Add(Me.CheckReadOldPosts) + resources.ApplyResources(Me.ActionPanel, "ActionPanel") + Me.ActionPanel.Name = "ActionPanel" ' - 'Label4 + 'GroupBox3 ' - Me.Label4.AutoSize = True - Me.Label4.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label4.Location = New System.Drawing.Point(23, 54) - Me.Label4.Name = "Label4" - Me.Label4.Size = New System.Drawing.Size(53, 12) - Me.Label4.TabIndex = 15 - Me.Label4.Text = "認証状態" + Me.GroupBox3.Controls.Add(Me.HotkeyCheck) + Me.GroupBox3.Controls.Add(Me.HotkeyCode) + Me.GroupBox3.Controls.Add(Me.HotkeyText) + Me.GroupBox3.Controls.Add(Me.HotkeyWin) + Me.GroupBox3.Controls.Add(Me.HotkeyAlt) + Me.GroupBox3.Controls.Add(Me.HotkeyShift) + Me.GroupBox3.Controls.Add(Me.HotkeyCtrl) + resources.ApplyResources(Me.GroupBox3, "GroupBox3") + Me.GroupBox3.Name = "GroupBox3" + Me.GroupBox3.TabStop = False ' - 'AuthorizeButton + 'HotkeyCheck ' - Me.AuthorizeButton.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.AuthorizeButton.Location = New System.Drawing.Point(305, 126) - Me.AuthorizeButton.Name = "AuthorizeButton" - Me.AuthorizeButton.Size = New System.Drawing.Size(75, 23) - Me.AuthorizeButton.TabIndex = 23 - Me.AuthorizeButton.Text = "認証する" - Me.AuthorizeButton.UseVisualStyleBackColor = True + resources.ApplyResources(Me.HotkeyCheck, "HotkeyCheck") + Me.HotkeyCheck.Name = "HotkeyCheck" + Me.HotkeyCheck.UseVisualStyleBackColor = True ' - 'Label1 + 'HotkeyCode ' - Me.Label1.AutoSize = True - Me.Label1.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label1.Location = New System.Drawing.Point(22, 112) - Me.Label1.Name = "Label1" - Me.Label1.Size = New System.Drawing.Size(57, 12) - Me.Label1.TabIndex = 19 - Me.Label1.Text = "ユーザー名" + resources.ApplyResources(Me.HotkeyCode, "HotkeyCode") + Me.HotkeyCode.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + Me.HotkeyCode.Name = "HotkeyCode" ' - 'Label2 + 'HotkeyText ' - Me.Label2.AutoSize = True - Me.Label2.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label2.Location = New System.Drawing.Point(22, 133) - Me.Label2.Name = "Label2" - Me.Label2.Size = New System.Drawing.Size(52, 12) - Me.Label2.TabIndex = 21 - Me.Label2.Text = "パスワード" + resources.ApplyResources(Me.HotkeyText, "HotkeyText") + Me.HotkeyText.Name = "HotkeyText" + Me.HotkeyText.ReadOnly = True ' - 'Username + 'HotkeyWin ' - Me.Username.Location = New System.Drawing.Point(113, 109) - Me.Username.Name = "Username" - Me.Username.Size = New System.Drawing.Size(186, 19) - Me.Username.TabIndex = 20 + resources.ApplyResources(Me.HotkeyWin, "HotkeyWin") + Me.HotkeyWin.Name = "HotkeyWin" + Me.HotkeyWin.UseVisualStyleBackColor = True ' - 'Password + 'HotkeyAlt ' - Me.Password.Location = New System.Drawing.Point(113, 130) - Me.Password.Name = "Password" - Me.Password.Size = New System.Drawing.Size(186, 19) - Me.Password.TabIndex = 22 - Me.Password.UseSystemPasswordChar = True + resources.ApplyResources(Me.HotkeyAlt, "HotkeyAlt") + Me.HotkeyAlt.Name = "HotkeyAlt" + Me.HotkeyAlt.UseVisualStyleBackColor = True ' - 'ProxyPanel + 'HotkeyShift ' - Me.ProxyPanel.Controls.Add(Me.GroupBox2) - Me.ProxyPanel.Dock = System.Windows.Forms.DockStyle.Fill - Me.ProxyPanel.Enabled = False - Me.ProxyPanel.Location = New System.Drawing.Point(0, 0) - Me.ProxyPanel.Name = "ProxyPanel" - Me.ProxyPanel.Size = New System.Drawing.Size(525, 368) - Me.ProxyPanel.TabIndex = 54 - Me.ProxyPanel.Visible = False + resources.ApplyResources(Me.HotkeyShift, "HotkeyShift") + Me.HotkeyShift.Name = "HotkeyShift" + Me.HotkeyShift.UseVisualStyleBackColor = True ' - 'GroupBox2 + 'HotkeyCtrl ' - Me.GroupBox2.Controls.Add(Me.Label55) - Me.GroupBox2.Controls.Add(Me.TextProxyPassword) - Me.GroupBox2.Controls.Add(Me.LabelProxyPassword) - Me.GroupBox2.Controls.Add(Me.TextProxyUser) - Me.GroupBox2.Controls.Add(Me.LabelProxyUser) - Me.GroupBox2.Controls.Add(Me.TextProxyPort) - Me.GroupBox2.Controls.Add(Me.LabelProxyPort) - Me.GroupBox2.Controls.Add(Me.TextProxyAddress) - Me.GroupBox2.Controls.Add(Me.LabelProxyAddress) - Me.GroupBox2.Controls.Add(Me.RadioProxySpecified) - Me.GroupBox2.Controls.Add(Me.RadioProxyIE) - Me.GroupBox2.Controls.Add(Me.RadioProxyNone) - Me.GroupBox2.Location = New System.Drawing.Point(21, 18) - Me.GroupBox2.Name = "GroupBox2" - Me.GroupBox2.Size = New System.Drawing.Size(449, 161) - Me.GroupBox2.TabIndex = 1 - Me.GroupBox2.TabStop = False - Me.GroupBox2.Text = "プロキシの設定" + resources.ApplyResources(Me.HotkeyCtrl, "HotkeyCtrl") + Me.HotkeyCtrl.Name = "HotkeyCtrl" + Me.HotkeyCtrl.UseVisualStyleBackColor = True ' - 'Label55 + 'CheckHashSupple ' - Me.Label55.AutoSize = True - Me.Label55.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label55.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label55.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label55.Location = New System.Drawing.Point(28, 134) - Me.Label55.Name = "Label55" - Me.Label55.Size = New System.Drawing.Size(314, 12) - Me.Label55.TabIndex = 11 - Me.Label55.Text = "※認証が不要な場合は、ユーザ名とパスワードは空にしてください。" + resources.ApplyResources(Me.CheckHashSupple, "CheckHashSupple") + Me.CheckHashSupple.Name = "CheckHashSupple" + Me.CheckHashSupple.UseVisualStyleBackColor = True ' - 'TextProxyPassword + 'CheckAtIdSupple ' - Me.TextProxyPassword.Location = New System.Drawing.Point(274, 103) - Me.TextProxyPassword.Name = "TextProxyPassword" - Me.TextProxyPassword.Size = New System.Drawing.Size(96, 19) - Me.TextProxyPassword.TabIndex = 10 - Me.TextProxyPassword.UseSystemPasswordChar = True + resources.ApplyResources(Me.CheckAtIdSupple, "CheckAtIdSupple") + Me.CheckAtIdSupple.Name = "CheckAtIdSupple" + Me.CheckAtIdSupple.UseVisualStyleBackColor = True ' - 'LabelProxyPassword + 'Label57 ' - Me.LabelProxyPassword.AutoSize = True - Me.LabelProxyPassword.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.LabelProxyPassword.Location = New System.Drawing.Point(205, 106) - Me.LabelProxyPassword.Name = "LabelProxyPassword" - Me.LabelProxyPassword.Size = New System.Drawing.Size(69, 12) - Me.LabelProxyPassword.TabIndex = 9 - Me.LabelProxyPassword.Text = "パスワード(&W)" + resources.ApplyResources(Me.Label57, "Label57") + Me.Label57.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label57.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label57.Name = "Label57" ' - 'TextProxyUser + 'CheckFavRestrict ' - Me.TextProxyUser.Location = New System.Drawing.Point(131, 103) - Me.TextProxyUser.Name = "TextProxyUser" - Me.TextProxyUser.Size = New System.Drawing.Size(68, 19) - Me.TextProxyUser.TabIndex = 8 + resources.ApplyResources(Me.CheckFavRestrict, "CheckFavRestrict") + Me.CheckFavRestrict.Name = "CheckFavRestrict" + Me.CheckFavRestrict.UseVisualStyleBackColor = True ' - 'LabelProxyUser + 'Button3 ' - Me.LabelProxyUser.AutoSize = True - Me.LabelProxyUser.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.LabelProxyUser.Location = New System.Drawing.Point(62, 106) - Me.LabelProxyUser.Name = "LabelProxyUser" - Me.LabelProxyUser.Size = New System.Drawing.Size(63, 12) - Me.LabelProxyUser.TabIndex = 7 - Me.LabelProxyUser.Text = "ユーザ名(&U)" + resources.ApplyResources(Me.Button3, "Button3") + Me.Button3.Name = "Button3" + Me.Button3.UseVisualStyleBackColor = True ' - 'TextProxyPort + 'PlaySnd ' - Me.TextProxyPort.Location = New System.Drawing.Point(297, 78) - Me.TextProxyPort.Name = "TextProxyPort" - Me.TextProxyPort.Size = New System.Drawing.Size(73, 19) - Me.TextProxyPort.TabIndex = 6 + resources.ApplyResources(Me.PlaySnd, "PlaySnd") + Me.PlaySnd.Name = "PlaySnd" + Me.PlaySnd.UseVisualStyleBackColor = True ' - 'LabelProxyPort + 'Label15 ' - Me.LabelProxyPort.AutoSize = True - Me.LabelProxyPort.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.LabelProxyPort.Location = New System.Drawing.Point(243, 81) - Me.LabelProxyPort.Name = "LabelProxyPort" - Me.LabelProxyPort.Size = New System.Drawing.Size(48, 12) - Me.LabelProxyPort.TabIndex = 5 - Me.LabelProxyPort.Text = "ポート(&P)" + Me.Label15.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + resources.ApplyResources(Me.Label15, "Label15") + Me.Label15.Name = "Label15" ' - 'TextProxyAddress + 'BrowserPathText ' - Me.TextProxyAddress.Location = New System.Drawing.Point(102, 78) - Me.TextProxyAddress.Name = "TextProxyAddress" - Me.TextProxyAddress.Size = New System.Drawing.Size(135, 19) - Me.TextProxyAddress.TabIndex = 4 + resources.ApplyResources(Me.BrowserPathText, "BrowserPathText") + Me.BrowserPathText.Name = "BrowserPathText" ' - 'LabelProxyAddress + 'UReadMng ' - Me.LabelProxyAddress.AutoSize = True - Me.LabelProxyAddress.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.LabelProxyAddress.Location = New System.Drawing.Point(38, 81) - Me.LabelProxyAddress.Name = "LabelProxyAddress" - Me.LabelProxyAddress.Size = New System.Drawing.Size(58, 12) - Me.LabelProxyAddress.TabIndex = 3 - Me.LabelProxyAddress.Text = "プロキシ(&X)" + resources.ApplyResources(Me.UReadMng, "UReadMng") + Me.UReadMng.Name = "UReadMng" + Me.UReadMng.UseVisualStyleBackColor = True ' - 'RadioProxySpecified + 'Label44 ' - Me.RadioProxySpecified.AutoSize = True - Me.RadioProxySpecified.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.RadioProxySpecified.Location = New System.Drawing.Point(6, 62) - Me.RadioProxySpecified.Name = "RadioProxySpecified" - Me.RadioProxySpecified.Size = New System.Drawing.Size(66, 16) - Me.RadioProxySpecified.TabIndex = 2 - Me.RadioProxySpecified.Text = "指定する" - Me.RadioProxySpecified.UseVisualStyleBackColor = True + resources.ApplyResources(Me.Label44, "Label44") + Me.Label44.Name = "Label44" ' - 'RadioProxyIE + 'CheckCloseToExit ' - Me.RadioProxyIE.AutoSize = True - Me.RadioProxyIE.Checked = True - Me.RadioProxyIE.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.RadioProxyIE.Location = New System.Drawing.Point(6, 40) - Me.RadioProxyIE.Name = "RadioProxyIE" - Me.RadioProxyIE.Size = New System.Drawing.Size(190, 16) - Me.RadioProxyIE.TabIndex = 1 - Me.RadioProxyIE.TabStop = True - Me.RadioProxyIE.Text = "InternetExplorerの設定を使用する" - Me.RadioProxyIE.UseVisualStyleBackColor = True + resources.ApplyResources(Me.CheckCloseToExit, "CheckCloseToExit") + Me.CheckCloseToExit.Name = "CheckCloseToExit" + Me.CheckCloseToExit.UseVisualStyleBackColor = True ' - 'RadioProxyNone + 'CheckMinimizeToTray ' - Me.RadioProxyNone.AutoSize = True - Me.RadioProxyNone.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.RadioProxyNone.Location = New System.Drawing.Point(6, 18) - Me.RadioProxyNone.Name = "RadioProxyNone" - Me.RadioProxyNone.Size = New System.Drawing.Size(76, 16) - Me.RadioProxyNone.TabIndex = 0 - Me.RadioProxyNone.Text = "使用しない" - Me.RadioProxyNone.UseVisualStyleBackColor = True + resources.ApplyResources(Me.CheckMinimizeToTray, "CheckMinimizeToTray") + Me.CheckMinimizeToTray.Name = "CheckMinimizeToTray" + Me.CheckMinimizeToTray.UseVisualStyleBackColor = True ' + 'CheckReadOldPosts + ' + resources.ApplyResources(Me.CheckReadOldPosts, "CheckReadOldPosts") + Me.CheckReadOldPosts.Name = "CheckReadOldPosts" + Me.CheckReadOldPosts.UseVisualStyleBackColor = True + ' 'TweetActPanel ' Me.TweetActPanel.BackColor = System.Drawing.SystemColors.Window @@ -2399,201 +765,326 @@ Me.TweetActPanel.Controls.Add(Me.Label27) Me.TweetActPanel.Controls.Add(Me.CheckRetweetNoConfirm) Me.TweetActPanel.Controls.Add(Me.TextBitlyId) - Me.TweetActPanel.Controls.Add(Me.Label42) Me.TweetActPanel.Controls.Add(Me.Label12) Me.TweetActPanel.Controls.Add(Me.Label77) Me.TweetActPanel.Controls.Add(Me.CheckUseRecommendStatus) Me.TweetActPanel.Controls.Add(Me.Label76) Me.TweetActPanel.Controls.Add(Me.StatusText) Me.TweetActPanel.Controls.Add(Me.ComboBoxAutoShortUrlFirst) - Me.TweetActPanel.Controls.Add(Me.Label50) Me.TweetActPanel.Controls.Add(Me.Label71) Me.TweetActPanel.Controls.Add(Me.CheckTinyURL) Me.TweetActPanel.Controls.Add(Me.CheckAutoConvertUrl) - Me.TweetActPanel.Controls.Add(Me.Label29) - Me.TweetActPanel.Dock = System.Windows.Forms.DockStyle.Fill - Me.TweetActPanel.Enabled = False - Me.TweetActPanel.Location = New System.Drawing.Point(0, 0) + resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") Me.TweetActPanel.Name = "TweetActPanel" - Me.TweetActPanel.Size = New System.Drawing.Size(525, 368) - Me.TweetActPanel.TabIndex = 77 - Me.TweetActPanel.Visible = False ' 'TextBitlyPw ' - Me.TextBitlyPw.Location = New System.Drawing.Point(343, 94) + resources.ApplyResources(Me.TextBitlyPw, "TextBitlyPw") Me.TextBitlyPw.Name = "TextBitlyPw" - Me.TextBitlyPw.Size = New System.Drawing.Size(70, 19) - Me.TextBitlyPw.TabIndex = 69 ' 'ComboBoxPostKeySelect ' Me.ComboBoxPostKeySelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxPostKeySelect.FormattingEnabled = True - Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {"Enter", "Ctrl+Enter", "Shift+Enter"}) - Me.ComboBoxPostKeySelect.Location = New System.Drawing.Point(181, 136) + Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {resources.GetString("ComboBoxPostKeySelect.Items"), resources.GetString("ComboBoxPostKeySelect.Items1"), resources.GetString("ComboBoxPostKeySelect.Items2")}) + resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") Me.ComboBoxPostKeySelect.Name = "ComboBoxPostKeySelect" - Me.ComboBoxPostKeySelect.Size = New System.Drawing.Size(246, 20) - Me.ComboBoxPostKeySelect.TabIndex = 60 ' 'Label27 ' - Me.Label27.AutoSize = True - Me.Label27.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label27.Location = New System.Drawing.Point(19, 139) + resources.ApplyResources(Me.Label27, "Label27") Me.Label27.Name = "Label27" - Me.Label27.Size = New System.Drawing.Size(137, 12) - Me.Label27.TabIndex = 59 - Me.Label27.Text = "POSTキー(デフォルトEnter)" ' 'CheckRetweetNoConfirm ' - Me.CheckRetweetNoConfirm.AutoSize = True - Me.CheckRetweetNoConfirm.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckRetweetNoConfirm.Location = New System.Drawing.Point(181, 159) + resources.ApplyResources(Me.CheckRetweetNoConfirm, "CheckRetweetNoConfirm") Me.CheckRetweetNoConfirm.Name = "CheckRetweetNoConfirm" - Me.CheckRetweetNoConfirm.Size = New System.Drawing.Size(92, 16) - Me.CheckRetweetNoConfirm.TabIndex = 62 - Me.CheckRetweetNoConfirm.Text = "RT確認しない" Me.CheckRetweetNoConfirm.UseVisualStyleBackColor = True ' 'TextBitlyId ' - Me.TextBitlyId.Location = New System.Drawing.Point(201, 95) + resources.ApplyResources(Me.TextBitlyId, "TextBitlyId") Me.TextBitlyId.Name = "TextBitlyId" - Me.TextBitlyId.Size = New System.Drawing.Size(71, 19) - Me.TextBitlyId.TabIndex = 57 ' - 'Label42 - ' - Me.Label42.AutoSize = True - Me.Label42.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label42.Location = New System.Drawing.Point(19, 160) - Me.Label42.Name = "Label42" - Me.Label42.Size = New System.Drawing.Size(44, 12) - Me.Label42.TabIndex = 61 - Me.Label42.Text = "公式RT" - ' 'Label12 ' - Me.Label12.AutoSize = True - Me.Label12.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label12.Location = New System.Drawing.Point(20, 211) + resources.ApplyResources(Me.Label12, "Label12") Me.Label12.Name = "Label12" - Me.Label12.Size = New System.Drawing.Size(107, 12) - Me.Label12.TabIndex = 66 - Me.Label12.Text = "フッター(文末に付加)" ' 'Label77 ' - Me.Label77.AutoSize = True - Me.Label77.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label77.Location = New System.Drawing.Point(278, 97) + resources.ApplyResources(Me.Label77, "Label77") Me.Label77.Name = "Label77" - Me.Label77.Size = New System.Drawing.Size(42, 12) - Me.Label77.TabIndex = 58 - Me.Label77.Text = "APIKey" ' 'CheckUseRecommendStatus ' - Me.CheckUseRecommendStatus.AutoSize = True - Me.CheckUseRecommendStatus.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckUseRecommendStatus.Location = New System.Drawing.Point(182, 211) + resources.ApplyResources(Me.CheckUseRecommendStatus, "CheckUseRecommendStatus") Me.CheckUseRecommendStatus.Name = "CheckUseRecommendStatus" - Me.CheckUseRecommendStatus.Size = New System.Drawing.Size(195, 16) - Me.CheckUseRecommendStatus.TabIndex = 67 - Me.CheckUseRecommendStatus.Text = "推奨フッターを使用する[TWNv○○]" Me.CheckUseRecommendStatus.UseVisualStyleBackColor = True ' 'Label76 ' - Me.Label76.AutoSize = True - Me.Label76.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label76.Location = New System.Drawing.Point(179, 97) + resources.ApplyResources(Me.Label76, "Label76") Me.Label76.Name = "Label76" - Me.Label76.Size = New System.Drawing.Size(16, 12) - Me.Label76.TabIndex = 56 - Me.Label76.Text = "ID" ' 'StatusText ' - Me.StatusText.Location = New System.Drawing.Point(182, 233) + resources.ApplyResources(Me.StatusText, "StatusText") Me.StatusText.Name = "StatusText" - Me.StatusText.Size = New System.Drawing.Size(232, 19) - Me.StatusText.TabIndex = 68 ' 'ComboBoxAutoShortUrlFirst ' Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True - Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {"tinyurl", "is.gd", "twurl.nl", "bit.ly", "j.mp"}) - Me.ComboBoxAutoShortUrlFirst.Location = New System.Drawing.Point(181, 71) + Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4")}) + resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" - Me.ComboBoxAutoShortUrlFirst.Size = New System.Drawing.Size(246, 20) - Me.ComboBoxAutoShortUrlFirst.TabIndex = 55 ' - 'Label50 - ' - Me.Label50.AutoSize = True - Me.Label50.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label50.Location = New System.Drawing.Point(20, 22) - Me.Label50.Name = "Label50" - Me.Label50.Size = New System.Drawing.Size(84, 12) - Me.Label50.TabIndex = 50 - Me.Label50.Text = "短縮URLを解決" - ' 'Label71 ' - Me.Label71.AutoSize = True - Me.Label71.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label71.Location = New System.Drawing.Point(19, 74) + resources.ApplyResources(Me.Label71, "Label71") Me.Label71.Name = "Label71" - Me.Label71.Size = New System.Drawing.Size(154, 12) - Me.Label71.TabIndex = 54 - Me.Label71.Text = "URL自動短縮で優先的に使用" ' 'CheckTinyURL ' - Me.CheckTinyURL.AutoSize = True - Me.CheckTinyURL.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckTinyURL.Location = New System.Drawing.Point(182, 21) + resources.ApplyResources(Me.CheckTinyURL, "CheckTinyURL") Me.CheckTinyURL.Name = "CheckTinyURL" - Me.CheckTinyURL.Size = New System.Drawing.Size(67, 16) - Me.CheckTinyURL.TabIndex = 51 - Me.CheckTinyURL.Text = "解決する" Me.CheckTinyURL.UseVisualStyleBackColor = True ' 'CheckAutoConvertUrl ' - Me.CheckAutoConvertUrl.AutoSize = True - Me.CheckAutoConvertUrl.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckAutoConvertUrl.Location = New System.Drawing.Point(182, 43) + resources.ApplyResources(Me.CheckAutoConvertUrl, "CheckAutoConvertUrl") Me.CheckAutoConvertUrl.Name = "CheckAutoConvertUrl" - Me.CheckAutoConvertUrl.Size = New System.Drawing.Size(91, 16) - Me.CheckAutoConvertUrl.TabIndex = 53 - Me.CheckAutoConvertUrl.Text = "自動短縮する" Me.CheckAutoConvertUrl.UseVisualStyleBackColor = True ' - 'Label29 + 'PreviewPanel ' - Me.Label29.AutoSize = True - Me.Label29.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label29.Location = New System.Drawing.Point(20, 44) - Me.Label29.Name = "Label29" - Me.Label29.Size = New System.Drawing.Size(121, 12) - Me.Label29.TabIndex = 52 - Me.Label29.Text = "入力欄URLの自動短縮" + Me.PreviewPanel.Controls.Add(Me.ReplyIconStateCombo) + Me.PreviewPanel.Controls.Add(Me.Label72) + Me.PreviewPanel.Controls.Add(Me.ChkNewMentionsBlink) + Me.PreviewPanel.Controls.Add(Me.chkTabIconDisp) + Me.PreviewPanel.Controls.Add(Me.CheckPreviewEnable) + Me.PreviewPanel.Controls.Add(Me.Label81) + Me.PreviewPanel.Controls.Add(Me.LanguageCombo) + Me.PreviewPanel.Controls.Add(Me.Label13) + Me.PreviewPanel.Controls.Add(Me.CheckAlwaysTop) + Me.PreviewPanel.Controls.Add(Me.CheckMonospace) + Me.PreviewPanel.Controls.Add(Me.CheckBalloonLimit) + Me.PreviewPanel.Controls.Add(Me.Label10) + Me.PreviewPanel.Controls.Add(Me.ComboDispTitle) + Me.PreviewPanel.Controls.Add(Me.Label45) + Me.PreviewPanel.Controls.Add(Me.cmbNameBalloon) + Me.PreviewPanel.Controls.Add(Me.CheckDispUsername) + Me.PreviewPanel.Controls.Add(Me.CheckBox3) + resources.ApplyResources(Me.PreviewPanel, "PreviewPanel") + Me.PreviewPanel.Name = "PreviewPanel" ' + 'ReplyIconStateCombo + ' + Me.ReplyIconStateCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ReplyIconStateCombo.FormattingEnabled = True + Me.ReplyIconStateCombo.Items.AddRange(New Object() {resources.GetString("ReplyIconStateCombo.Items"), resources.GetString("ReplyIconStateCombo.Items1"), resources.GetString("ReplyIconStateCombo.Items2")}) + resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") + Me.ReplyIconStateCombo.Name = "ReplyIconStateCombo" + ' + 'Label72 + ' + resources.ApplyResources(Me.Label72, "Label72") + Me.Label72.Name = "Label72" + ' + 'ChkNewMentionsBlink + ' + resources.ApplyResources(Me.ChkNewMentionsBlink, "ChkNewMentionsBlink") + Me.ChkNewMentionsBlink.Name = "ChkNewMentionsBlink" + Me.ChkNewMentionsBlink.UseVisualStyleBackColor = True + ' + 'chkTabIconDisp + ' + resources.ApplyResources(Me.chkTabIconDisp, "chkTabIconDisp") + Me.chkTabIconDisp.Name = "chkTabIconDisp" + Me.chkTabIconDisp.UseVisualStyleBackColor = True + ' + 'CheckPreviewEnable + ' + resources.ApplyResources(Me.CheckPreviewEnable, "CheckPreviewEnable") + Me.CheckPreviewEnable.Name = "CheckPreviewEnable" + Me.CheckPreviewEnable.UseVisualStyleBackColor = True + ' + 'Label81 + ' + resources.ApplyResources(Me.Label81, "Label81") + Me.Label81.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label81.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label81.Name = "Label81" + ' + 'LanguageCombo + ' + Me.LanguageCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.LanguageCombo.FormattingEnabled = True + Me.LanguageCombo.Items.AddRange(New Object() {resources.GetString("LanguageCombo.Items"), resources.GetString("LanguageCombo.Items1"), resources.GetString("LanguageCombo.Items2"), resources.GetString("LanguageCombo.Items3")}) + resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") + Me.LanguageCombo.Name = "LanguageCombo" + ' + 'Label13 + ' + resources.ApplyResources(Me.Label13, "Label13") + Me.Label13.Name = "Label13" + ' + 'CheckAlwaysTop + ' + resources.ApplyResources(Me.CheckAlwaysTop, "CheckAlwaysTop") + Me.CheckAlwaysTop.Name = "CheckAlwaysTop" + Me.CheckAlwaysTop.UseVisualStyleBackColor = True + ' + 'CheckMonospace + ' + resources.ApplyResources(Me.CheckMonospace, "CheckMonospace") + Me.CheckMonospace.Name = "CheckMonospace" + Me.CheckMonospace.UseVisualStyleBackColor = True + ' + 'CheckBalloonLimit + ' + resources.ApplyResources(Me.CheckBalloonLimit, "CheckBalloonLimit") + Me.CheckBalloonLimit.Name = "CheckBalloonLimit" + Me.CheckBalloonLimit.UseVisualStyleBackColor = True + ' + 'Label10 + ' + resources.ApplyResources(Me.Label10, "Label10") + Me.Label10.Name = "Label10" + ' + 'ComboDispTitle + ' + Me.ComboDispTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboDispTitle.FormattingEnabled = True + Me.ComboDispTitle.Items.AddRange(New Object() {resources.GetString("ComboDispTitle.Items"), resources.GetString("ComboDispTitle.Items1"), resources.GetString("ComboDispTitle.Items2"), resources.GetString("ComboDispTitle.Items3"), resources.GetString("ComboDispTitle.Items4"), resources.GetString("ComboDispTitle.Items5"), resources.GetString("ComboDispTitle.Items6"), resources.GetString("ComboDispTitle.Items7")}) + resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") + Me.ComboDispTitle.Name = "ComboDispTitle" + ' + 'Label45 + ' + resources.ApplyResources(Me.Label45, "Label45") + Me.Label45.Name = "Label45" + ' + 'cmbNameBalloon + ' + Me.cmbNameBalloon.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.cmbNameBalloon.FormattingEnabled = True + Me.cmbNameBalloon.Items.AddRange(New Object() {resources.GetString("cmbNameBalloon.Items"), resources.GetString("cmbNameBalloon.Items1"), resources.GetString("cmbNameBalloon.Items2")}) + resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") + Me.cmbNameBalloon.Name = "cmbNameBalloon" + ' + 'CheckDispUsername + ' + resources.ApplyResources(Me.CheckDispUsername, "CheckDispUsername") + Me.CheckDispUsername.Name = "CheckDispUsername" + Me.CheckDispUsername.UseVisualStyleBackColor = True + ' + 'CheckBox3 + ' + resources.ApplyResources(Me.CheckBox3, "CheckBox3") + Me.CheckBox3.Name = "CheckBox3" + Me.CheckBox3.UseVisualStyleBackColor = True + ' + 'TweetPrvPanel + ' + Me.TweetPrvPanel.Controls.Add(Me.Label47) + Me.TweetPrvPanel.Controls.Add(Me.LabelDateTimeFormatApplied) + Me.TweetPrvPanel.Controls.Add(Me.Label62) + Me.TweetPrvPanel.Controls.Add(Me.CmbDateTimeFormat) + Me.TweetPrvPanel.Controls.Add(Me.Label23) + Me.TweetPrvPanel.Controls.Add(Me.Label11) + Me.TweetPrvPanel.Controls.Add(Me.IconSize) + Me.TweetPrvPanel.Controls.Add(Me.TextBox3) + Me.TweetPrvPanel.Controls.Add(Me.CheckSortOrderLock) + Me.TweetPrvPanel.Controls.Add(Me.CheckShowGrid) + Me.TweetPrvPanel.Controls.Add(Me.chkReadOwnPost) + Me.TweetPrvPanel.Controls.Add(Me.chkUnreadStyle) + Me.TweetPrvPanel.Controls.Add(Me.OneWayLv) + resources.ApplyResources(Me.TweetPrvPanel, "TweetPrvPanel") + Me.TweetPrvPanel.Name = "TweetPrvPanel" + ' + 'Label47 + ' + resources.ApplyResources(Me.Label47, "Label47") + Me.Label47.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label47.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label47.Name = "Label47" + ' + 'LabelDateTimeFormatApplied + ' + resources.ApplyResources(Me.LabelDateTimeFormatApplied, "LabelDateTimeFormatApplied") + Me.LabelDateTimeFormatApplied.Name = "LabelDateTimeFormatApplied" + ' + 'Label62 + ' + resources.ApplyResources(Me.Label62, "Label62") + Me.Label62.Name = "Label62" + ' + 'CmbDateTimeFormat + ' + resources.ApplyResources(Me.CmbDateTimeFormat, "CmbDateTimeFormat") + Me.CmbDateTimeFormat.Items.AddRange(New Object() {resources.GetString("CmbDateTimeFormat.Items"), resources.GetString("CmbDateTimeFormat.Items1"), resources.GetString("CmbDateTimeFormat.Items2"), resources.GetString("CmbDateTimeFormat.Items3"), resources.GetString("CmbDateTimeFormat.Items4"), resources.GetString("CmbDateTimeFormat.Items5"), resources.GetString("CmbDateTimeFormat.Items6"), resources.GetString("CmbDateTimeFormat.Items7"), resources.GetString("CmbDateTimeFormat.Items8"), resources.GetString("CmbDateTimeFormat.Items9"), resources.GetString("CmbDateTimeFormat.Items10")}) + Me.CmbDateTimeFormat.Name = "CmbDateTimeFormat" + ' + 'Label23 + ' + resources.ApplyResources(Me.Label23, "Label23") + Me.Label23.Name = "Label23" + ' + 'Label11 + ' + resources.ApplyResources(Me.Label11, "Label11") + Me.Label11.Name = "Label11" + ' + 'IconSize + ' + Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.IconSize.FormattingEnabled = True + Me.IconSize.Items.AddRange(New Object() {resources.GetString("IconSize.Items"), resources.GetString("IconSize.Items1"), resources.GetString("IconSize.Items2"), resources.GetString("IconSize.Items3"), resources.GetString("IconSize.Items4")}) + resources.ApplyResources(Me.IconSize, "IconSize") + Me.IconSize.Name = "IconSize" + ' + 'TextBox3 + ' + resources.ApplyResources(Me.TextBox3, "TextBox3") + Me.TextBox3.Name = "TextBox3" + ' + 'CheckSortOrderLock + ' + resources.ApplyResources(Me.CheckSortOrderLock, "CheckSortOrderLock") + Me.CheckSortOrderLock.Name = "CheckSortOrderLock" + Me.CheckSortOrderLock.UseVisualStyleBackColor = True + ' + 'CheckShowGrid + ' + resources.ApplyResources(Me.CheckShowGrid, "CheckShowGrid") + Me.CheckShowGrid.Name = "CheckShowGrid" + Me.CheckShowGrid.UseVisualStyleBackColor = True + ' + 'chkReadOwnPost + ' + resources.ApplyResources(Me.chkReadOwnPost, "chkReadOwnPost") + Me.chkReadOwnPost.Name = "chkReadOwnPost" + Me.chkReadOwnPost.UseVisualStyleBackColor = True + ' + 'chkUnreadStyle + ' + resources.ApplyResources(Me.chkUnreadStyle, "chkUnreadStyle") + Me.chkUnreadStyle.Name = "chkUnreadStyle" + Me.chkUnreadStyle.UseVisualStyleBackColor = True + ' + 'OneWayLv + ' + resources.ApplyResources(Me.OneWayLv, "OneWayLv") + Me.OneWayLv.Name = "OneWayLv" + Me.OneWayLv.UseVisualStyleBackColor = True + ' 'FontPanel ' Me.FontPanel.Controls.Add(Me.GroupBox1) - Me.FontPanel.Dock = System.Windows.Forms.DockStyle.Fill - Me.FontPanel.Enabled = False - Me.FontPanel.Location = New System.Drawing.Point(0, 0) + resources.ApplyResources(Me.FontPanel, "FontPanel") Me.FontPanel.Name = "FontPanel" - Me.FontPanel.Size = New System.Drawing.Size(525, 368) - Me.FontPanel.TabIndex = 51 - Me.FontPanel.Visible = False ' 'GroupBox1 ' @@ -2622,413 +1113,577 @@ Me.GroupBox1.Controls.Add(Me.btnListFont) Me.GroupBox1.Controls.Add(Me.lblListFont) Me.GroupBox1.Controls.Add(Me.Label61) - Me.GroupBox1.Location = New System.Drawing.Point(22, 18) + resources.ApplyResources(Me.GroupBox1, "GroupBox1") Me.GroupBox1.Name = "GroupBox1" - Me.GroupBox1.Size = New System.Drawing.Size(484, 267) - Me.GroupBox1.TabIndex = 1 Me.GroupBox1.TabStop = False - Me.GroupBox1.Text = "フォント&色設定" ' 'btnRetweet ' - Me.btnRetweet.AutoSize = True - Me.btnRetweet.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnRetweet.Location = New System.Drawing.Point(396, 119) + resources.ApplyResources(Me.btnRetweet, "btnRetweet") Me.btnRetweet.Name = "btnRetweet" - Me.btnRetweet.Size = New System.Drawing.Size(75, 22) - Me.btnRetweet.TabIndex = 14 - Me.btnRetweet.Text = "文字色" Me.btnRetweet.UseVisualStyleBackColor = True ' 'lblRetweet ' Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblRetweet.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblRetweet.Location = New System.Drawing.Point(214, 120) + resources.ApplyResources(Me.lblRetweet, "lblRetweet") Me.lblRetweet.Name = "lblRetweet" - Me.lblRetweet.Size = New System.Drawing.Size(104, 19) - Me.lblRetweet.TabIndex = 13 - Me.lblRetweet.Text = "This is sample." - Me.lblRetweet.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'Label80 ' - Me.Label80.AutoSize = True - Me.Label80.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label80.Location = New System.Drawing.Point(9, 123) + resources.ApplyResources(Me.Label80, "Label80") Me.Label80.Name = "Label80" - Me.Label80.Size = New System.Drawing.Size(50, 12) - Me.Label80.TabIndex = 12 - Me.Label80.Text = "ReTweet" ' 'ButtonBackToDefaultFontColor ' - Me.ButtonBackToDefaultFontColor.AutoSize = True - Me.ButtonBackToDefaultFontColor.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.ButtonBackToDefaultFontColor.Location = New System.Drawing.Point(194, 236) + resources.ApplyResources(Me.ButtonBackToDefaultFontColor, "ButtonBackToDefaultFontColor") Me.ButtonBackToDefaultFontColor.Name = "ButtonBackToDefaultFontColor" - Me.ButtonBackToDefaultFontColor.Size = New System.Drawing.Size(90, 22) - Me.ButtonBackToDefaultFontColor.TabIndex = 51 - Me.ButtonBackToDefaultFontColor.Text = "デフォルトに戻す" Me.ButtonBackToDefaultFontColor.UseVisualStyleBackColor = True ' 'btnDetailLink ' - Me.btnDetailLink.AutoSize = True - Me.btnDetailLink.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnDetailLink.Location = New System.Drawing.Point(396, 169) + resources.ApplyResources(Me.btnDetailLink, "btnDetailLink") Me.btnDetailLink.Name = "btnDetailLink" - Me.btnDetailLink.Size = New System.Drawing.Size(75, 22) - Me.btnDetailLink.TabIndex = 20 - Me.btnDetailLink.Text = "文字色" Me.btnDetailLink.UseVisualStyleBackColor = True ' 'lblDetailLink ' Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblDetailLink.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblDetailLink.Location = New System.Drawing.Point(214, 170) + resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") Me.lblDetailLink.Name = "lblDetailLink" - Me.lblDetailLink.Size = New System.Drawing.Size(104, 19) - Me.lblDetailLink.TabIndex = 19 - Me.lblDetailLink.Text = "This is sample." - Me.lblDetailLink.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'Label18 ' - Me.Label18.AutoSize = True - Me.Label18.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label18.Location = New System.Drawing.Point(8, 173) + resources.ApplyResources(Me.Label18, "Label18") Me.Label18.Name = "Label18" - Me.Label18.Size = New System.Drawing.Size(77, 12) - Me.Label18.TabIndex = 18 - Me.Label18.Text = "発言詳細リンク" ' 'btnUnread ' - Me.btnUnread.AutoSize = True - Me.btnUnread.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnUnread.Location = New System.Drawing.Point(396, 44) + resources.ApplyResources(Me.btnUnread, "btnUnread") Me.btnUnread.Name = "btnUnread" - Me.btnUnread.Size = New System.Drawing.Size(75, 22) - Me.btnUnread.TabIndex = 5 - Me.btnUnread.Text = "フォント&&色" Me.btnUnread.UseVisualStyleBackColor = True ' 'lblUnread ' Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblUnread.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblUnread.Location = New System.Drawing.Point(214, 45) + resources.ApplyResources(Me.lblUnread, "lblUnread") Me.lblUnread.Name = "lblUnread" - Me.lblUnread.Size = New System.Drawing.Size(104, 19) - Me.lblUnread.TabIndex = 4 - Me.lblUnread.Text = "This is sample." - Me.lblUnread.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'Label20 ' - Me.Label20.AutoSize = True - Me.Label20.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label20.Location = New System.Drawing.Point(9, 48) + resources.ApplyResources(Me.Label20, "Label20") Me.Label20.Name = "Label20" - Me.Label20.Size = New System.Drawing.Size(62, 12) - Me.Label20.TabIndex = 3 - Me.Label20.Text = "未読フォント" ' 'btnDetailBack ' - Me.btnDetailBack.AutoSize = True - Me.btnDetailBack.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnDetailBack.Location = New System.Drawing.Point(396, 194) + resources.ApplyResources(Me.btnDetailBack, "btnDetailBack") Me.btnDetailBack.Name = "btnDetailBack" - Me.btnDetailBack.Size = New System.Drawing.Size(75, 22) - Me.btnDetailBack.TabIndex = 23 - Me.btnDetailBack.Text = "背景色" Me.btnDetailBack.UseVisualStyleBackColor = True ' 'lblDetailBackcolor ' Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblDetailBackcolor.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblDetailBackcolor.Location = New System.Drawing.Point(214, 195) + resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") Me.lblDetailBackcolor.Name = "lblDetailBackcolor" - Me.lblDetailBackcolor.Size = New System.Drawing.Size(104, 19) - Me.lblDetailBackcolor.TabIndex = 22 - Me.lblDetailBackcolor.Text = "This is sample." - Me.lblDetailBackcolor.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'Label37 ' - Me.Label37.AutoSize = True - Me.Label37.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label37.Location = New System.Drawing.Point(9, 198) + resources.ApplyResources(Me.Label37, "Label37") Me.Label37.Name = "Label37" - Me.Label37.Size = New System.Drawing.Size(89, 12) - Me.Label37.TabIndex = 21 - Me.Label37.Text = "発言詳細背景色" ' 'btnDetail ' - Me.btnDetail.AutoSize = True - Me.btnDetail.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnDetail.Location = New System.Drawing.Point(396, 144) + resources.ApplyResources(Me.btnDetail, "btnDetail") Me.btnDetail.Name = "btnDetail" - Me.btnDetail.Size = New System.Drawing.Size(75, 22) - Me.btnDetail.TabIndex = 17 - Me.btnDetail.Text = "フォント&&色" Me.btnDetail.UseVisualStyleBackColor = True ' 'lblDetail ' Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblDetail.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblDetail.Location = New System.Drawing.Point(214, 145) + resources.ApplyResources(Me.lblDetail, "lblDetail") Me.lblDetail.Name = "lblDetail" - Me.lblDetail.Size = New System.Drawing.Size(104, 19) - Me.lblDetail.TabIndex = 16 - Me.lblDetail.Text = "This is sample." - Me.lblDetail.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'Label26 ' - Me.Label26.AutoSize = True - Me.Label26.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label26.Location = New System.Drawing.Point(9, 148) + resources.ApplyResources(Me.Label26, "Label26") Me.Label26.Name = "Label26" - Me.Label26.Size = New System.Drawing.Size(77, 12) - Me.Label26.TabIndex = 15 - Me.Label26.Text = "発言詳細文字" ' 'btnOWL ' - Me.btnOWL.AutoSize = True - Me.btnOWL.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnOWL.Location = New System.Drawing.Point(396, 94) + resources.ApplyResources(Me.btnOWL, "btnOWL") Me.btnOWL.Name = "btnOWL" - Me.btnOWL.Size = New System.Drawing.Size(75, 22) - Me.btnOWL.TabIndex = 11 - Me.btnOWL.Text = "文字色" Me.btnOWL.UseVisualStyleBackColor = True ' 'lblOWL ' Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblOWL.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblOWL.Location = New System.Drawing.Point(214, 95) + resources.ApplyResources(Me.lblOWL, "lblOWL") Me.lblOWL.Name = "lblOWL" - Me.lblOWL.Size = New System.Drawing.Size(104, 19) - Me.lblOWL.TabIndex = 10 - Me.lblOWL.Text = "This is sample." - Me.lblOWL.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'Label24 ' - Me.Label24.AutoSize = True - Me.Label24.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label24.Location = New System.Drawing.Point(9, 98) + resources.ApplyResources(Me.Label24, "Label24") Me.Label24.Name = "Label24" - Me.Label24.Size = New System.Drawing.Size(63, 12) - Me.Label24.TabIndex = 9 - Me.Label24.Text = "片思い発言" ' 'btnFav ' - Me.btnFav.AutoSize = True - Me.btnFav.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnFav.Location = New System.Drawing.Point(396, 69) + resources.ApplyResources(Me.btnFav, "btnFav") Me.btnFav.Name = "btnFav" - Me.btnFav.Size = New System.Drawing.Size(75, 22) - Me.btnFav.TabIndex = 8 - Me.btnFav.Text = "文字色" Me.btnFav.UseVisualStyleBackColor = True ' 'lblFav ' Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblFav.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblFav.Location = New System.Drawing.Point(214, 70) + resources.ApplyResources(Me.lblFav, "lblFav") Me.lblFav.Name = "lblFav" - Me.lblFav.Size = New System.Drawing.Size(104, 19) - Me.lblFav.TabIndex = 7 - Me.lblFav.Text = "This is sample." - Me.lblFav.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'Label22 ' - Me.Label22.AutoSize = True - Me.Label22.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label22.Location = New System.Drawing.Point(9, 73) + resources.ApplyResources(Me.Label22, "Label22") Me.Label22.Name = "Label22" - Me.Label22.Size = New System.Drawing.Size(48, 12) - Me.Label22.TabIndex = 6 - Me.Label22.Text = "Fav発言" ' 'btnListFont ' - Me.btnListFont.AutoSize = True - Me.btnListFont.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.btnListFont.Location = New System.Drawing.Point(396, 19) + resources.ApplyResources(Me.btnListFont, "btnListFont") Me.btnListFont.Name = "btnListFont" - Me.btnListFont.Size = New System.Drawing.Size(75, 22) - Me.btnListFont.TabIndex = 2 - Me.btnListFont.Text = "フォント&&色" Me.btnListFont.UseVisualStyleBackColor = True ' 'lblListFont ' Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblListFont.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.lblListFont.Location = New System.Drawing.Point(214, 20) + resources.ApplyResources(Me.lblListFont, "lblListFont") Me.lblListFont.Name = "lblListFont" - Me.lblListFont.Size = New System.Drawing.Size(104, 19) - Me.lblListFont.TabIndex = 1 - Me.lblListFont.Text = "This is sample." - Me.lblListFont.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'Label61 ' - Me.Label61.AutoSize = True - Me.Label61.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label61.Location = New System.Drawing.Point(9, 23) + resources.ApplyResources(Me.Label61, "Label61") Me.Label61.Name = "Label61" - Me.Label61.Size = New System.Drawing.Size(62, 12) - Me.Label61.TabIndex = 0 - Me.Label61.Text = "リストフォント" ' - 'StartupPanel + 'FontPanel2 ' - Me.StartupPanel.BackColor = System.Drawing.SystemColors.Window - Me.StartupPanel.Controls.Add(Me.Label9) - Me.StartupPanel.Controls.Add(Me.StartupReaded) - Me.StartupPanel.Controls.Add(Me.Label54) - Me.StartupPanel.Controls.Add(Me.CheckStartupFollowers) - Me.StartupPanel.Controls.Add(Me.Label51) - Me.StartupPanel.Controls.Add(Me.CheckStartupVersion) - Me.StartupPanel.Controls.Add(Me.Label74) - Me.StartupPanel.Controls.Add(Me.chkGetFav) - Me.StartupPanel.Dock = System.Windows.Forms.DockStyle.Fill - Me.StartupPanel.Enabled = False - Me.StartupPanel.Location = New System.Drawing.Point(0, 0) - Me.StartupPanel.Name = "StartupPanel" - Me.StartupPanel.Size = New System.Drawing.Size(525, 368) - Me.StartupPanel.TabIndex = 44 - Me.StartupPanel.Visible = False + Me.FontPanel2.Controls.Add(Me.GroupBox5) + resources.ApplyResources(Me.FontPanel2, "FontPanel2") + Me.FontPanel2.Name = "FontPanel2" ' - 'Label9 + 'GroupBox5 ' - Me.Label9.AutoSize = True - Me.Label9.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label9.Location = New System.Drawing.Point(22, 24) - Me.Label9.Name = "Label9" - Me.Label9.Size = New System.Drawing.Size(114, 12) - Me.Label9.TabIndex = 36 - Me.Label9.Text = "起動時読み込みポスト" + Me.GroupBox5.Controls.Add(Me.btnInputFont) + Me.GroupBox5.Controls.Add(Me.btnInputBackcolor) + Me.GroupBox5.Controls.Add(Me.btnAtTo) + Me.GroupBox5.Controls.Add(Me.btnListBack) + Me.GroupBox5.Controls.Add(Me.btnAtFromTarget) + Me.GroupBox5.Controls.Add(Me.btnAtTarget) + Me.GroupBox5.Controls.Add(Me.btnTarget) + Me.GroupBox5.Controls.Add(Me.btnAtSelf) + Me.GroupBox5.Controls.Add(Me.btnSelf) + Me.GroupBox5.Controls.Add(Me.lblInputFont) + Me.GroupBox5.Controls.Add(Me.lblInputBackcolor) + Me.GroupBox5.Controls.Add(Me.lblAtTo) + Me.GroupBox5.Controls.Add(Me.lblListBackcolor) + Me.GroupBox5.Controls.Add(Me.lblAtFromTarget) + Me.GroupBox5.Controls.Add(Me.lblAtTarget) + Me.GroupBox5.Controls.Add(Me.lblTarget) + Me.GroupBox5.Controls.Add(Me.lblAtSelf) + Me.GroupBox5.Controls.Add(Me.lblSelf) + Me.GroupBox5.Controls.Add(Me.ButtonBackToDefaultFontColor2) + Me.GroupBox5.Controls.Add(Me.Label89) + Me.GroupBox5.Controls.Add(Me.Label91) + Me.GroupBox5.Controls.Add(Me.Label95) + Me.GroupBox5.Controls.Add(Me.Label99) + Me.GroupBox5.Controls.Add(Me.Label101) + Me.GroupBox5.Controls.Add(Me.Label103) + Me.GroupBox5.Controls.Add(Me.Label105) + Me.GroupBox5.Controls.Add(Me.Label107) + Me.GroupBox5.Controls.Add(Me.Label109) + resources.ApplyResources(Me.GroupBox5, "GroupBox5") + Me.GroupBox5.Name = "GroupBox5" + Me.GroupBox5.TabStop = False ' - 'StartupReaded + 'btnInputFont ' - Me.StartupReaded.AutoSize = True - Me.StartupReaded.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.StartupReaded.Location = New System.Drawing.Point(257, 21) - Me.StartupReaded.Name = "StartupReaded" - Me.StartupReaded.Size = New System.Drawing.Size(76, 16) - Me.StartupReaded.TabIndex = 37 - Me.StartupReaded.Text = "既読にする" - Me.StartupReaded.UseVisualStyleBackColor = True + resources.ApplyResources(Me.btnInputFont, "btnInputFont") + Me.btnInputFont.Name = "btnInputFont" + Me.btnInputFont.UseVisualStyleBackColor = True ' - 'Label54 + 'btnInputBackcolor ' - Me.Label54.AutoSize = True - Me.Label54.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label54.Location = New System.Drawing.Point(22, 93) - Me.Label54.Name = "Label54" - Me.Label54.Size = New System.Drawing.Size(163, 12) - Me.Label54.TabIndex = 40 - Me.Label54.Text = "起動時片思いユーザーリスト取得" + resources.ApplyResources(Me.btnInputBackcolor, "btnInputBackcolor") + Me.btnInputBackcolor.Name = "btnInputBackcolor" + Me.btnInputBackcolor.UseVisualStyleBackColor = True ' - 'CheckStartupFollowers + 'btnAtTo ' - Me.CheckStartupFollowers.AutoSize = True - Me.CheckStartupFollowers.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckStartupFollowers.Location = New System.Drawing.Point(255, 92) - Me.CheckStartupFollowers.Name = "CheckStartupFollowers" - Me.CheckStartupFollowers.Size = New System.Drawing.Size(67, 16) - Me.CheckStartupFollowers.TabIndex = 41 - Me.CheckStartupFollowers.Text = "取得する" - Me.CheckStartupFollowers.UseVisualStyleBackColor = True + resources.ApplyResources(Me.btnAtTo, "btnAtTo") + Me.btnAtTo.Name = "btnAtTo" + Me.btnAtTo.UseVisualStyleBackColor = True ' - 'Label51 + 'btnListBack ' - Me.Label51.AutoSize = True - Me.Label51.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label51.Location = New System.Drawing.Point(22, 56) - Me.Label51.Name = "Label51" - Me.Label51.Size = New System.Drawing.Size(117, 12) - Me.Label51.TabIndex = 38 - Me.Label51.Text = "起動時バージョンチェック" + resources.ApplyResources(Me.btnListBack, "btnListBack") + Me.btnListBack.Name = "btnListBack" + Me.btnListBack.UseVisualStyleBackColor = True ' - 'CheckStartupVersion + 'btnAtFromTarget ' - Me.CheckStartupVersion.AutoSize = True - Me.CheckStartupVersion.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.CheckStartupVersion.Location = New System.Drawing.Point(255, 55) - Me.CheckStartupVersion.Name = "CheckStartupVersion" - Me.CheckStartupVersion.Size = New System.Drawing.Size(74, 16) - Me.CheckStartupVersion.TabIndex = 39 - Me.CheckStartupVersion.Text = "チェックする" - Me.CheckStartupVersion.UseVisualStyleBackColor = True + resources.ApplyResources(Me.btnAtFromTarget, "btnAtFromTarget") + Me.btnAtFromTarget.Name = "btnAtFromTarget" + Me.btnAtFromTarget.UseVisualStyleBackColor = True ' - 'Label74 + 'btnAtTarget ' - Me.Label74.AutoSize = True - Me.Label74.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Label74.Location = New System.Drawing.Point(22, 131) - Me.Label74.Name = "Label74" - Me.Label74.Size = New System.Drawing.Size(84, 12) - Me.Label74.TabIndex = 42 - Me.Label74.Text = "起動時Fav取得" + resources.ApplyResources(Me.btnAtTarget, "btnAtTarget") + Me.btnAtTarget.Name = "btnAtTarget" + Me.btnAtTarget.UseVisualStyleBackColor = True ' - 'chkGetFav + 'btnTarget ' - Me.chkGetFav.AutoSize = True - Me.chkGetFav.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.chkGetFav.Location = New System.Drawing.Point(255, 130) - Me.chkGetFav.Name = "chkGetFav" - Me.chkGetFav.Size = New System.Drawing.Size(67, 16) - Me.chkGetFav.TabIndex = 43 - Me.chkGetFav.Text = "取得する" - Me.chkGetFav.UseVisualStyleBackColor = True + resources.ApplyResources(Me.btnTarget, "btnTarget") + Me.btnTarget.Name = "btnTarget" + Me.btnTarget.UseVisualStyleBackColor = True ' + 'btnAtSelf + ' + resources.ApplyResources(Me.btnAtSelf, "btnAtSelf") + Me.btnAtSelf.Name = "btnAtSelf" + Me.btnAtSelf.UseVisualStyleBackColor = True + ' + 'btnSelf + ' + resources.ApplyResources(Me.btnSelf, "btnSelf") + Me.btnSelf.Name = "btnSelf" + Me.btnSelf.UseVisualStyleBackColor = True + ' + 'lblInputFont + ' + Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblInputFont, "lblInputFont") + Me.lblInputFont.Name = "lblInputFont" + ' + 'lblInputBackcolor + ' + Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") + Me.lblInputBackcolor.Name = "lblInputBackcolor" + ' + 'lblAtTo + ' + Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblAtTo, "lblAtTo") + Me.lblAtTo.Name = "lblAtTo" + ' + 'lblListBackcolor + ' + Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") + Me.lblListBackcolor.Name = "lblListBackcolor" + ' + 'lblAtFromTarget + ' + Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") + Me.lblAtFromTarget.Name = "lblAtFromTarget" + ' + 'lblAtTarget + ' + Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") + Me.lblAtTarget.Name = "lblAtTarget" + ' + 'lblTarget + ' + Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblTarget, "lblTarget") + Me.lblTarget.Name = "lblTarget" + ' + 'lblAtSelf + ' + Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") + Me.lblAtSelf.Name = "lblAtSelf" + ' + 'lblSelf + ' + Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblSelf, "lblSelf") + Me.lblSelf.Name = "lblSelf" + ' + 'ButtonBackToDefaultFontColor2 + ' + resources.ApplyResources(Me.ButtonBackToDefaultFontColor2, "ButtonBackToDefaultFontColor2") + Me.ButtonBackToDefaultFontColor2.Name = "ButtonBackToDefaultFontColor2" + Me.ButtonBackToDefaultFontColor2.UseVisualStyleBackColor = True + ' + 'Label89 + ' + resources.ApplyResources(Me.Label89, "Label89") + Me.Label89.Name = "Label89" + ' + 'Label91 + ' + resources.ApplyResources(Me.Label91, "Label91") + Me.Label91.Name = "Label91" + ' + 'Label95 + ' + resources.ApplyResources(Me.Label95, "Label95") + Me.Label95.Name = "Label95" + ' + 'Label99 + ' + resources.ApplyResources(Me.Label99, "Label99") + Me.Label99.Name = "Label99" + ' + 'Label101 + ' + resources.ApplyResources(Me.Label101, "Label101") + Me.Label101.Name = "Label101" + ' + 'Label103 + ' + resources.ApplyResources(Me.Label103, "Label103") + Me.Label103.Name = "Label103" + ' + 'Label105 + ' + resources.ApplyResources(Me.Label105, "Label105") + Me.Label105.Name = "Label105" + ' + 'Label107 + ' + resources.ApplyResources(Me.Label107, "Label107") + Me.Label107.Name = "Label107" + ' + 'Label109 + ' + resources.ApplyResources(Me.Label109, "Label109") + Me.Label109.Name = "Label109" + ' + 'ConnectionPanel + ' + Me.ConnectionPanel.Controls.Add(Me.CheckNicoms) + Me.ConnectionPanel.Controls.Add(Me.Label60) + Me.ConnectionPanel.Controls.Add(Me.ComboBoxOutputzUrlmode) + Me.ConnectionPanel.Controls.Add(Me.Label59) + Me.ConnectionPanel.Controls.Add(Me.TextBoxOutputzKey) + Me.ConnectionPanel.Controls.Add(Me.CheckOutputz) + Me.ConnectionPanel.Controls.Add(Me.CheckEnableBasicAuth) + Me.ConnectionPanel.Controls.Add(Me.TwitterSearchAPIText) + Me.ConnectionPanel.Controls.Add(Me.Label31) + Me.ConnectionPanel.Controls.Add(Me.TwitterAPIText) + Me.ConnectionPanel.Controls.Add(Me.Label8) + Me.ConnectionPanel.Controls.Add(Me.CheckUseSsl) + Me.ConnectionPanel.Controls.Add(Me.Label64) + Me.ConnectionPanel.Controls.Add(Me.ConnectionTimeOut) + Me.ConnectionPanel.Controls.Add(Me.Label63) + resources.ApplyResources(Me.ConnectionPanel, "ConnectionPanel") + Me.ConnectionPanel.Name = "ConnectionPanel" + ' + 'CheckNicoms + ' + resources.ApplyResources(Me.CheckNicoms, "CheckNicoms") + Me.CheckNicoms.Name = "CheckNicoms" + Me.CheckNicoms.UseVisualStyleBackColor = True + ' + 'Label60 + ' + resources.ApplyResources(Me.Label60, "Label60") + Me.Label60.Name = "Label60" + ' + 'ComboBoxOutputzUrlmode + ' + Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboBoxOutputzUrlmode.FormattingEnabled = True + Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {resources.GetString("ComboBoxOutputzUrlmode.Items"), resources.GetString("ComboBoxOutputzUrlmode.Items1")}) + resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") + Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" + ' + 'Label59 + ' + resources.ApplyResources(Me.Label59, "Label59") + Me.Label59.Name = "Label59" + ' + 'TextBoxOutputzKey + ' + resources.ApplyResources(Me.TextBoxOutputzKey, "TextBoxOutputzKey") + Me.TextBoxOutputzKey.Name = "TextBoxOutputzKey" + ' + 'CheckOutputz + ' + resources.ApplyResources(Me.CheckOutputz, "CheckOutputz") + Me.CheckOutputz.Name = "CheckOutputz" + Me.CheckOutputz.UseVisualStyleBackColor = True + ' + 'CheckEnableBasicAuth + ' + resources.ApplyResources(Me.CheckEnableBasicAuth, "CheckEnableBasicAuth") + Me.CheckEnableBasicAuth.Name = "CheckEnableBasicAuth" + Me.CheckEnableBasicAuth.UseVisualStyleBackColor = True + ' + 'TwitterSearchAPIText + ' + resources.ApplyResources(Me.TwitterSearchAPIText, "TwitterSearchAPIText") + Me.TwitterSearchAPIText.Name = "TwitterSearchAPIText" + ' + 'Label31 + ' + resources.ApplyResources(Me.Label31, "Label31") + Me.Label31.Name = "Label31" + ' + 'TwitterAPIText + ' + resources.ApplyResources(Me.TwitterAPIText, "TwitterAPIText") + Me.TwitterAPIText.Name = "TwitterAPIText" + ' + 'Label8 + ' + resources.ApplyResources(Me.Label8, "Label8") + Me.Label8.Name = "Label8" + ' + 'CheckUseSsl + ' + resources.ApplyResources(Me.CheckUseSsl, "CheckUseSsl") + Me.CheckUseSsl.Name = "CheckUseSsl" + Me.CheckUseSsl.UseVisualStyleBackColor = True + ' + 'Label64 + ' + resources.ApplyResources(Me.Label64, "Label64") + Me.Label64.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label64.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label64.Name = "Label64" + ' + 'ConnectionTimeOut + ' + resources.ApplyResources(Me.ConnectionTimeOut, "ConnectionTimeOut") + Me.ConnectionTimeOut.Name = "ConnectionTimeOut" + ' + 'Label63 + ' + resources.ApplyResources(Me.Label63, "Label63") + Me.Label63.Name = "Label63" + ' + 'ProxyPanel + ' + Me.ProxyPanel.Controls.Add(Me.Label55) + Me.ProxyPanel.Controls.Add(Me.TextProxyPassword) + Me.ProxyPanel.Controls.Add(Me.RadioProxyNone) + Me.ProxyPanel.Controls.Add(Me.LabelProxyPassword) + Me.ProxyPanel.Controls.Add(Me.RadioProxyIE) + Me.ProxyPanel.Controls.Add(Me.TextProxyUser) + Me.ProxyPanel.Controls.Add(Me.RadioProxySpecified) + Me.ProxyPanel.Controls.Add(Me.LabelProxyUser) + Me.ProxyPanel.Controls.Add(Me.LabelProxyAddress) + Me.ProxyPanel.Controls.Add(Me.TextProxyPort) + Me.ProxyPanel.Controls.Add(Me.TextProxyAddress) + Me.ProxyPanel.Controls.Add(Me.LabelProxyPort) + resources.ApplyResources(Me.ProxyPanel, "ProxyPanel") + Me.ProxyPanel.Name = "ProxyPanel" + ' + 'Label55 + ' + resources.ApplyResources(Me.Label55, "Label55") + Me.Label55.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label55.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label55.Name = "Label55" + ' + 'TextProxyPassword + ' + resources.ApplyResources(Me.TextProxyPassword, "TextProxyPassword") + Me.TextProxyPassword.Name = "TextProxyPassword" + Me.TextProxyPassword.UseSystemPasswordChar = True + ' + 'LabelProxyPassword + ' + resources.ApplyResources(Me.LabelProxyPassword, "LabelProxyPassword") + Me.LabelProxyPassword.Name = "LabelProxyPassword" + ' + 'TextProxyUser + ' + resources.ApplyResources(Me.TextProxyUser, "TextProxyUser") + Me.TextProxyUser.Name = "TextProxyUser" + ' + 'LabelProxyUser + ' + resources.ApplyResources(Me.LabelProxyUser, "LabelProxyUser") + Me.LabelProxyUser.Name = "LabelProxyUser" + ' + 'TextProxyPort + ' + resources.ApplyResources(Me.TextProxyPort, "TextProxyPort") + Me.TextProxyPort.Name = "TextProxyPort" + ' + 'LabelProxyPort + ' + resources.ApplyResources(Me.LabelProxyPort, "LabelProxyPort") + Me.LabelProxyPort.Name = "LabelProxyPort" + ' + 'TextProxyAddress + ' + resources.ApplyResources(Me.TextProxyAddress, "TextProxyAddress") + Me.TextProxyAddress.Name = "TextProxyAddress" + ' + 'LabelProxyAddress + ' + resources.ApplyResources(Me.LabelProxyAddress, "LabelProxyAddress") + Me.LabelProxyAddress.Name = "LabelProxyAddress" + ' + 'RadioProxySpecified + ' + resources.ApplyResources(Me.RadioProxySpecified, "RadioProxySpecified") + Me.RadioProxySpecified.Name = "RadioProxySpecified" + Me.RadioProxySpecified.UseVisualStyleBackColor = True + ' + 'RadioProxyIE + ' + resources.ApplyResources(Me.RadioProxyIE, "RadioProxyIE") + Me.RadioProxyIE.Checked = True + Me.RadioProxyIE.Name = "RadioProxyIE" + Me.RadioProxyIE.TabStop = True + Me.RadioProxyIE.UseVisualStyleBackColor = True + ' + 'RadioProxyNone + ' + resources.ApplyResources(Me.RadioProxyNone, "RadioProxyNone") + Me.RadioProxyNone.Name = "RadioProxyNone" + Me.RadioProxyNone.UseVisualStyleBackColor = True + ' 'Cancel ' Me.Cancel.CausesValidation = False Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel - Me.Cancel.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Cancel.Location = New System.Drawing.Point(613, 374) + resources.ApplyResources(Me.Cancel, "Cancel") Me.Cancel.Name = "Cancel" - Me.Cancel.Size = New System.Drawing.Size(75, 23) - Me.Cancel.TabIndex = 4 - Me.Cancel.Text = "キャンセル" Me.Cancel.UseVisualStyleBackColor = True ' 'Save ' Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK - Me.Save.ImeMode = System.Windows.Forms.ImeMode.NoControl - Me.Save.Location = New System.Drawing.Point(532, 374) + resources.ApplyResources(Me.Save, "Save") Me.Save.Name = "Save" - Me.Save.Size = New System.Drawing.Size(75, 23) - Me.Save.TabIndex = 3 - Me.Save.Text = "OK" Me.Save.UseVisualStyleBackColor = True ' + 'StartupUserstreamCheck + ' + resources.ApplyResources(Me.StartupUserstreamCheck, "StartupUserstreamCheck") + Me.StartupUserstreamCheck.Name = "StartupUserstreamCheck" + Me.StartupUserstreamCheck.UseVisualStyleBackColor = True + ' + 'Label83 + ' + resources.ApplyResources(Me.Label83, "Label83") + Me.Label83.Name = "Label83" + ' + 'UserstreamPeriod + ' + resources.ApplyResources(Me.UserstreamPeriod, "UserstreamPeriod") + Me.UserstreamPeriod.Name = "UserstreamPeriod" + ' 'AppendSettingDialog ' Me.AcceptButton = Me.Save - Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!) + resources.ApplyResources(Me, "$this") Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.CancelButton = Me.Cancel - Me.ClientSize = New System.Drawing.Size(701, 403) Me.Controls.Add(Me.Cancel) Me.Controls.Add(Me.Save) Me.Controls.Add(Me.SplitContainer1) @@ -3038,45 +1693,41 @@ Me.Name = "AppendSettingDialog" Me.ShowIcon = False Me.ShowInTaskbar = False - Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent - Me.Text = "設定" Me.TopMost = True Me.SplitContainer1.Panel1.ResumeLayout(False) Me.SplitContainer1.Panel2.ResumeLayout(False) CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit() Me.SplitContainer1.ResumeLayout(False) + Me.BasedPanel.ResumeLayout(False) + Me.BasedPanel.PerformLayout() + Me.GetPeriodPanel.ResumeLayout(False) + Me.GetPeriodPanel.PerformLayout() + Me.GetCountPanel.ResumeLayout(False) + Me.GetCountPanel.PerformLayout() + Me.StartupPanel.ResumeLayout(False) + Me.StartupPanel.PerformLayout() Me.UserStreamPanel.ResumeLayout(False) - Me.GroupBox4.ResumeLayout(False) - Me.GroupBox4.PerformLayout() + Me.UserStreamPanel.PerformLayout() Me.ActionPanel.ResumeLayout(False) Me.ActionPanel.PerformLayout() Me.GroupBox3.ResumeLayout(False) Me.GroupBox3.PerformLayout() + Me.TweetActPanel.ResumeLayout(False) + Me.TweetActPanel.PerformLayout() + Me.PreviewPanel.ResumeLayout(False) + Me.PreviewPanel.PerformLayout() + Me.TweetPrvPanel.ResumeLayout(False) + Me.TweetPrvPanel.PerformLayout() + Me.FontPanel.ResumeLayout(False) + Me.GroupBox1.ResumeLayout(False) + Me.GroupBox1.PerformLayout() Me.FontPanel2.ResumeLayout(False) Me.GroupBox5.ResumeLayout(False) Me.GroupBox5.PerformLayout() - Me.GetPeriodPanel.ResumeLayout(False) - Me.GetPeriodPanel.PerformLayout() - Me.TweetPrvPanel.ResumeLayout(False) - Me.TweetPrvPanel.PerformLayout() - Me.PreviewPanel.ResumeLayout(False) - Me.PreviewPanel.PerformLayout() Me.ConnectionPanel.ResumeLayout(False) Me.ConnectionPanel.PerformLayout() - Me.GetCountPanel.ResumeLayout(False) - Me.GetCountPanel.PerformLayout() - Me.BasedPanel.ResumeLayout(False) - Me.BasedPanel.PerformLayout() Me.ProxyPanel.ResumeLayout(False) - Me.GroupBox2.ResumeLayout(False) - Me.GroupBox2.PerformLayout() - Me.TweetActPanel.ResumeLayout(False) - Me.TweetActPanel.PerformLayout() - Me.FontPanel.ResumeLayout(False) - Me.GroupBox1.ResumeLayout(False) - Me.GroupBox1.PerformLayout() - Me.StartupPanel.ResumeLayout(False) - Me.StartupPanel.PerformLayout() + Me.ProxyPanel.PerformLayout() Me.ResumeLayout(False) End Sub @@ -3112,19 +1763,10 @@ Friend WithEvents Label5 As System.Windows.Forms.Label Friend WithEvents DMPeriod As System.Windows.Forms.TextBox Friend WithEvents StartupPanel As System.Windows.Forms.Panel - Friend WithEvents GroupBox4 As System.Windows.Forms.GroupBox - Friend WithEvents UserstreamPeriod As System.Windows.Forms.TextBox - Friend WithEvents Label83 As System.Windows.Forms.Label - Friend WithEvents Label70 As System.Windows.Forms.Label - Friend WithEvents StartupUserstreamCheck As System.Windows.Forms.CheckBox Friend WithEvents GetCountPanel As System.Windows.Forms.Panel - Friend WithEvents Label9 As System.Windows.Forms.Label Friend WithEvents StartupReaded As System.Windows.Forms.CheckBox - Friend WithEvents Label54 As System.Windows.Forms.Label Friend WithEvents CheckStartupFollowers As System.Windows.Forms.CheckBox - Friend WithEvents Label51 As System.Windows.Forms.Label Friend WithEvents CheckStartupVersion As System.Windows.Forms.CheckBox - Friend WithEvents Label74 As System.Windows.Forms.Label Friend WithEvents chkGetFav As System.Windows.Forms.CheckBox Friend WithEvents TextCountApiReply As System.Windows.Forms.TextBox Friend WithEvents Label67 As System.Windows.Forms.Label @@ -3143,7 +1785,6 @@ Friend WithEvents ProxyPanel As System.Windows.Forms.Panel Friend WithEvents ComboBoxPostKeySelect As System.Windows.Forms.ComboBox Friend WithEvents CheckRetweetNoConfirm As System.Windows.Forms.CheckBox - Friend WithEvents Label42 As System.Windows.Forms.Label Friend WithEvents GroupBox3 As System.Windows.Forms.GroupBox Friend WithEvents HotkeyCheck As System.Windows.Forms.CheckBox Friend WithEvents HotkeyCode As System.Windows.Forms.Label @@ -3152,9 +1793,7 @@ Friend WithEvents HotkeyAlt As System.Windows.Forms.CheckBox Friend WithEvents HotkeyShift As System.Windows.Forms.CheckBox Friend WithEvents HotkeyCtrl As System.Windows.Forms.CheckBox - Friend WithEvents Label82 As System.Windows.Forms.Label Friend WithEvents CheckHashSupple As System.Windows.Forms.CheckBox - Friend WithEvents Label79 As System.Windows.Forms.Label Friend WithEvents CheckAtIdSupple As System.Windows.Forms.CheckBox Friend WithEvents Label77 As System.Windows.Forms.Label Friend WithEvents TextBitlyId As System.Windows.Forms.TextBox @@ -3162,60 +1801,41 @@ Friend WithEvents ComboBoxAutoShortUrlFirst As System.Windows.Forms.ComboBox Friend WithEvents Label71 As System.Windows.Forms.Label Friend WithEvents CheckAutoConvertUrl As System.Windows.Forms.CheckBox - Friend WithEvents Label29 As System.Windows.Forms.Label Friend WithEvents Label57 As System.Windows.Forms.Label - Friend WithEvents Label56 As System.Windows.Forms.Label Friend WithEvents CheckFavRestrict As System.Windows.Forms.CheckBox Friend WithEvents CheckTinyURL As System.Windows.Forms.CheckBox - Friend WithEvents Label50 As System.Windows.Forms.Label Friend WithEvents Button3 As System.Windows.Forms.Button Friend WithEvents PlaySnd As System.Windows.Forms.CheckBox - Friend WithEvents Label14 As System.Windows.Forms.Label Friend WithEvents Label15 As System.Windows.Forms.Label - Friend WithEvents Label38 As System.Windows.Forms.Label Friend WithEvents BrowserPathText As System.Windows.Forms.TextBox Friend WithEvents UReadMng As System.Windows.Forms.CheckBox Friend WithEvents Label44 As System.Windows.Forms.Label Friend WithEvents CheckCloseToExit As System.Windows.Forms.CheckBox - Friend WithEvents Label40 As System.Windows.Forms.Label Friend WithEvents CheckMinimizeToTray As System.Windows.Forms.CheckBox - Friend WithEvents Label41 As System.Windows.Forms.Label Friend WithEvents Label27 As System.Windows.Forms.Label - Friend WithEvents Label39 As System.Windows.Forms.Label Friend WithEvents CheckReadOldPosts As System.Windows.Forms.CheckBox Friend WithEvents Label12 As System.Windows.Forms.Label Friend WithEvents StatusText As System.Windows.Forms.TextBox Friend WithEvents CheckUseRecommendStatus As System.Windows.Forms.CheckBox Friend WithEvents TweetActPanel As System.Windows.Forms.Panel - Friend WithEvents Label35 As System.Windows.Forms.Label Friend WithEvents CheckPreviewEnable As System.Windows.Forms.CheckBox Friend WithEvents Label81 As System.Windows.Forms.Label Friend WithEvents LanguageCombo As System.Windows.Forms.ComboBox Friend WithEvents Label13 As System.Windows.Forms.Label Friend WithEvents CheckAlwaysTop As System.Windows.Forms.CheckBox - Friend WithEvents Label58 As System.Windows.Forms.Label - Friend WithEvents Label75 As System.Windows.Forms.Label Friend WithEvents CheckMonospace As System.Windows.Forms.CheckBox - Friend WithEvents Label68 As System.Windows.Forms.Label Friend WithEvents CheckBalloonLimit As System.Windows.Forms.CheckBox Friend WithEvents Label10 As System.Windows.Forms.Label Friend WithEvents ComboDispTitle As System.Windows.Forms.ComboBox Friend WithEvents Label45 As System.Windows.Forms.Label Friend WithEvents cmbNameBalloon As System.Windows.Forms.ComboBox - Friend WithEvents Label46 As System.Windows.Forms.Label Friend WithEvents CheckDispUsername As System.Windows.Forms.CheckBox - Friend WithEvents Label25 As System.Windows.Forms.Label Friend WithEvents CheckBox3 As System.Windows.Forms.CheckBox Friend WithEvents TweetPrvPanel As System.Windows.Forms.Panel - Friend WithEvents Label21 As System.Windows.Forms.Label Friend WithEvents CheckSortOrderLock As System.Windows.Forms.CheckBox - Friend WithEvents Label78 As System.Windows.Forms.Label Friend WithEvents CheckShowGrid As System.Windows.Forms.CheckBox - Friend WithEvents Label73 As System.Windows.Forms.Label Friend WithEvents chkReadOwnPost As System.Windows.Forms.CheckBox - Friend WithEvents Label17 As System.Windows.Forms.Label Friend WithEvents chkUnreadStyle As System.Windows.Forms.CheckBox - Friend WithEvents Label16 As System.Windows.Forms.Label Friend WithEvents OneWayLv As System.Windows.Forms.CheckBox Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox Friend WithEvents btnRetweet As System.Windows.Forms.Button @@ -3254,7 +1874,6 @@ Friend WithEvents Label64 As System.Windows.Forms.Label Friend WithEvents ConnectionTimeOut As System.Windows.Forms.TextBox Friend WithEvents Label63 As System.Windows.Forms.Label - Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox Friend WithEvents Label55 As System.Windows.Forms.Label Friend WithEvents TextProxyPassword As System.Windows.Forms.TextBox Friend WithEvents LabelProxyPassword As System.Windows.Forms.Label @@ -3319,9 +1938,10 @@ Friend WithEvents TextBox3 As System.Windows.Forms.TextBox Friend WithEvents ReplyIconStateCombo As System.Windows.Forms.ComboBox Friend WithEvents Label72 As System.Windows.Forms.Label - Friend WithEvents Label43 As System.Windows.Forms.Label - Friend WithEvents Label48 As System.Windows.Forms.Label Friend WithEvents ChkNewMentionsBlink As System.Windows.Forms.CheckBox Friend WithEvents chkTabIconDisp As System.Windows.Forms.CheckBox Friend WithEvents UserStreamPanel As System.Windows.Forms.Panel + Friend WithEvents UserstreamPeriod As System.Windows.Forms.TextBox + Friend WithEvents StartupUserstreamCheck As System.Windows.Forms.CheckBox + Friend WithEvents Label83 As System.Windows.Forms.Label End Class Modified: branches/SettingDialog/Tween/AppendSettingDialog.resx =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.resx 2010-12-18 14:29:36 UTC (rev 1217) +++ branches/SettingDialog/Tween/AppendSettingDialog.resx 2010-12-18 16:57:51 UTC (rev 1218) @@ -117,13 +117,6248 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Top + + + + 0, 0 + + + Fill + + + 0, 0 + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQwAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wCWNoaWxkcmVuMQljaGlsZHJlbjIJY2hpbGRyZW4zAQEAAAEAAQAEBAQEAQgICB1TeXN0ZW0u + V2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUCAAAA + HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlAgAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVl + Tm9kZQIAAAACAAAABgMAAAAG5Z+65pysBgQAAAAJQmFzZWROb2RlAP////8GBQAAAAD/////CQUAAAAE + AAAACQYAAAAJBwAAAAkIAAAACQkAAAAFBgAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgA + AAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRl + eBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAABgoAAAAM5pu05paw6ZaT + 6ZqUBgsAAAAKUGVyaW9kTm9kZQD/////CQUAAAD/////CQUAAAAAAAAABQcAAAAdU3lzdGVtLldpbmRv + d3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtl + eRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgI + AgAAAAYNAAAAEui1t+WLleaZguOBruWLleS9nAYOAAAAC1N0YXJ0VXBOb2RlAP////8JBQAAAP////8J + BQAAAAAAAAAFCAAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlz + Q2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdl + S2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAABhAAAAAM5Y+W5b6X5Lu25pWwBhEAAAAMR2V0Q291 + bnROb2RlAP////8JBQAAAP////8JBQAAAAAAAAAFCQAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVl + Tm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1h + Z2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAABhMAAAAKVXNl + clN0cmVhbQYUAAAADlVzZXJTdHJlYW1Ob2RlAP////8JBQAAAP////8JBQAAAAAAAAAL + + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG5YuV5L2cBgQAAAAKQWN0aW9uTm9kZQD/////BgUAAAAA/////wkFAAAAAQAAAAkGAAAABQYAAAAd + U3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJ + bmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50 + AQEAAAEAAQABCAgIAgAAAAYHAAAAFeODhOOCpOODvOODiOOBruWLleS9nAYIAAAADFR3ZWV0QWN0Tm9k + ZQD/////CQUAAAD/////CQUAAAAAAAAACw== + + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG6KGo56S6BgQAAAALUHJldmlld05vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUGAAAA + HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdl + SW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3Vu + dAEBAAABAAEAAQgICAIAAAAGBwAAABLjg6rjgrnjg4jjga7ooajnpLoGCAAAAAxUd2VldFBydk5vZGUA + /////wkFAAAA/////wkFAAAAAAAAAAs= + + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAM44OV44Kp44Oz44OIBgQAAAAIRm9udE5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG + AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt + YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD + b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAA3jg5Xjgqnjg7Pjg4gyBggAAAAJRm9udE5vZGUyAP////8J + BQAAAP////8JBQAAAAAAAAAL + + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG6YCa5L+hBgQAAAAOQ29ubmVjdGlvbk5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG + AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt + YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD + b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAAzjg5fjg63jgq3jgrcGCAAAAAlQcm94eU5vZGUA/////wkF + AAAA/////wkFAAAAAAAAAAs= + + + + 172, 368 + + + + 0 + + + TreeView1 + + + System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel1 + + + 0 + + + SplitContainer1.Panel1 + + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1 + + + 0 + + + True + + + NoControl + + + 22, 22 + + + 166, 16 + + + 37 + + + 読み込んだポストを既読にする + + + StartupReaded + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + StartupPanel + + + 0 + + + True + + + NoControl + + + 22, 70 + + + 174, 16 + + + 41 + + + 片思いユーザーリストを取得する + + + CheckStartupFollowers + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + StartupPanel + + + 1 + + + True + + + NoControl + + + 22, 47 + + + 129, 16 + + + 39 + + + 最新版のチェックをする + + + CheckStartupVersion + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + StartupPanel + + + 2 + + + True + + + NoControl + + + 22, 93 + + + 124, 16 + + + 43 + + + Favoritesを取得する + + + chkGetFav + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + StartupPanel + + + 3 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 44 + + + False + + + StartupPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 0 + + + 227, 33 + + + 65, 19 + + + 3 + + + UserstreamPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + UserStreamPanel + + + 0 + + + True + + + NoControl + + + 20, 12 + + + 157, 16 + + + 1 + + + 起動時に自動的に接続する + + + StartupUserstreamCheck + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + UserStreamPanel + + + 1 + + + True + + + NoControl + + + 18, 39 + + + 145, 12 + + + 2 + + + 発言一覧への反映間隔(秒) + + + Label83 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + UserStreamPanel + + + 2 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 44 + + + False + + + UserStreamPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 1 + + + True + + + NoControl + + + 4, 15 + + + 48, 16 + + + 0 + + + 有効 + + + HotkeyCheck + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 0 + + + True + + + NoControl + + + 340, 16 + + + 13, 14 + + + 6 + + + 0 + + + HotkeyCode + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 1 + + + Disable + + + 257, 13 + + + 77, 19 + + + 5 + + + HotkeyText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 2 + + + True + + + NoControl + + + 211, 15 + + + 42, 16 + + + 4 + + + Win + + + HotkeyWin + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 3 + + + True + + + NoControl + + + 168, 15 + + + 39, 16 + + + 3 + + + Alt + + + HotkeyAlt + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 4 + + + True + + + NoControl + + + 116, 15 + + + 48, 16 + + + 2 + + + Shift + + + HotkeyShift + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 5 + + + True + + + NoControl + + + 69, 15 + + + 43, 16 + + + 1 + + + Ctrl + + + HotkeyCtrl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 6 + + + 21, 282 + + + 474, 41 + + + 76 + + + ホットキー + + + GroupBox3 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 0 + + + True + + + NoControl + + + 20, 254 + + + 157, 16 + + + 75 + + + #タグの入力補助を使用する + + + CheckHashSupple + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 1 + + + True + + + NoControl + + + 21, 229 + + + 153, 16 + + + 73 + + + @IDの入力補助を使用する + + + CheckAtIdSupple + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 2 + + + True + + + NoControl + + + 26, 210 + + + 340, 12 + + + 71 + + + 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 + + + Label57 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 3 + + + True + + + NoControl + + + 21, 188 + + + 183, 16 + + + 70 + + + Fav操作結果を厳密にチェックする + + + CheckFavRestrict + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 4 + + + NoControl + + + 418, 157 + + + 75, 21 + + + 65 + + + 参照 + + + Button3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 5 + + + True + + + NoControl + + + 22, 12 + + + 113, 16 + + + 40 + + + サウンドを再生する + + + PlaySnd + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 6 + + + NoControl + + + 22, 36 + + + 408, 22 + + + 41 + + + タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 + + + Label15 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 7 + + + 184, 160 + + + 228, 19 + + + 64 + + + BrowserPathText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 8 + + + True + + + NoControl + + + 22, 67 + + + 100, 16 + + + 43 + + + 未読管理を行う + + + UReadMng + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 9 + + + True + + + NoControl + + + 21, 164 + + + 60, 12 + + + 63 + + + ブラウザパス + + + Label44 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 10 + + + True + + + NoControl + + + 22, 114 + + + 171, 16 + + + 47 + + + ×ボタンを押したときに終了する + + + CheckCloseToExit + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 11 + + + True + + + NoControl + + + 21, 136 + + + 170, 16 + + + 49 + + + 最小化したときにアイコン化する + + + CheckMinimizeToTray + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 12 + + + True + + + NoControl + + + 22, 91 + + + 145, 16 + + + 45 + + + 新着時に未読をクリアする + + + CheckReadOldPosts + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 13 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 52 + + + False + + + ActionPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 2 + + + 343, 94 + + + 70, 19 + + + 69 + + + TextBitlyPw + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 0 + + + Enter + + + Ctrl+Enter + + + Shift+Enter + + + 181, 136 + + + 246, 20 + + + 60 + + + ComboBoxPostKeySelect + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 1 + + + True + + + NoControl + + + 19, 139 + + + 137, 12 + + + 59 + + + POSTキー(デフォルトEnter) + + + Label27 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 2 + + + True + + + NoControl + + + 21, 163 + + + 165, 16 + + + 62 + + + 公式RTする際に確認をしない + + + CheckRetweetNoConfirm + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 3 + + + 201, 95 + + + 71, 19 + + + 57 + + + TextBitlyId + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 4 + + + True + + + NoControl + + + 20, 211 + + + 107, 12 + + + 66 + + + フッター(文末に付加) + + + Label12 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 5 + + + True + + + NoControl + + + 278, 97 + + + 42, 12 + + + 58 + + + APIKey + + + Label77 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 6 + + + True + + + NoControl + + + 182, 211 + + + 195, 16 + + + 67 + + + 推奨フッターを使用する[TWNv○○] + + + CheckUseRecommendStatus + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 7 + + + True + + + NoControl + + + 179, 97 + + + 16, 12 + + + 56 + + + ID + + + Label76 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 8 + + + 182, 233 + + + 232, 19 + + + 68 + + + StatusText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 9 + + + tinyurl + + + is.gd + + + twurl.nl + + + bit.ly + + + j.mp + + + 181, 71 + + + 246, 20 + + + 55 + + + ComboBoxAutoShortUrlFirst + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 10 + + + True + + + NoControl + + + 19, 74 + + + 154, 12 + + + 54 + + + URL自動短縮で優先的に使用 + + + Label71 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 11 + + + True + + + NoControl + + + 22, 21 + + + 122, 16 + + + 51 + + + 短縮URLを解決する + + + CheckTinyURL + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 12 + + + True + + + NoControl + + + 22, 42 + + + 242, 16 + + + 53 + + + 入力欄のURLを投稿する際に自動で短縮する + + + CheckAutoConvertUrl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 13 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 77 + + + False + + + TweetActPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 3 + + + 通知なし + + + アイコン変更 + + + アイコン変更&点滅 + + + 217, 142 + + + 121, 20 + + + 94 + + + ReplyIconStateCombo + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 0 + + + True + + + NoControl + + + 26, 145 + + + 134, 12 + + + 93 + + + 未読Mentions通知アイコン + + + Label72 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 1 + + + True + + + NoControl + + + 26, 166 + + + 256, 16 + + + 96 + + + Mentionsの新着があるときにウインドウを点滅する + + + ChkNewMentionsBlink + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 2 + + + True + + + NoControl + + + 27, 118 + + + 161, 16 + + + 92 + + + タブに未読アイコンを表示する + + + chkTabIconDisp + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 3 + + + True + + + NoControl + + + 26, 191 + + + 243, 16 + + + 60 + + + 画像リンクがあった場合にサムネイルを表示する + + + CheckPreviewEnable + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 4 + + + True + + + NoControl + + + 87, 290 + + + 115, 12 + + + 84 + + + Apply after restarting + + + Label81 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 5 + + + OS Default + + + Japanese + + + English + + + Simplified Chinese + + + 213, 290 + + + 121, 20 + + + 85 + + + LanguageCombo + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 6 + + + True + + + NoControl + + + 26, 290 + + + 53, 12 + + + 83 + + + Language + + + Label13 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 7 + + + True + + + NoControl + + + 25, 263 + + + 133, 16 + + + 82 + + + 常に最前面に表示する + + + CheckAlwaysTop + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 8 + + + True + + + NoControl + + + 25, 241 + + + 343, 16 + + + 64 + + + 発言詳細を等幅フォントで表示(AA対応、フォント適用不具合あり) + + + CheckMonospace + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 9 + + + True + + + NoControl + + + 26, 66 + + + 249, 16 + + + 48 + + + 画面最小化・アイコン時のみバルーンを表示する + + + CheckBalloonLimit + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 10 + + + True + + + NoControl + + + 24, 21 + + + 130, 12 + + + 43 + + + 新着バルーンのユーザー名 + + + Label10 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 11 + + + (なし) + + + バージョン + + + 最終発言 + + + @未読数 + + + 未読数 + + + 未読数(@未読数) + + + 全未読/全発言数 + + + 発言数/フォロー数/フォロワー数 + + + 215, 88 + + + 197, 20 + + + 50 + + + ComboDispTitle + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 12 + + + True + + + NoControl + + + 24, 91 + + + 60, 12 + + + 49 + + + タイトルバー + + + Label45 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 13 + + + なし + + + ユーザーID + + + ニックネーム + + + 215, 18 + + + 100, 20 + + + 44 + + + cmbNameBalloon + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 14 + + + True + + + NoControl + + + 26, 43 + + + 235, 16 + + + 46 + + + タイトルバーとツールチップにユーザー名を表示 + + + CheckDispUsername + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 15 + + + True + + + False + + + NoControl + + + 25, 216 + + + 180, 16 + + + 62 + + + 発言詳細部にアイコンを表示する + + + CheckBox3 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 16 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 50 + + + False + + + PreviewPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 4 + + + True + + + NoControl + + + 214, 134 + + + 131, 12 + + + 104 + + + 再起動後有効になります。 + + + Label47 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 0 + + + True + + + NoControl + + + 264, 90 + + + 44, 12 + + + 100 + + + Label63 + + + LabelDateTimeFormatApplied + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 1 + + + True + + + NoControl + + + 214, 90 + + + 44, 12 + + + 99 + + + Sample: + + + Label62 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 2 + + + Top, Bottom, Left, Right + + + yyyy/MM/dd H:mm:ss + + + yy/M/d H:mm:ss + + + H:mm:ss yy/M/d + + + M/d H:mm:ss + + + M/d H:mm + + + H:mm:ss M/d + + + H:mm:ss + + + H:mm + + + tt h:mm + + + M/d tt h:mm:ss + + + M/d tt h:mm + + + 216, 67 + + + 199, 20 + + + 98 + + + CmbDateTimeFormat + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 3 + + + True + + + NoControl + + + 25, 70 + + + 113, 12 + + + 97 + + + リストの日時フォーマット + + + Label23 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 4 + + + True + + + NoControl + + + 25, 108 + + + 163, 12 + + + 101 + + + リストのアイコンサイズ(初期値16) + + + Label11 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 5 + + + none + + + 16*16 + + + 24*24 + + + 48*48 + + + 48*48(2Column) + + + 252, 105 + + + 161, 20 + + + 103 + + + IconSize + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 6 + + + False + + + 216, 106 + + + 34, 19 + + + 102 + + + TextBox3 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 7 + + + True + + + NoControl + + + 25, 203 + + + 203, 16 + + + 96 + + + ソート順を変更できないようにロックする + + + CheckSortOrderLock + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 8 + + + True + + + NoControl + + + 26, 178 + + + 154, 16 + + + 94 + + + リストの区切り線を表示する + + + CheckShowGrid + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 9 + + + True + + + NoControl + + + 26, 153 + + + 143, 16 + + + 92 + + + 自分の発言を既読にする + + + chkReadOwnPost + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 10 + + + True + + + NoControl + + + 27, 42 + + + 226, 16 + + + 84 + + + 未読ポストのフォントと色を変更する(低速) + + + chkUnreadStyle + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 11 + + + True + + + NoControl + + + 27, 21 + + + 162, 16 + + + 82 + + + 片思いを色分けして表示する + + + OneWayLv + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 12 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 86 + + + False + + + TweetPrvPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 5 + + + True + + + NoControl + + + 396, 119 + + + 75, 22 + + + 14 + + + 文字色 + + + btnRetweet + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 0 + + + NoControl + + + 214, 120 + + + 104, 19 + + + 13 + + + This is sample. + + + MiddleLeft + + + lblRetweet + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 1 + + + True + + + NoControl + + + 9, 123 + + + 50, 12 + + + 12 + + + ReTweet + + + Label80 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 2 + + + True + + + NoControl + + + 194, 236 + + + 90, 22 + + + 51 + + + デフォルトに戻す + + + ButtonBackToDefaultFontColor + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 3 + + + True + + + NoControl + + + 396, 169 + + + 75, 22 + + + 20 + + + 文字色 + + + btnDetailLink + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 4 + + + NoControl + + + 214, 170 + + + 104, 19 + + + 19 + + + This is sample. + + + MiddleLeft + + + lblDetailLink + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 5 + + + True + + + NoControl + + + 8, 173 + + + 77, 12 + + + 18 + + + 発言詳細リンク + + + Label18 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 6 + + + True + + + NoControl + + + 396, 44 + + + 75, 22 + + + 5 + + + フォント&&色 + + + btnUnread + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 7 + + + NoControl + + + 214, 45 + + + 104, 19 + + + 4 + + + This is sample. + + + MiddleLeft + + + lblUnread + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 8 + + + True + + + NoControl + + + 9, 48 + + + 62, 12 + + + 3 + + + 未読フォント + + + Label20 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 9 + + + True + + + NoControl + + + 396, 194 + + + 75, 22 + + + 23 + + + 背景色 + + + btnDetailBack + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 10 + + + NoControl + + + 214, 195 + + + 104, 19 + + + 22 + + + This is sample. + + + MiddleLeft + + + lblDetailBackcolor + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 11 + + + True + + + NoControl + + + 9, 198 + + + 89, 12 + + + 21 + + + 発言詳細背景色 + + + Label37 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 12 + + + True + + + NoControl + + + 396, 144 + + + 75, 22 + + + 17 + + + フォント&&色 + + + btnDetail + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 13 + + + NoControl + + + 214, 145 + + + 104, 19 + + + 16 + + + This is sample. + + + MiddleLeft + + + lblDetail + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 14 + + + True + + + NoControl + + + 9, 148 + + + 77, 12 + + + 15 + + + 発言詳細文字 + + + Label26 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 15 + + + True + + + NoControl + + + 396, 94 + + + 75, 22 + + + 11 + + + 文字色 + + + btnOWL + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 16 + + + NoControl + + + 214, 95 + + + 104, 19 + + + 10 + + + This is sample. + + + MiddleLeft + + + lblOWL + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 17 + + + True + + + NoControl + + + 9, 98 + + + 63, 12 + + + 9 + + + 片思い発言 + + + Label24 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 18 + + + True + + + NoControl + + + 396, 69 + + + 75, 22 + + + 8 + + + 文字色 + + + btnFav + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 19 + + + NoControl + + + 214, 70 + + + 104, 19 + + + 7 + + + This is sample. + + + MiddleLeft + + + lblFav + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 20 + + + True + + + NoControl + + + 9, 73 + + + 48, 12 + + + 6 + + + Fav発言 + + + Label22 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 21 + + + True + + + NoControl + + + 396, 19 + + + 75, 22 + + + 2 + + + フォント&&色 + + + btnListFont + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 22 + + + NoControl + + + 214, 20 + + + 104, 19 + + + 1 + + + This is sample. + + + MiddleLeft + + + lblListFont + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 23 + + + True + + + NoControl + + + 9, 23 + + + 62, 12 + + + 0 + + + リストフォント + + + Label61 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 24 + + + 22, 18 + + + 484, 267 + + + 1 + + + フォント&色設定 + + + GroupBox1 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + FontPanel + + + 0 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 51 + + + False + + + FontPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 6 + + + True + + + NoControl + + + 398, 216 + + + 75, 22 + + + 69 + + + フォント&&色 + + + btnInputFont + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 0 + + + True + + + NoControl + + + 398, 191 + + + 75, 22 + + + 68 + + + 背景色 + + + btnInputBackcolor + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 1 + + + True + + + NoControl + + + 398, 141 + + + 75, 22 + + + 66 + + + 背景色 + + + btnAtTo + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 2 + + + True + + + NoControl + + + 398, 166 + + + 75, 22 + + + 67 + + + 背景色 + + + btnListBack + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 3 + + + True + + + NoControl + + + 398, 116 + + + 75, 22 + + + 65 + + + 背景色 + + + btnAtFromTarget + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 4 + + + True + + + NoControl + + + 398, 91 + + + 75, 22 + + + 64 + + + 背景色 + + + btnAtTarget + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 5 + + + True + + + NoControl + + + 398, 66 + + + 75, 22 + + + 63 + + + 背景色 + + + btnTarget + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 6 + + + True + + + NoControl + + + 398, 41 + + + 75, 22 + + + 62 + + + 背景色 + + + btnAtSelf + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 7 + + + True + + + NoControl + + + 398, 16 + + + 75, 22 + + + 61 + + + 背景色 + + + btnSelf + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 8 + + + NoControl + + + 214, 220 + + + 102, 19 + + + 60 + + + This is sample. + + + MiddleLeft + + + lblInputFont + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 9 + + + NoControl + + + 214, 195 + + + 102, 19 + + + 59 + + + This is sample. + + + MiddleLeft + + + lblInputBackcolor + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 10 + + + NoControl + + + 214, 145 + + + 102, 19 + + + 57 + + + This is sample. + + + MiddleLeft + + + lblAtTo + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 11 + + + NoControl + + + 214, 170 + + + 102, 19 + + + 58 + + + This is sample. + + + MiddleLeft + + + lblListBackcolor + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 12 + + + NoControl + + + 214, 120 + + + 102, 19 + + + 56 + + + This is sample. + + + MiddleLeft + + + lblAtFromTarget + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 13 + + + NoControl + + + 214, 95 + + + 102, 19 + + + 55 + + + This is sample. + + + MiddleLeft + + + lblAtTarget + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 14 + + + NoControl + + + 214, 70 + + + 102, 19 + + + 54 + + + This is sample. + + + MiddleLeft + + + lblTarget + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 15 + + + NoControl + + + 214, 45 + + + 102, 19 + + + 53 + + + This is sample. + + + MiddleLeft + + + lblAtSelf + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 16 + + + NoControl + + + 214, 19 + + + 102, 19 + + + 52 + + + This is sample. + + + MiddleLeft + + + lblSelf + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 17 + + + True + + + NoControl + + + 191, 252 + + + 90, 22 + + + 51 + + + デフォルトに戻す + + + ButtonBackToDefaultFontColor2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 18 + + + True + + + NoControl + + + 9, 220 + + + 74, 12 + + + 48 + + + 入力欄フォント + + + Label89 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 19 + + + True + + + NoControl + + + 9, 195 + + + 131, 12 + + + 45 + + + 入力欄アクティブ時背景色 + + + Label91 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 20 + + + True + + + NoControl + + + 9, 145 + + + 102, 12 + + + 39 + + + その発言の@先発言 + + + Label95 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 21 + + + True + + + NoControl + + + 9, 170 + + + 53, 12 + + + 42 + + + 一般発言 + + + Label99 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 22 + + + True + + + NoControl + + + 9, 120 + + + 134, 12 + + + 36 + + + その発言の@先の人の発言 + + + Label101 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 23 + + + True + + + NoControl + + + 9, 95 + + + 88, 12 + + + 33 + + + その人への@返信 + + + Label103 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 24 + + + True + + + NoControl + + + 9, 70 + + + 70, 12 + + + 30 + + + その人の発言 + + + Label105 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 25 + + + True + + + NoControl + + + 9, 45 + + + 81, 12 + + + 27 + + + 自分への@返信 + + + Label107 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 26 + + + True + + + NoControl + + + 9, 20 + + + 63, 12 + + + 24 + + + 自分の発言 + + + Label109 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 27 + + + 22, 18 + + + 489, 290 + + + 1 + + + フォント&色設定 + + + GroupBox5 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + FontPanel2 + + + 0 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 25 + + + False + + + FontPanel2 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 7 + + + True + + + NoControl + + + 23, 295 + + + 237, 16 + + + 24 + + + ニコニコ動画のURLをnico.msで短縮して送信 + + + CheckNicoms + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 0 + + + True + + + NoControl + + + 36, 245 + + + 99, 12 + + + 22 + + + アウトプット先のURL + + + Label60 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 1 + + + twitter.com + + + twitter.com/username + + + 205, 242 + + + 182, 20 + + + 23 + + + ComboBoxOutputzUrlmode + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 2 + + + True + + + NoControl + + + 36, 199 + + + 63, 12 + + + 20 + + + 復活の呪文 + + + Label59 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 3 + + + 205, 196 + + + 182, 19 + + + 21 + + + TextBoxOutputzKey + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 4 + + + True + + + NoControl + + + 23, 162 + + + 115, 16 + + + 19 + + + Outputzに対応する + + + CheckOutputz + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 5 + + + True + + + NoControl + + + 22, 329 + + + 178, 16 + + + 18 + + + BASIC認証への変更を許可する + + + CheckEnableBasicAuth + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 6 + + + 262, 125 + + + 125, 19 + + + 17 + + + search.twitter.com + + + TwitterSearchAPIText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 7 + + + True + + + NoControl + + + 21, 128 + + + 228, 12 + + + 16 + + + Twitter SearchAPI URL (search.twitter.com) + + + Label31 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 8 + + + 262, 100 + + + 125, 19 + + + 15 + + + api.twitter.com + + + TwitterAPIText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 9 + + + True + + + NoControl + + + 21, 103 + + + 174, 12 + + + 14 + + + Twitter API URL (api.twitter.com) + + + Label8 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 10 + + + True + + + NoControl + + + 23, 78 + + + 145, 16 + + + 13 + + + 通信にHTTPSを使用する + + + CheckUseSsl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 11 + + + True + + + NoControl + + + 21, 51 + + + 349, 12 + + + 12 + + + ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 + + + Label64 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 12 + + + 262, 18 + + + 123, 19 + + + 11 + + + ConnectionTimeOut + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 13 + + + True + + + NoControl + + + 21, 21 + + + 131, 12 + + + 10 + + + タイムアウトまでの時間(秒) + + + Label63 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 14 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 53 + + + False + + + ConnectionPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 8 + + + True + + + NoControl + + + 37, 131 + + + 314, 12 + + + 11 + + + ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 + + + Label55 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 0 + + + 283, 100 + + + 96, 19 + + + 10 + + + TextProxyPassword + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 1 + + + True + + + NoControl + + + 15, 15 + + + 76, 16 + + + 0 + + + 使用しない + + + RadioProxyNone + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 2 + + + True + + + NoControl + + + 214, 103 + + + 69, 12 + + + 9 + + + パスワード(&W) + + + LabelProxyPassword + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 3 + + + True + + + NoControl + + + 15, 37 + + + 190, 16 + + + 1 + + + InternetExplorerの設定を使用する + + + RadioProxyIE + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 4 + + + 140, 100 + + + 68, 19 + + + 8 + + + TextProxyUser + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 5 + + + True + + + NoControl + + + 15, 59 + + + 66, 16 + + + 2 + + + 指定する + + + RadioProxySpecified + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 6 + + + True + + + NoControl + + + 71, 103 + + + 63, 12 + + + 7 + + + ユーザ名(&U) + + + LabelProxyUser + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 7 + + + True + + + NoControl + + + 47, 78 + + + 58, 12 + + + 3 + + + プロキシ(&X) + + + LabelProxyAddress + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 8 + + + 306, 75 + + + 73, 19 + + + 6 + + + TextProxyPort + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 9 + + + 111, 75 + + + 135, 19 + + + 4 + + + TextProxyAddress + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 10 + + + True + + + NoControl + + + 252, 78 + + + 48, 12 + + + 5 + + + ポート(&P) + + + LabelProxyPort + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 11 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 54 + + + False + + + ProxyPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 9 + + + True + + + False + + + NoControl + + + 227, 20 + + + 57, 16 + + + 14 + + + BASIC + + + AuthBasicRadio + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 0 + + + True + + + NoControl + + + 113, 20 + + + 93, 16 + + + 13 + + + OAuth(xAuth) + + + AuthOAuthRadio + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 1 + + + True + + + NoControl + + + 22, 22 + + + 53, 12 + + + 12 + + + 認証方法 + + + Label6 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 2 + + + NoControl + + + 305, 64 + + + 75, 23 + + + 18 + + + クリア + + + AuthClearButton + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 3 + + + NoControl + + + 113, 68 + + + 149, 14 + + + 17 + + + 認証済み + + + AuthUserLabel + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 4 + + + NoControl + + + 113, 54 + + + 112, 14 + + + 16 + + + Not Authenticated + + + AuthStateLabel + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 5 + + + True + + + NoControl + + + 23, 54 + + + 53, 12 + + + 15 + + + 認証状態 + + + Label4 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 6 + + + NoControl + + + 305, 126 + + + 75, 23 + + + 23 + + + 認証する + + + AuthorizeButton + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 7 + + + True + + + NoControl + + + 22, 112 + + + 57, 12 + + + 19 + + + ユーザー名 + + + Label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 8 + + + True + + + NoControl + + + 22, 133 + + + 52, 12 + + + 21 + + + パスワード + + + Label2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 9 + + + 113, 109 + + + 186, 19 + + + 20 + + + Username + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 10 + + + 113, 130 + + + 186, 19 + + + 22 + + + Password + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 11 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 0 + + + False + + + BasedPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 10 + + + 258, 21 + + + 65, 19 + + + 29 + + + TimelinePeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 0 + + + True + + + NoControl + + + 25, 24 + + + 130, 12 + + + 28 + + + タイムライン更新間隔(秒) + + + Label3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 1 + + + NoControl + + + 258, 167 + + + 75, 23 + + + 41 + + + 再計算 + + + ButtonApiCalc + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 2 + + + True + + + NoControl + + + 31, 207 + + + 285, 12 + + + 42 + + + 投稿時取得が有効のため、投稿のたびにAPIを消費します。 + + + LabelPostAndGet + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 3 + + + True + + + NoControl + + + 31, 175 + + + 23, 12 + + + 40 + + + 999 + + + MiddleRight + + + LabelApiUsing + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 4 + + + True + + + NoControl + + + 25, 138 + + + 102, 12 + + + 38 + + + Lists更新間隔(秒) + + + Label33 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 5 + + + 258, 135 + + + 65, 19 + + + 39 + + + ListsPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 6 + + + True + + + NoControl + + + 25, 114 + + + 137, 12 + + + 36 + + + Twitter検索更新間隔(秒) + + + Label7 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 7 + + + 258, 111 + + + 65, 19 + + + 37 + + + PubSearchPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 8 + + + True + + + NoControl + + + 25, 66 + + + 123, 12 + + + 32 + + + Mentions更新間隔(秒) + + + Label69 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 9 + + + 258, 63 + + + 65, 19 + + + 33 + + + ReplyPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 10 + + + True + + + NoControl + + + 35, 43 + + + 84, 16 + + + 30 + + + 投稿時取得 + + + CheckPostAndGet + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 11 + + + True + + + NoControl + + + 252, 43 + + + 91, 16 + + + 31 + + + 自動調整する + + + False + + + CheckPeriodAdjust + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 12 + + + True + + + NoControl + + + 25, 90 + + + 94, 12 + + + 34 + + + DM更新間隔(秒) + + + Label5 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 13 + + + 258, 87 + + + 65, 19 + + + 35 + + + DMPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 14 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 1 + + + False + + + GetPeriodPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 11 + + + True + + + 28, 192 + + + 117, 12 + + + 52 + + + PublicSearchの取得数 + + + Label30 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 0 + + + True + + + 28, 144 + + + 63, 12 + + + 51 + + + 初回の更新 + + + Label28 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 1 + + + True + + + 31, 58 + + + 87, 12 + + + 50 + + + Mentions取得数 + + + Label19 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 2 + + + 259, 159 + + + 58, 19 + + + 48 + + + FavoritesTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 3 + + + 259, 185 + + + 58, 19 + + + 49 + + + SearchTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 4 + + + True + + + NoControl + + + 28, 166 + + + 99, 12 + + + 47 + + + Favoritesの取得数 + + + Label66 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 5 + + + 259, 135 + + + 58, 19 + + + 46 + + + FirstTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 6 + + + 259, 112 + + + 59, 19 + + + 45 + + + GetMoreTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 7 + + + True + + + NoControl + + + 28, 118 + + + 79, 12 + + + 44 + + + 前データの更新 + + + Label53 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 8 + + + True + + + NoControl + + + 30, 89 + + + 247, 16 + + + 43 + + + 次の項目の更新時の取得数を個別に設定する + + + UseChangeGetCount + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 9 + + + 258, 51 + + + 58, 19 + + + 41 + + + TextCountApiReply + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 10 + + + True + + + NoControl + + + 30, 24 + + + 77, 12 + + + 39 + + + 標準取得件数 + + + Label67 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 11 + + + 259, 21 + + + 57, 19 + + + 40 + + + TextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 12 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 44 + + + False + + + GetCountPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 12 + + + SplitContainer1.Panel2 + + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1 + + + 1 + + + 701, 368 + + + 172 + + + 0 + + + SplitContainer1 + + + System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 2 + 17, 17 140, 17 + + NoControl + + + 613, 374 + + + 75, 23 + + + 4 + + + キャンセル + + + Cancel + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + + + NoControl + + + 532, 374 + + + 75, 23 + + + 3 + + + OK + + + Save + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + True + 82 + + 6, 12 + + + 701, 403 + + + CenterParent + + + 設定 + + + FontDialog1 + + + System.Windows.Forms.FontDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ColorDialog1 + + + System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + AppendSettingDialog + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file Modified: branches/SettingDialog/Tween/AppendSettingDialog.vb =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.vb 2010-12-18 14:29:36 UTC (rev 1217) +++ branches/SettingDialog/Tween/AppendSettingDialog.vb 2010-12-18 16:57:51 UTC (rev 1218) @@ -1,4 +1,4 @@ -?Imports System.ComponentModel +? Imports System.Threading Public Class AppendSettingDialog From svnnotify @ sourceforge.jp Sun Dec 19 10:40:35 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 19 Dec 2010 10:40:35 +0900 Subject: [Tween-svn] =?utf-8?q?=5B1219=5D__AppendSettingDialog=E3=82=92?= =?utf-8?b?5Y+C54Wn44GX44Gm44GE44Gq44GE6YOo5YiG44GM44GC44Gj44Gf44Gu44KS?= =?utf-8?b?5L+u5q2j44CC44G+44Gg5q6L44Gj44Gm44GE44KL5Y+v6IO95oCn44GC44KK?= Message-ID: <1292722835.301752.22275.nullmailer@users.sourceforge.jp> Revision: 1219 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1219 Author: f_swallow Date: 2010-12-19 10:40:35 +0900 (Sun, 19 Dec 2010) Log Message: ----------- AppendSettingDialogを参照していない部分があったのを修正。まだ残っている可能性あり Modified Paths: -------------- branches/SettingDialog/Tween/PictureService.vb branches/SettingDialog/Tween/Twitter.vb -------------- next part -------------- Modified: branches/SettingDialog/Tween/PictureService.vb =================================================================== --- branches/SettingDialog/Tween/PictureService.vb 2010-12-18 16:57:51 UTC (rev 1218) +++ branches/SettingDialog/Tween/PictureService.vb 2010-12-19 01:40:35 UTC (rev 1219) @@ -13,7 +13,7 @@ Return "Err:" + ex.Message End Try If Not file.Exists Then Return "Err:File isn't exists." - Dim st As Setting = Setting.Instance + Dim st As AppendSettingDialog = AppendSettingDialog.Instance Dim ret As String = "" Dim upResult As Boolean = False Select Case service Modified: branches/SettingDialog/Tween/Twitter.vb =================================================================== --- branches/SettingDialog/Tween/Twitter.vb 2010-12-18 16:57:51 UTC (rev 1218) +++ branches/SettingDialog/Tween/Twitter.vb 2010-12-19 01:40:35 UTC (rev 1219) @@ -1365,13 +1365,13 @@ Dim res As HttpStatusCode Dim content As String = "" - Dim count As Integer = Setting.Instance.CountApi - If gType = WORKERTYPE.Reply Then count = Setting.Instance.CountApiReply - If Setting.Instance.UseAdditionalCount Then - If more AndAlso Setting.Instance.MoreCountApi <> 0 Then - count = Setting.Instance.MoreCountApi - ElseIf startup AndAlso Setting.Instance.FirstCountApi <> 0 AndAlso gType = WORKERTYPE.Timeline Then - count = Setting.Instance.FirstCountApi + Dim count As Integer = AppendSettingDialog.Instance.CountApi + If gType = WORKERTYPE.Reply Then count = AppendSettingDialog.Instance.CountApiReply() + If AppendSettingDialog.Instance.UseAdditionalCount Then + If more AndAlso AppendSettingDialog.Instance.MoreCountApi <> 0 Then + count = AppendSettingDialog.Instance.MoreCountApi + ElseIf startup AndAlso AppendSettingDialog.Instance.FirstCountApi <> 0 AndAlso gType = WORKERTYPE.Timeline Then + count = AppendSettingDialog.Instance.FirstCountApi End If End If Try @@ -1592,12 +1592,12 @@ Dim res As HttpStatusCode Dim content As String = "" Dim page As Integer = 0 - Dim count As Integer = Setting.Instance.CountApi - If Setting.Instance.UseAdditionalCount Then - If more AndAlso Setting.Instance.MoreCountApi <> 0 Then - count = Setting.Instance.MoreCountApi - ElseIf startup AndAlso Setting.Instance.FirstCountApi <> 0 Then - count = Setting.Instance.FirstCountApi + Dim count As Integer = AppendSettingDialog.Instance.CountApi + If AppendSettingDialog.Instance.UseAdditionalCount Then + If more AndAlso AppendSettingDialog.Instance.MoreCountApi <> 0 Then + count = AppendSettingDialog.Instance.MoreCountApi + ElseIf startup AndAlso AppendSettingDialog.Instance.FirstCountApi <> 0 Then + count = AppendSettingDialog.Instance.FirstCountApi End If End If Try @@ -1823,9 +1823,9 @@ Dim page As Integer = 0 Dim sinceId As Long = 0 Dim count As Integer = 100 - If Setting.Instance.UseAdditionalCount AndAlso - Setting.Instance.SearchCountApi <> 0 Then - count = Setting.Instance.SearchCountApi + If AppendSettingDialog.Instance.UseAdditionalCount AndAlso + AppendSettingDialog.Instance.SearchCountApi <> 0 Then + count = AppendSettingDialog.Instance.SearchCountApi End If If more Then page = tab.GetSearchPage(count) @@ -2078,8 +2078,8 @@ Dim res As HttpStatusCode Dim content As String = "" - Dim count As Integer = Setting.Instance.CountApi - If Setting.Instance.UseAdditionalCount AndAlso + Dim count As Integer = AppendSettingDialog.Instance.CountApi + If ap.Instance.UseAdditionalCount AndAlso Setting.Instance.FavoritesCountApi <> 0 Then count = Setting.Instance.FavoritesCountApi End If From svnnotify @ sourceforge.jp Sun Dec 19 11:01:54 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 19 Dec 2010 11:01:54 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMjBdIFR3aXR0ZXIuIHZi44Gu5L+u5q2j44GM?= =?utf-8?b?44GG44G+44GP44GE44Gj44Gm44Gq44GL44Gj44Gf44Gu44Gn55u044GX44Gf?= Message-ID: <1292724114.698371.25188.nullmailer@users.sourceforge.jp> Revision: 1220 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1220 Author: f_swallow Date: 2010-12-19 11:01:54 +0900 (Sun, 19 Dec 2010) Log Message: ----------- Twitter.vbの修正がうまくいってなかったので直した Modified Paths: -------------- branches/SettingDialog/Tween/Twitter.vb -------------- next part -------------- Modified: branches/SettingDialog/Tween/Twitter.vb =================================================================== --- branches/SettingDialog/Tween/Twitter.vb 2010-12-19 01:40:35 UTC (rev 1219) +++ branches/SettingDialog/Tween/Twitter.vb 2010-12-19 02:01:54 UTC (rev 1220) @@ -2079,9 +2079,9 @@ Dim res As HttpStatusCode Dim content As String = "" Dim count As Integer = AppendSettingDialog.Instance.CountApi - If ap.Instance.UseAdditionalCount AndAlso - Setting.Instance.FavoritesCountApi <> 0 Then - count = Setting.Instance.FavoritesCountApi + If AppendSettingDialog.Instance.UseAdditionalCount AndAlso + AppendSettingDialog.Instance.FavoritesCountApi <> 0 Then + count = AppendSettingDialog.Instance.FavoritesCountApi End If Try res = twCon.Favorites(count, content) From svnnotify @ sourceforge.jp Sun Dec 19 11:48:24 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 19 Dec 2010 11:48:24 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMjFdICBIYW5kbGVz44Gu6YOo5YiG44GM5oqc?= =?utf-8?b?44GR44Gm44GE44KL44Go44GT44KN44GM44GC44Gj44Gf44Gu44KS5L+u5q2j?= Message-ID: <1292726904.778343.2809.nullmailer@users.sourceforge.jp> Revision: 1221 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1221 Author: f_swallow Date: 2010-12-19 11:48:24 +0900 (Sun, 19 Dec 2010) Log Message: ----------- Handlesの部分が抜けているところがあったのを修正 Modified Paths: -------------- branches/SettingDialog/Tween/AppendSettingDialog.vb -------------- next part -------------- Modified: branches/SettingDialog/Tween/AppendSettingDialog.vb =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.vb 2010-12-19 02:01:54 UTC (rev 1220) +++ branches/SettingDialog/Tween/AppendSettingDialog.vb 2010-12-19 02:48:24 UTC (rev 1221) @@ -355,7 +355,7 @@ End Try End Sub - Private Sub Setting_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) + Private Sub Setting_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing If tw IsNot Nothing AndAlso tw.Username = "" AndAlso e.CloseReason = CloseReason.None Then If MessageBox.Show(My.Resources.Setting_FormClosing1, "Confirm", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) = Windows.Forms.DialogResult.Cancel Then e.Cancel = True @@ -366,7 +366,7 @@ End If End Sub - Private Sub Setting_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load + Private Sub Setting_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load tw = DirectCast(Me.Owner, TweenMain).TwitterInstance Dim uname As String = tw.Username Dim pw As String = tw.Password @@ -621,7 +621,7 @@ FavoritesTextCountApi.Enabled = UseChangeGetCount.Checked End Sub - Private Sub UserstreamPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Private Sub UserstreamPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles UserstreamPeriod.Validating Dim prd As Integer Try prd = CType(UserstreamPeriod.Text, Integer) @@ -639,7 +639,7 @@ CalcApiUsing() End Sub - Private Sub TimelinePeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Private Sub TimelinePeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TimelinePeriod.Validating Dim prd As Integer Try prd = CType(TimelinePeriod.Text, Integer) @@ -657,7 +657,7 @@ CalcApiUsing() End Sub - Private Sub ReplyPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Private Sub ReplyPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ReplyPeriod.Validating Dim prd As Integer Try prd = CType(ReplyPeriod.Text, Integer) @@ -675,7 +675,7 @@ CalcApiUsing() End Sub - Private Sub DMPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Private Sub DMPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles DMPeriod.Validating Dim prd As Integer Try prd = CType(DMPeriod.Text, Integer) @@ -693,7 +693,7 @@ CalcApiUsing() End Sub - Private Sub PubSearchPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Private Sub PubSearchPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles PubSearchPeriod.Validating Dim prd As Integer Try prd = CType(PubSearchPeriod.Text, Integer) @@ -709,7 +709,7 @@ End If End Sub - Private Sub ListsPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Private Sub ListsPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ListsPeriod.Validating Dim prd As Integer Try prd = CType(ListsPeriod.Text, Integer) @@ -727,7 +727,7 @@ CalcApiUsing() End Sub - Private Sub UReadMng_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) + Private Sub UReadMng_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles UReadMng.CheckedChanged If UReadMng.Checked = True Then StartupReaded.Enabled = True Else @@ -1773,15 +1773,15 @@ Return True End Function - Private Sub CmbDateTimeFormat_TextUpdate(ByVal sender As System.Object, ByVal e As System.EventArgs) + Private Sub CmbDateTimeFormat_TextUpdate(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbDateTimeFormat.TextUpdate CreateDateTimeFormatSample() End Sub - Private Sub CmbDateTimeFormat_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) + Private Sub CmbDateTimeFormat_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbDateTimeFormat.SelectedIndexChanged CreateDateTimeFormatSample() End Sub - Private Sub CmbDateTimeFormat_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) + Private Sub CmbDateTimeFormat_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles CmbDateTimeFormat.Validating If Not CreateDateTimeFormatSample() Then MessageBox.Show(My.Resources.CmbDateTimeFormat_Validating) e.Cancel = True @@ -1804,7 +1804,7 @@ End If End Sub - Private Sub LabelDateTimeFormatApplied_VisibleChanged(ByVal sender As Object, ByVal e As System.EventArgs) + Private Sub LabelDateTimeFormatApplied_VisibleChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles LabelDateTimeFormatApplied.VisibleChanged CreateDateTimeFormatSample() End Sub From svnnotify @ sourceforge.jp Sun Dec 19 16:35:50 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 19 Dec 2010 16:35:50 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMjJdICDjgrPjg7Pjg4jjg63jg7zjg6vjga4=?= =?utf-8?b?5L2N572u44KS5bCR44GX6Kq/5pW0?= Message-ID: <1292744150.201671.14108.nullmailer@users.sourceforge.jp> Revision: 1222 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1222 Author: f_swallow Date: 2010-12-19 16:35:50 +0900 (Sun, 19 Dec 2010) Log Message: ----------- コントロールの位置を少し調整 Modified Paths: -------------- branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb branches/SettingDialog/Tween/AppendSettingDialog.resx -------------- next part -------------- Modified: branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb 2010-12-19 02:48:24 UTC (rev 1221) +++ branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb 2010-12-19 07:35:50 UTC (rev 1222) @@ -25,55 +25,15 @@ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AppendSettingDialog)) Me.SplitContainer1 = New System.Windows.Forms.SplitContainer() Me.TreeView1 = New System.Windows.Forms.TreeView() - Me.BasedPanel = New System.Windows.Forms.Panel() - Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() - Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() - Me.Label6 = New System.Windows.Forms.Label() - Me.AuthClearButton = New System.Windows.Forms.Button() - Me.AuthUserLabel = New System.Windows.Forms.Label() - Me.AuthStateLabel = New System.Windows.Forms.Label() - Me.Label4 = New System.Windows.Forms.Label() - Me.AuthorizeButton = New System.Windows.Forms.Button() - Me.Label1 = New System.Windows.Forms.Label() - Me.Label2 = New System.Windows.Forms.Label() - Me.Username = New System.Windows.Forms.TextBox() - Me.Password = New System.Windows.Forms.TextBox() - Me.GetPeriodPanel = New System.Windows.Forms.Panel() - Me.TimelinePeriod = New System.Windows.Forms.TextBox() - Me.Label3 = New System.Windows.Forms.Label() - Me.ButtonApiCalc = New System.Windows.Forms.Button() - Me.LabelPostAndGet = New System.Windows.Forms.Label() - Me.LabelApiUsing = New System.Windows.Forms.Label() - Me.Label33 = New System.Windows.Forms.Label() - Me.ListsPeriod = New System.Windows.Forms.TextBox() - Me.Label7 = New System.Windows.Forms.Label() - Me.PubSearchPeriod = New System.Windows.Forms.TextBox() - Me.Label69 = New System.Windows.Forms.Label() - Me.ReplyPeriod = New System.Windows.Forms.TextBox() - Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() - Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() - Me.Label5 = New System.Windows.Forms.Label() - Me.DMPeriod = New System.Windows.Forms.TextBox() - Me.GetCountPanel = New System.Windows.Forms.Panel() - Me.Label30 = New System.Windows.Forms.Label() - Me.Label28 = New System.Windows.Forms.Label() - Me.Label19 = New System.Windows.Forms.Label() - Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() - Me.SearchTextCountApi = New System.Windows.Forms.TextBox() - Me.Label66 = New System.Windows.Forms.Label() - Me.FirstTextCountApi = New System.Windows.Forms.TextBox() - Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() - Me.Label53 = New System.Windows.Forms.Label() - Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() - Me.TextCountApiReply = New System.Windows.Forms.TextBox() - Me.Label67 = New System.Windows.Forms.Label() - Me.TextCountApi = New System.Windows.Forms.TextBox() Me.StartupPanel = New System.Windows.Forms.Panel() Me.StartupReaded = New System.Windows.Forms.CheckBox() Me.CheckStartupFollowers = New System.Windows.Forms.CheckBox() Me.CheckStartupVersion = New System.Windows.Forms.CheckBox() Me.chkGetFav = New System.Windows.Forms.CheckBox() Me.UserStreamPanel = New System.Windows.Forms.Panel() + Me.UserstreamPeriod = New System.Windows.Forms.TextBox() + Me.StartupUserstreamCheck = New System.Windows.Forms.CheckBox() + Me.Label83 = New System.Windows.Forms.Label() Me.ActionPanel = New System.Windows.Forms.Panel() Me.GroupBox3 = New System.Windows.Forms.GroupBox() Me.HotkeyCheck = New System.Windows.Forms.CheckBox() @@ -219,30 +179,67 @@ Me.ProxyPanel = New System.Windows.Forms.Panel() Me.Label55 = New System.Windows.Forms.Label() Me.TextProxyPassword = New System.Windows.Forms.TextBox() + Me.RadioProxyNone = New System.Windows.Forms.RadioButton() Me.LabelProxyPassword = New System.Windows.Forms.Label() + Me.RadioProxyIE = New System.Windows.Forms.RadioButton() Me.TextProxyUser = New System.Windows.Forms.TextBox() + Me.RadioProxySpecified = New System.Windows.Forms.RadioButton() Me.LabelProxyUser = New System.Windows.Forms.Label() + Me.LabelProxyAddress = New System.Windows.Forms.Label() Me.TextProxyPort = New System.Windows.Forms.TextBox() + Me.TextProxyAddress = New System.Windows.Forms.TextBox() Me.LabelProxyPort = New System.Windows.Forms.Label() - Me.TextProxyAddress = New System.Windows.Forms.TextBox() - Me.LabelProxyAddress = New System.Windows.Forms.Label() - Me.RadioProxySpecified = New System.Windows.Forms.RadioButton() - Me.RadioProxyIE = New System.Windows.Forms.RadioButton() - Me.RadioProxyNone = New System.Windows.Forms.RadioButton() + Me.BasedPanel = New System.Windows.Forms.Panel() + Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() + Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() + Me.Label6 = New System.Windows.Forms.Label() + Me.AuthClearButton = New System.Windows.Forms.Button() + Me.AuthUserLabel = New System.Windows.Forms.Label() + Me.AuthStateLabel = New System.Windows.Forms.Label() + Me.Label4 = New System.Windows.Forms.Label() + Me.AuthorizeButton = New System.Windows.Forms.Button() + Me.Label1 = New System.Windows.Forms.Label() + Me.Label2 = New System.Windows.Forms.Label() + Me.Username = New System.Windows.Forms.TextBox() + Me.Password = New System.Windows.Forms.TextBox() + Me.GetPeriodPanel = New System.Windows.Forms.Panel() + Me.TimelinePeriod = New System.Windows.Forms.TextBox() + Me.Label3 = New System.Windows.Forms.Label() + Me.ButtonApiCalc = New System.Windows.Forms.Button() + Me.LabelPostAndGet = New System.Windows.Forms.Label() + Me.LabelApiUsing = New System.Windows.Forms.Label() + Me.Label33 = New System.Windows.Forms.Label() + Me.ListsPeriod = New System.Windows.Forms.TextBox() + Me.Label7 = New System.Windows.Forms.Label() + Me.PubSearchPeriod = New System.Windows.Forms.TextBox() + Me.Label69 = New System.Windows.Forms.Label() + Me.ReplyPeriod = New System.Windows.Forms.TextBox() + Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() + Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() + Me.Label5 = New System.Windows.Forms.Label() + Me.DMPeriod = New System.Windows.Forms.TextBox() + Me.GetCountPanel = New System.Windows.Forms.Panel() + Me.Label30 = New System.Windows.Forms.Label() + Me.Label28 = New System.Windows.Forms.Label() + Me.Label19 = New System.Windows.Forms.Label() + Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() + Me.SearchTextCountApi = New System.Windows.Forms.TextBox() + Me.Label66 = New System.Windows.Forms.Label() + Me.FirstTextCountApi = New System.Windows.Forms.TextBox() + Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() + Me.Label53 = New System.Windows.Forms.Label() + Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() + Me.TextCountApiReply = New System.Windows.Forms.TextBox() + Me.Label67 = New System.Windows.Forms.Label() + Me.TextCountApi = New System.Windows.Forms.TextBox() Me.FontDialog1 = New System.Windows.Forms.FontDialog() Me.ColorDialog1 = New System.Windows.Forms.ColorDialog() Me.Cancel = New System.Windows.Forms.Button() Me.Save = New System.Windows.Forms.Button() - Me.StartupUserstreamCheck = New System.Windows.Forms.CheckBox() - Me.Label83 = New System.Windows.Forms.Label() - Me.UserstreamPeriod = New System.Windows.Forms.TextBox() CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SplitContainer1.Panel1.SuspendLayout() Me.SplitContainer1.Panel2.SuspendLayout() Me.SplitContainer1.SuspendLayout() - Me.BasedPanel.SuspendLayout() - Me.GetPeriodPanel.SuspendLayout() - Me.GetCountPanel.SuspendLayout() Me.StartupPanel.SuspendLayout() Me.UserStreamPanel.SuspendLayout() Me.ActionPanel.SuspendLayout() @@ -256,6 +253,9 @@ Me.GroupBox5.SuspendLayout() Me.ConnectionPanel.SuspendLayout() Me.ProxyPanel.SuspendLayout() + Me.BasedPanel.SuspendLayout() + Me.GetPeriodPanel.SuspendLayout() + Me.GetCountPanel.SuspendLayout() Me.SuspendLayout() ' 'SplitContainer1 @@ -270,19 +270,19 @@ 'SplitContainer1.Panel2 ' Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Window + Me.SplitContainer1.Panel2.Controls.Add(Me.GetCountPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.BasedPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.ProxyPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.ConnectionPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.UserStreamPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.StartupPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.UserStreamPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.TweetPrvPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.ActionPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.PreviewPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.TweetActPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.PreviewPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.TweetPrvPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel2) - Me.SplitContainer1.Panel2.Controls.Add(Me.ConnectionPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.ProxyPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.BasedPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.GetCountPanel) ' 'TreeView1 ' @@ -291,277 +291,6 @@ Me.TreeView1.Name = "TreeView1" Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {CType(resources.GetObject("TreeView1.Nodes"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes1"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes2"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes3"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes4"), System.Windows.Forms.TreeNode)}) ' - 'BasedPanel - ' - Me.BasedPanel.BackColor = System.Drawing.SystemColors.Window - Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) - Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) - Me.BasedPanel.Controls.Add(Me.Label6) - Me.BasedPanel.Controls.Add(Me.AuthClearButton) - Me.BasedPanel.Controls.Add(Me.AuthUserLabel) - Me.BasedPanel.Controls.Add(Me.AuthStateLabel) - Me.BasedPanel.Controls.Add(Me.Label4) - Me.BasedPanel.Controls.Add(Me.AuthorizeButton) - Me.BasedPanel.Controls.Add(Me.Label1) - Me.BasedPanel.Controls.Add(Me.Label2) - Me.BasedPanel.Controls.Add(Me.Username) - Me.BasedPanel.Controls.Add(Me.Password) - resources.ApplyResources(Me.BasedPanel, "BasedPanel") - Me.BasedPanel.Name = "BasedPanel" - ' - 'AuthBasicRadio - ' - resources.ApplyResources(Me.AuthBasicRadio, "AuthBasicRadio") - Me.AuthBasicRadio.Name = "AuthBasicRadio" - Me.AuthBasicRadio.UseVisualStyleBackColor = True - ' - 'AuthOAuthRadio - ' - resources.ApplyResources(Me.AuthOAuthRadio, "AuthOAuthRadio") - Me.AuthOAuthRadio.Checked = True - Me.AuthOAuthRadio.Name = "AuthOAuthRadio" - Me.AuthOAuthRadio.TabStop = True - Me.AuthOAuthRadio.UseVisualStyleBackColor = True - ' - 'Label6 - ' - resources.ApplyResources(Me.Label6, "Label6") - Me.Label6.Name = "Label6" - ' - 'AuthClearButton - ' - resources.ApplyResources(Me.AuthClearButton, "AuthClearButton") - Me.AuthClearButton.Name = "AuthClearButton" - Me.AuthClearButton.UseVisualStyleBackColor = True - ' - 'AuthUserLabel - ' - Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") - Me.AuthUserLabel.Name = "AuthUserLabel" - ' - 'AuthStateLabel - ' - Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") - Me.AuthStateLabel.Name = "AuthStateLabel" - ' - 'Label4 - ' - resources.ApplyResources(Me.Label4, "Label4") - Me.Label4.Name = "Label4" - ' - 'AuthorizeButton - ' - resources.ApplyResources(Me.AuthorizeButton, "AuthorizeButton") - Me.AuthorizeButton.Name = "AuthorizeButton" - Me.AuthorizeButton.UseVisualStyleBackColor = True - ' - 'Label1 - ' - resources.ApplyResources(Me.Label1, "Label1") - Me.Label1.Name = "Label1" - ' - 'Label2 - ' - resources.ApplyResources(Me.Label2, "Label2") - Me.Label2.Name = "Label2" - ' - 'Username - ' - resources.ApplyResources(Me.Username, "Username") - Me.Username.Name = "Username" - ' - 'Password - ' - resources.ApplyResources(Me.Password, "Password") - Me.Password.Name = "Password" - Me.Password.UseSystemPasswordChar = True - ' - 'GetPeriodPanel - ' - Me.GetPeriodPanel.BackColor = System.Drawing.SystemColors.Window - Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) - Me.GetPeriodPanel.Controls.Add(Me.Label3) - Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) - Me.GetPeriodPanel.Controls.Add(Me.LabelPostAndGet) - Me.GetPeriodPanel.Controls.Add(Me.LabelApiUsing) - Me.GetPeriodPanel.Controls.Add(Me.Label33) - Me.GetPeriodPanel.Controls.Add(Me.ListsPeriod) - Me.GetPeriodPanel.Controls.Add(Me.Label7) - Me.GetPeriodPanel.Controls.Add(Me.PubSearchPeriod) - Me.GetPeriodPanel.Controls.Add(Me.Label69) - Me.GetPeriodPanel.Controls.Add(Me.ReplyPeriod) - Me.GetPeriodPanel.Controls.Add(Me.CheckPostAndGet) - Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) - Me.GetPeriodPanel.Controls.Add(Me.Label5) - Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) - resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") - Me.GetPeriodPanel.Name = "GetPeriodPanel" - ' - 'TimelinePeriod - ' - resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") - Me.TimelinePeriod.Name = "TimelinePeriod" - ' - 'Label3 - ' - resources.ApplyResources(Me.Label3, "Label3") - Me.Label3.Name = "Label3" - ' - 'ButtonApiCalc - ' - resources.ApplyResources(Me.ButtonApiCalc, "ButtonApiCalc") - Me.ButtonApiCalc.Name = "ButtonApiCalc" - Me.ButtonApiCalc.UseVisualStyleBackColor = True - ' - 'LabelPostAndGet - ' - resources.ApplyResources(Me.LabelPostAndGet, "LabelPostAndGet") - Me.LabelPostAndGet.Name = "LabelPostAndGet" - ' - 'LabelApiUsing - ' - resources.ApplyResources(Me.LabelApiUsing, "LabelApiUsing") - Me.LabelApiUsing.Name = "LabelApiUsing" - ' - 'Label33 - ' - resources.ApplyResources(Me.Label33, "Label33") - Me.Label33.Name = "Label33" - ' - 'ListsPeriod - ' - resources.ApplyResources(Me.ListsPeriod, "ListsPeriod") - Me.ListsPeriod.Name = "ListsPeriod" - ' - 'Label7 - ' - resources.ApplyResources(Me.Label7, "Label7") - Me.Label7.Name = "Label7" - ' - 'PubSearchPeriod - ' - resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") - Me.PubSearchPeriod.Name = "PubSearchPeriod" - ' - 'Label69 - ' - resources.ApplyResources(Me.Label69, "Label69") - Me.Label69.Name = "Label69" - ' - 'ReplyPeriod - ' - resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") - Me.ReplyPeriod.Name = "ReplyPeriod" - ' - 'CheckPostAndGet - ' - resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") - Me.CheckPostAndGet.Name = "CheckPostAndGet" - Me.CheckPostAndGet.UseVisualStyleBackColor = True - ' - 'CheckPeriodAdjust - ' - resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") - Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" - Me.CheckPeriodAdjust.UseVisualStyleBackColor = True - ' - 'Label5 - ' - resources.ApplyResources(Me.Label5, "Label5") - Me.Label5.Name = "Label5" - ' - 'DMPeriod - ' - resources.ApplyResources(Me.DMPeriod, "DMPeriod") - Me.DMPeriod.Name = "DMPeriod" - ' - 'GetCountPanel - ' - Me.GetCountPanel.BackColor = System.Drawing.SystemColors.Window - Me.GetCountPanel.Controls.Add(Me.Label30) - Me.GetCountPanel.Controls.Add(Me.Label28) - Me.GetCountPanel.Controls.Add(Me.Label19) - Me.GetCountPanel.Controls.Add(Me.FavoritesTextCountApi) - Me.GetCountPanel.Controls.Add(Me.SearchTextCountApi) - Me.GetCountPanel.Controls.Add(Me.Label66) - Me.GetCountPanel.Controls.Add(Me.FirstTextCountApi) - Me.GetCountPanel.Controls.Add(Me.GetMoreTextCountApi) - Me.GetCountPanel.Controls.Add(Me.Label53) - Me.GetCountPanel.Controls.Add(Me.UseChangeGetCount) - Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) - Me.GetCountPanel.Controls.Add(Me.Label67) - Me.GetCountPanel.Controls.Add(Me.TextCountApi) - resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") - Me.GetCountPanel.Name = "GetCountPanel" - ' - 'Label30 - ' - resources.ApplyResources(Me.Label30, "Label30") - Me.Label30.Name = "Label30" - ' - 'Label28 - ' - resources.ApplyResources(Me.Label28, "Label28") - Me.Label28.Name = "Label28" - ' - 'Label19 - ' - resources.ApplyResources(Me.Label19, "Label19") - Me.Label19.Name = "Label19" - ' - 'FavoritesTextCountApi - ' - resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") - Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" - ' - 'SearchTextCountApi - ' - resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") - Me.SearchTextCountApi.Name = "SearchTextCountApi" - ' - 'Label66 - ' - resources.ApplyResources(Me.Label66, "Label66") - Me.Label66.Name = "Label66" - ' - 'FirstTextCountApi - ' - resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") - Me.FirstTextCountApi.Name = "FirstTextCountApi" - ' - 'GetMoreTextCountApi - ' - resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") - Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" - ' - 'Label53 - ' - resources.ApplyResources(Me.Label53, "Label53") - Me.Label53.Name = "Label53" - ' - 'UseChangeGetCount - ' - resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") - Me.UseChangeGetCount.Name = "UseChangeGetCount" - Me.UseChangeGetCount.UseVisualStyleBackColor = True - ' - 'TextCountApiReply - ' - resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") - Me.TextCountApiReply.Name = "TextCountApiReply" - ' - 'Label67 - ' - resources.ApplyResources(Me.Label67, "Label67") - Me.Label67.Name = "Label67" - ' - 'TextCountApi - ' - resources.ApplyResources(Me.TextCountApi, "TextCountApi") - Me.TextCountApi.Name = "TextCountApi" - ' 'StartupPanel ' Me.StartupPanel.BackColor = System.Drawing.SystemColors.Window @@ -604,6 +333,22 @@ resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") Me.UserStreamPanel.Name = "UserStreamPanel" ' + 'UserstreamPeriod + ' + resources.ApplyResources(Me.UserstreamPeriod, "UserstreamPeriod") + Me.UserstreamPeriod.Name = "UserstreamPeriod" + ' + 'StartupUserstreamCheck + ' + resources.ApplyResources(Me.StartupUserstreamCheck, "StartupUserstreamCheck") + Me.StartupUserstreamCheck.Name = "StartupUserstreamCheck" + Me.StartupUserstreamCheck.UseVisualStyleBackColor = True + ' + 'Label83 + ' + resources.ApplyResources(Me.Label83, "Label83") + Me.Label83.Name = "Label83" + ' 'ActionPanel ' Me.ActionPanel.BackColor = System.Drawing.SystemColors.Window @@ -1592,61 +1337,332 @@ Me.TextProxyPassword.Name = "TextProxyPassword" Me.TextProxyPassword.UseSystemPasswordChar = True ' + 'RadioProxyNone + ' + resources.ApplyResources(Me.RadioProxyNone, "RadioProxyNone") + Me.RadioProxyNone.Name = "RadioProxyNone" + Me.RadioProxyNone.UseVisualStyleBackColor = True + ' 'LabelProxyPassword ' resources.ApplyResources(Me.LabelProxyPassword, "LabelProxyPassword") Me.LabelProxyPassword.Name = "LabelProxyPassword" ' + 'RadioProxyIE + ' + resources.ApplyResources(Me.RadioProxyIE, "RadioProxyIE") + Me.RadioProxyIE.Checked = True + Me.RadioProxyIE.Name = "RadioProxyIE" + Me.RadioProxyIE.TabStop = True + Me.RadioProxyIE.UseVisualStyleBackColor = True + ' 'TextProxyUser ' resources.ApplyResources(Me.TextProxyUser, "TextProxyUser") Me.TextProxyUser.Name = "TextProxyUser" ' + 'RadioProxySpecified + ' + resources.ApplyResources(Me.RadioProxySpecified, "RadioProxySpecified") + Me.RadioProxySpecified.Name = "RadioProxySpecified" + Me.RadioProxySpecified.UseVisualStyleBackColor = True + ' 'LabelProxyUser ' resources.ApplyResources(Me.LabelProxyUser, "LabelProxyUser") Me.LabelProxyUser.Name = "LabelProxyUser" ' + 'LabelProxyAddress + ' + resources.ApplyResources(Me.LabelProxyAddress, "LabelProxyAddress") + Me.LabelProxyAddress.Name = "LabelProxyAddress" + ' 'TextProxyPort ' resources.ApplyResources(Me.TextProxyPort, "TextProxyPort") Me.TextProxyPort.Name = "TextProxyPort" ' + 'TextProxyAddress + ' + resources.ApplyResources(Me.TextProxyAddress, "TextProxyAddress") + Me.TextProxyAddress.Name = "TextProxyAddress" + ' 'LabelProxyPort ' resources.ApplyResources(Me.LabelProxyPort, "LabelProxyPort") Me.LabelProxyPort.Name = "LabelProxyPort" ' - 'TextProxyAddress + 'BasedPanel ' - resources.ApplyResources(Me.TextProxyAddress, "TextProxyAddress") - Me.TextProxyAddress.Name = "TextProxyAddress" + Me.BasedPanel.BackColor = System.Drawing.SystemColors.Window + Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) + Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) + Me.BasedPanel.Controls.Add(Me.Label6) + Me.BasedPanel.Controls.Add(Me.AuthClearButton) + Me.BasedPanel.Controls.Add(Me.AuthUserLabel) + Me.BasedPanel.Controls.Add(Me.AuthStateLabel) + Me.BasedPanel.Controls.Add(Me.Label4) + Me.BasedPanel.Controls.Add(Me.AuthorizeButton) + Me.BasedPanel.Controls.Add(Me.Label1) + Me.BasedPanel.Controls.Add(Me.Label2) + Me.BasedPanel.Controls.Add(Me.Username) + Me.BasedPanel.Controls.Add(Me.Password) + resources.ApplyResources(Me.BasedPanel, "BasedPanel") + Me.BasedPanel.Name = "BasedPanel" ' - 'LabelProxyAddress + 'AuthBasicRadio ' - resources.ApplyResources(Me.LabelProxyAddress, "LabelProxyAddress") - Me.LabelProxyAddress.Name = "LabelProxyAddress" + resources.ApplyResources(Me.AuthBasicRadio, "AuthBasicRadio") + Me.AuthBasicRadio.Name = "AuthBasicRadio" + Me.AuthBasicRadio.UseVisualStyleBackColor = True ' - 'RadioProxySpecified + 'AuthOAuthRadio ' - resources.ApplyResources(Me.RadioProxySpecified, "RadioProxySpecified") - Me.RadioProxySpecified.Name = "RadioProxySpecified" - Me.RadioProxySpecified.UseVisualStyleBackColor = True + resources.ApplyResources(Me.AuthOAuthRadio, "AuthOAuthRadio") + Me.AuthOAuthRadio.Checked = True + Me.AuthOAuthRadio.Name = "AuthOAuthRadio" + Me.AuthOAuthRadio.TabStop = True + Me.AuthOAuthRadio.UseVisualStyleBackColor = True ' - 'RadioProxyIE + 'Label6 ' - resources.ApplyResources(Me.RadioProxyIE, "RadioProxyIE") - Me.RadioProxyIE.Checked = True - Me.RadioProxyIE.Name = "RadioProxyIE" - Me.RadioProxyIE.TabStop = True - Me.RadioProxyIE.UseVisualStyleBackColor = True + resources.ApplyResources(Me.Label6, "Label6") + Me.Label6.Name = "Label6" ' - 'RadioProxyNone + 'AuthClearButton ' - resources.ApplyResources(Me.RadioProxyNone, "RadioProxyNone") - Me.RadioProxyNone.Name = "RadioProxyNone" - Me.RadioProxyNone.UseVisualStyleBackColor = True + resources.ApplyResources(Me.AuthClearButton, "AuthClearButton") + Me.AuthClearButton.Name = "AuthClearButton" + Me.AuthClearButton.UseVisualStyleBackColor = True ' + 'AuthUserLabel + ' + Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") + Me.AuthUserLabel.Name = "AuthUserLabel" + ' + 'AuthStateLabel + ' + Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") + Me.AuthStateLabel.Name = "AuthStateLabel" + ' + 'Label4 + ' + resources.ApplyResources(Me.Label4, "Label4") + Me.Label4.Name = "Label4" + ' + 'AuthorizeButton + ' + resources.ApplyResources(Me.AuthorizeButton, "AuthorizeButton") + Me.AuthorizeButton.Name = "AuthorizeButton" + Me.AuthorizeButton.UseVisualStyleBackColor = True + ' + 'Label1 + ' + resources.ApplyResources(Me.Label1, "Label1") + Me.Label1.Name = "Label1" + ' + 'Label2 + ' + resources.ApplyResources(Me.Label2, "Label2") + Me.Label2.Name = "Label2" + ' + 'Username + ' + resources.ApplyResources(Me.Username, "Username") + Me.Username.Name = "Username" + ' + 'Password + ' + resources.ApplyResources(Me.Password, "Password") + Me.Password.Name = "Password" + Me.Password.UseSystemPasswordChar = True + ' + 'GetPeriodPanel + ' + Me.GetPeriodPanel.BackColor = System.Drawing.SystemColors.Window + Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label3) + Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) + Me.GetPeriodPanel.Controls.Add(Me.LabelPostAndGet) + Me.GetPeriodPanel.Controls.Add(Me.LabelApiUsing) + Me.GetPeriodPanel.Controls.Add(Me.Label33) + Me.GetPeriodPanel.Controls.Add(Me.ListsPeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label7) + Me.GetPeriodPanel.Controls.Add(Me.PubSearchPeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label69) + Me.GetPeriodPanel.Controls.Add(Me.ReplyPeriod) + Me.GetPeriodPanel.Controls.Add(Me.CheckPostAndGet) + Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) + Me.GetPeriodPanel.Controls.Add(Me.Label5) + Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) + resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") + Me.GetPeriodPanel.Name = "GetPeriodPanel" + ' + 'TimelinePeriod + ' + resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") + Me.TimelinePeriod.Name = "TimelinePeriod" + ' + 'Label3 + ' + resources.ApplyResources(Me.Label3, "Label3") + Me.Label3.Name = "Label3" + ' + 'ButtonApiCalc + ' + resources.ApplyResources(Me.ButtonApiCalc, "ButtonApiCalc") + Me.ButtonApiCalc.Name = "ButtonApiCalc" + Me.ButtonApiCalc.UseVisualStyleBackColor = True + ' + 'LabelPostAndGet + ' + resources.ApplyResources(Me.LabelPostAndGet, "LabelPostAndGet") + Me.LabelPostAndGet.Name = "LabelPostAndGet" + ' + 'LabelApiUsing + ' + resources.ApplyResources(Me.LabelApiUsing, "LabelApiUsing") + Me.LabelApiUsing.Name = "LabelApiUsing" + ' + 'Label33 + ' + resources.ApplyResources(Me.Label33, "Label33") + Me.Label33.Name = "Label33" + ' + 'ListsPeriod + ' + resources.ApplyResources(Me.ListsPeriod, "ListsPeriod") + Me.ListsPeriod.Name = "ListsPeriod" + ' + 'Label7 + ' + resources.ApplyResources(Me.Label7, "Label7") + Me.Label7.Name = "Label7" + ' + 'PubSearchPeriod + ' + resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") + Me.PubSearchPeriod.Name = "PubSearchPeriod" + ' + 'Label69 + ' + resources.ApplyResources(Me.Label69, "Label69") + Me.Label69.Name = "Label69" + ' + 'ReplyPeriod + ' + resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") + Me.ReplyPeriod.Name = "ReplyPeriod" + ' + 'CheckPostAndGet + ' + resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") + Me.CheckPostAndGet.Name = "CheckPostAndGet" + Me.CheckPostAndGet.UseVisualStyleBackColor = True + ' + 'CheckPeriodAdjust + ' + resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") + Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" + Me.CheckPeriodAdjust.UseVisualStyleBackColor = True + ' + 'Label5 + ' + resources.ApplyResources(Me.Label5, "Label5") + Me.Label5.Name = "Label5" + ' + 'DMPeriod + ' + resources.ApplyResources(Me.DMPeriod, "DMPeriod") + Me.DMPeriod.Name = "DMPeriod" + ' + 'GetCountPanel + ' + Me.GetCountPanel.BackColor = System.Drawing.SystemColors.Window + Me.GetCountPanel.Controls.Add(Me.Label30) + Me.GetCountPanel.Controls.Add(Me.Label28) + Me.GetCountPanel.Controls.Add(Me.Label19) + Me.GetCountPanel.Controls.Add(Me.FavoritesTextCountApi) + Me.GetCountPanel.Controls.Add(Me.SearchTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label66) + Me.GetCountPanel.Controls.Add(Me.FirstTextCountApi) + Me.GetCountPanel.Controls.Add(Me.GetMoreTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label53) + Me.GetCountPanel.Controls.Add(Me.UseChangeGetCount) + Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) + Me.GetCountPanel.Controls.Add(Me.Label67) + Me.GetCountPanel.Controls.Add(Me.TextCountApi) + resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") + Me.GetCountPanel.Name = "GetCountPanel" + ' + 'Label30 + ' + resources.ApplyResources(Me.Label30, "Label30") + Me.Label30.Name = "Label30" + ' + 'Label28 + ' + resources.ApplyResources(Me.Label28, "Label28") + Me.Label28.Name = "Label28" + ' + 'Label19 + ' + resources.ApplyResources(Me.Label19, "Label19") + Me.Label19.Name = "Label19" + ' + 'FavoritesTextCountApi + ' + resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") + Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" + ' + 'SearchTextCountApi + ' + resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") + Me.SearchTextCountApi.Name = "SearchTextCountApi" + ' + 'Label66 + ' + resources.ApplyResources(Me.Label66, "Label66") + Me.Label66.Name = "Label66" + ' + 'FirstTextCountApi + ' + resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") + Me.FirstTextCountApi.Name = "FirstTextCountApi" + ' + 'GetMoreTextCountApi + ' + resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") + Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" + ' + 'Label53 + ' + resources.ApplyResources(Me.Label53, "Label53") + Me.Label53.Name = "Label53" + ' + 'UseChangeGetCount + ' + resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") + Me.UseChangeGetCount.Name = "UseChangeGetCount" + Me.UseChangeGetCount.UseVisualStyleBackColor = True + ' + 'TextCountApiReply + ' + resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") + Me.TextCountApiReply.Name = "TextCountApiReply" + ' + 'Label67 + ' + resources.ApplyResources(Me.Label67, "Label67") + Me.Label67.Name = "Label67" + ' + 'TextCountApi + ' + resources.ApplyResources(Me.TextCountApi, "TextCountApi") + Me.TextCountApi.Name = "TextCountApi" + ' 'Cancel ' Me.Cancel.CausesValidation = False @@ -1662,22 +1678,6 @@ Me.Save.Name = "Save" Me.Save.UseVisualStyleBackColor = True ' - 'StartupUserstreamCheck - ' - resources.ApplyResources(Me.StartupUserstreamCheck, "StartupUserstreamCheck") - Me.StartupUserstreamCheck.Name = "StartupUserstreamCheck" - Me.StartupUserstreamCheck.UseVisualStyleBackColor = True - ' - 'Label83 - ' - resources.ApplyResources(Me.Label83, "Label83") - Me.Label83.Name = "Label83" - ' - 'UserstreamPeriod - ' - resources.ApplyResources(Me.UserstreamPeriod, "UserstreamPeriod") - Me.UserstreamPeriod.Name = "UserstreamPeriod" - ' 'AppendSettingDialog ' Me.AcceptButton = Me.Save @@ -1698,12 +1698,6 @@ Me.SplitContainer1.Panel2.ResumeLayout(False) CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit() Me.SplitContainer1.ResumeLayout(False) - Me.BasedPanel.ResumeLayout(False) - Me.BasedPanel.PerformLayout() - Me.GetPeriodPanel.ResumeLayout(False) - Me.GetPeriodPanel.PerformLayout() - Me.GetCountPanel.ResumeLayout(False) - Me.GetCountPanel.PerformLayout() Me.StartupPanel.ResumeLayout(False) Me.StartupPanel.PerformLayout() Me.UserStreamPanel.ResumeLayout(False) @@ -1728,6 +1722,12 @@ Me.ConnectionPanel.PerformLayout() Me.ProxyPanel.ResumeLayout(False) Me.ProxyPanel.PerformLayout() + Me.BasedPanel.ResumeLayout(False) + Me.BasedPanel.PerformLayout() + Me.GetPeriodPanel.ResumeLayout(False) + Me.GetPeriodPanel.PerformLayout() + Me.GetCountPanel.ResumeLayout(False) + Me.GetCountPanel.PerformLayout() Me.ResumeLayout(False) End Sub Modified: branches/SettingDialog/Tween/AppendSettingDialog.resx =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.resx 2010-12-19 02:48:24 UTC (rev 1221) +++ branches/SettingDialog/Tween/AppendSettingDialog.resx 2010-12-19 07:35:50 UTC (rev 1222) @@ -244,6 +244,2076 @@ 0 + + True + + + 22, 186 + + + 117, 12 + + + 52 + + + PublicSearchの取得数 + + + Label30 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 0 + + + True + + + 22, 136 + + + 63, 12 + + + 51 + + + 初回の更新 + + + Label28 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 1 + + + True + + + 22, 54 + + + 87, 12 + + + 50 + + + Mentions取得数 + + + Label19 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 2 + + + 259, 159 + + + 58, 19 + + + 48 + + + FavoritesTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 3 + + + 259, 185 + + + 58, 19 + + + 49 + + + SearchTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 4 + + + True + + + NoControl + + + 22, 160 + + + 99, 12 + + + 47 + + + Favoritesの取得数 + + + Label66 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 5 + + + 259, 135 + + + 58, 19 + + + 46 + + + FirstTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 6 + + + 259, 112 + + + 58, 19 + + + 45 + + + GetMoreTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 7 + + + True + + + NoControl + + + 22, 112 + + + 79, 12 + + + 44 + + + 前データの更新 + + + Label53 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 8 + + + True + + + NoControl + + + 22, 86 + + + 247, 16 + + + 43 + + + 次の項目の更新時の取得数を個別に設定する + + + UseChangeGetCount + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 9 + + + 259, 51 + + + 58, 19 + + + 41 + + + TextCountApiReply + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 10 + + + True + + + NoControl + + + 22, 24 + + + 77, 12 + + + 39 + + + 標準取得件数 + + + Label67 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 11 + + + 259, 21 + + + 58, 19 + + + 40 + + + TextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 12 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 44 + + + False + + + GetCountPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 0 + + + 258, 21 + + + 65, 19 + + + 29 + + + TimelinePeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 0 + + + True + + + NoControl + + + 22, 24 + + + 130, 12 + + + 28 + + + タイムライン更新間隔(秒) + + + Label3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 1 + + + NoControl + + + 257, 164 + + + 75, 23 + + + 41 + + + 再計算 + + + ButtonApiCalc + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 2 + + + True + + + NoControl + + + 29, 202 + + + 285, 12 + + + 42 + + + 投稿時取得が有効のため、投稿のたびにAPIを消費します。 + + + LabelPostAndGet + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 3 + + + True + + + NoControl + + + 29, 174 + + + 23, 12 + + + 40 + + + 999 + + + MiddleRight + + + LabelApiUsing + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 4 + + + True + + + NoControl + + + 22, 138 + + + 102, 12 + + + 38 + + + Lists更新間隔(秒) + + + Label33 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 5 + + + 258, 135 + + + 65, 19 + + + 39 + + + ListsPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 6 + + + True + + + NoControl + + + 22, 114 + + + 137, 12 + + + 36 + + + Twitter検索更新間隔(秒) + + + Label7 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 7 + + + 258, 111 + + + 65, 19 + + + 37 + + + PubSearchPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 8 + + + True + + + NoControl + + + 22, 66 + + + 123, 12 + + + 32 + + + Mentions更新間隔(秒) + + + Label69 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 9 + + + 258, 63 + + + 65, 19 + + + 33 + + + ReplyPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 10 + + + True + + + NoControl + + + 33, 43 + + + 84, 16 + + + 30 + + + 投稿時取得 + + + CheckPostAndGet + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 11 + + + True + + + NoControl + + + 251, 43 + + + 91, 16 + + + 31 + + + 自動調整する + + + False + + + CheckPeriodAdjust + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 12 + + + True + + + NoControl + + + 22, 90 + + + 94, 12 + + + 34 + + + DM更新間隔(秒) + + + Label5 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 13 + + + 258, 87 + + + 65, 19 + + + 35 + + + DMPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 14 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 1 + + + False + + + GetPeriodPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 1 + + + True + + + False + + + NoControl + + + 227, 20 + + + 57, 16 + + + 14 + + + BASIC + + + AuthBasicRadio + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 0 + + + True + + + NoControl + + + 113, 20 + + + 93, 16 + + + 13 + + + OAuth(xAuth) + + + AuthOAuthRadio + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 1 + + + True + + + NoControl + + + 22, 22 + + + 53, 12 + + + 12 + + + 認証方法 + + + Label6 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 2 + + + NoControl + + + 305, 64 + + + 75, 23 + + + 18 + + + クリア + + + AuthClearButton + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 3 + + + NoControl + + + 113, 68 + + + 149, 14 + + + 17 + + + 認証済み + + + AuthUserLabel + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 4 + + + NoControl + + + 113, 54 + + + 112, 14 + + + 16 + + + Not Authenticated + + + AuthStateLabel + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 5 + + + True + + + NoControl + + + 22, 54 + + + 53, 12 + + + 15 + + + 認証状態 + + + Label4 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 6 + + + NoControl + + + 305, 126 + + + 75, 23 + + + 23 + + + 認証する + + + AuthorizeButton + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 7 + + + True + + + NoControl + + + 22, 112 + + + 57, 12 + + + 19 + + + ユーザー名 + + + Label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 8 + + + True + + + NoControl + + + 22, 133 + + + 52, 12 + + + 21 + + + パスワード + + + Label2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 9 + + + 113, 109 + + + 186, 19 + + + 20 + + + Username + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 10 + + + 113, 130 + + + 186, 19 + + + 22 + + + Password + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 11 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 0 + + + False + + + BasedPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 2 + + + True + + + NoControl + + + 41, 134 + + + 314, 12 + + + 11 + + + ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 + + + Label55 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 0 + + + 286, 107 + + + 96, 19 + + + 10 + + + TextProxyPassword + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 1 + + + True + + + NoControl + + + 22, 19 + + + 76, 16 + + + 0 + + + 使用しない + + + RadioProxyNone + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 2 + + + True + + + NoControl + + + 217, 110 + + + 69, 12 + + + 9 + + + パスワード(&W) + + + LabelProxyPassword + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 3 + + + True + + + NoControl + + + 22, 41 + + + 190, 16 + + + 1 + + + InternetExplorerの設定を使用する + + + RadioProxyIE + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 4 + + + 143, 107 + + + 68, 19 + + + 8 + + + TextProxyUser + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 5 + + + True + + + NoControl + + + 22, 62 + + + 66, 16 + + + 2 + + + 指定する + + + RadioProxySpecified + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 6 + + + True + + + NoControl + + + 74, 110 + + + 63, 12 + + + 7 + + + ユーザ名(&U) + + + LabelProxyUser + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 7 + + + True + + + NoControl + + + 50, 85 + + + 58, 12 + + + 3 + + + プロキシ(&X) + + + LabelProxyAddress + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 8 + + + 309, 82 + + + 73, 19 + + + 6 + + + TextProxyPort + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 9 + + + 114, 82 + + + 135, 19 + + + 4 + + + TextProxyAddress + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 10 + + + True + + + NoControl + + + 255, 85 + + + 48, 12 + + + 5 + + + ポート(&P) + + + LabelProxyPort + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 11 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 54 + + + False + + + ProxyPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 3 + + + True + + + NoControl + + + 22, 293 + + + 237, 16 + + + 24 + + + ニコニコ動画のURLをnico.msで短縮して送信 + + + CheckNicoms + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 0 + + + True + + + NoControl + + + 36, 245 + + + 99, 12 + + + 22 + + + アウトプット先のURL + + + Label60 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 1 + + + twitter.com + + + twitter.com/username + + + 205, 242 + + + 182, 20 + + + 23 + + + ComboBoxOutputzUrlmode + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 2 + + + True + + + NoControl + + + 36, 199 + + + 63, 12 + + + 20 + + + 復活の呪文 + + + Label59 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 3 + + + 205, 196 + + + 182, 19 + + + 21 + + + TextBoxOutputzKey + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 4 + + + True + + + NoControl + + + 22, 161 + + + 115, 16 + + + 19 + + + Outputzに対応する + + + CheckOutputz + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 5 + + + True + + + NoControl + + + 22, 326 + + + 178, 16 + + + 18 + + + BASIC認証への変更を許可する + + + CheckEnableBasicAuth + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 6 + + + 262, 125 + + + 125, 19 + + + 17 + + + search.twitter.com + + + TwitterSearchAPIText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 7 + + + True + + + NoControl + + + 22, 128 + + + 228, 12 + + + 16 + + + Twitter SearchAPI URL (search.twitter.com) + + + Label31 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 8 + + + 262, 100 + + + 125, 19 + + + 15 + + + api.twitter.com + + + TwitterAPIText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 9 + + + True + + + NoControl + + + 22, 103 + + + 174, 12 + + + 14 + + + Twitter API URL (api.twitter.com) + + + Label8 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 10 + + + True + + + NoControl + + + 22, 78 + + + 145, 16 + + + 13 + + + 通信にHTTPSを使用する + + + CheckUseSsl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 11 + + + True + + + NoControl + + + 22, 51 + + + 349, 12 + + + 12 + + + ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 + + + Label64 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 12 + + + 262, 18 + + + 125, 19 + + + 11 + + + ConnectionTimeOut + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 13 + + + True + + + NoControl + + + 22, 20 + + + 131, 12 + + + 10 + + + タイムアウトまでの時間(秒) + + + Label63 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 14 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 53 + + + False + + + ConnectionPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 4 + + + 227, 41 + + + 65, 19 + + + 3 + + + UserstreamPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + UserStreamPanel + + + 0 + + + True + + + NoControl + + + 22, 20 + + + 157, 16 + + + 1 + + + 起動時に自動的に接続する + + + StartupUserstreamCheck + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + UserStreamPanel + + + 1 + + + True + + + NoControl + + + 22, 45 + + + 145, 12 + + + 2 + + + 発言一覧への反映間隔(秒) + + + Label83 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + UserStreamPanel + + + 2 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 44 + + + False + + + UserStreamPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 5 + True @@ -392,118 +2462,454 @@ SplitContainer1.Panel2 - 0 + 6 - - 227, 33 + + True - - 65, 19 + + NoControl - - 3 + + 216, 134 - - UserstreamPeriod + + 131, 12 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 104 - - UserStreamPanel + + 再起動後有効になります。 - + + Label47 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + 0 - + True - + NoControl - - 20, 12 + + 264, 90 - - 157, 16 + + 44, 12 - - 1 + + 100 - - 起動時に自動的に接続する + + Label63 - - StartupUserstreamCheck + + LabelDateTimeFormatApplied - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - UserStreamPanel + + TweetPrvPanel - + 1 - + True - + NoControl - - 18, 39 + + 217, 90 - - 145, 12 + + 44, 12 - - 2 + + 99 - - 発言一覧への反映間隔(秒) + + Sample: - - Label83 + + Label62 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - UserStreamPanel + + TweetPrvPanel - + 2 - + + Top, Bottom, Left, Right + + + yyyy/MM/dd H:mm:ss + + + yy/M/d H:mm:ss + + + H:mm:ss yy/M/d + + + M/d H:mm:ss + + + M/d H:mm + + + H:mm:ss M/d + + + H:mm:ss + + + H:mm + + + tt h:mm + + + M/d tt h:mm:ss + + + M/d tt h:mm + + + 216, 67 + + + 199, 20 + + + 98 + + + CmbDateTimeFormat + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 3 + + + True + + + NoControl + + + 22, 70 + + + 113, 12 + + + 97 + + + リストの日時フォーマット + + + Label23 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 4 + + + True + + + NoControl + + + 22, 108 + + + 163, 12 + + + 101 + + + リストのアイコンサイズ(初期値16) + + + Label11 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 5 + + + none + + + 16*16 + + + 24*24 + + + 48*48 + + + 48*48(2Column) + + + 252, 105 + + + 163, 20 + + + 103 + + + IconSize + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 6 + + + False + + + 216, 106 + + + 34, 19 + + + 102 + + + TextBox3 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 7 + + + True + + + NoControl + + + 22, 203 + + + 203, 16 + + + 96 + + + ソート順を変更できないようにロックする + + + CheckSortOrderLock + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 8 + + + True + + + NoControl + + + 22, 178 + + + 154, 16 + + + 94 + + + リストの区切り線を表示する + + + CheckShowGrid + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 9 + + + True + + + NoControl + + + 22, 153 + + + 143, 16 + + + 92 + + + 自分の発言を既読にする + + + chkReadOwnPost + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 10 + + + True + + + NoControl + + + 22, 42 + + + 226, 16 + + + 84 + + + 未読ポストのフォントと色を変更する(低速) + + + chkUnreadStyle + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 11 + + + True + + + NoControl + + + 22, 21 + + + 162, 16 + + + 82 + + + 片思いを色分けして表示する + + + OneWayLv + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 12 + + Fill - + False - + 0, 0 - + 525, 368 - - 44 + + 86 - + False - - UserStreamPanel + + TweetPrvPanel - + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + SplitContainer1.Panel2 - - 1 + + 7 True @@ -710,7 +3116,7 @@ 6 - 21, 282 + 19, 282 474, 41 @@ -740,7 +3146,7 @@ NoControl - 20, 254 + 22, 253 157, 16 @@ -770,7 +3176,7 @@ NoControl - 21, 229 + 22, 229 153, 16 @@ -830,7 +3236,7 @@ NoControl - 21, 188 + 22, 188 183, 16 @@ -887,7 +3293,7 @@ NoControl - 22, 12 + 22, 20 113, 16 @@ -914,7 +3320,7 @@ NoControl - 22, 36 + 22, 42 408, 22 @@ -965,7 +3371,7 @@ NoControl - 22, 67 + 22, 71 100, 16 @@ -1055,7 +3461,7 @@ NoControl - 21, 136 + 22, 137 170, 16 @@ -1085,7 +3491,7 @@ NoControl - 22, 91 + 22, 92 145, 16 @@ -1136,437 +3542,8 @@ SplitContainer1.Panel2 - 2 - - - 343, 94 - - - 70, 19 - - - 69 - - - TextBitlyPw - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 0 - - - Enter - - - Ctrl+Enter - - - Shift+Enter - - - 181, 136 - - - 246, 20 - - - 60 - - - ComboBoxPostKeySelect - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 1 - - - True - - - NoControl - - - 19, 139 - - - 137, 12 - - - 59 - - - POSTキー(デフォルトEnter) - - - Label27 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 2 - - - True - - - NoControl - - - 21, 163 - - - 165, 16 - - - 62 - - - 公式RTする際に確認をしない - - - CheckRetweetNoConfirm - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 3 - - - 201, 95 - - - 71, 19 - - - 57 - - - TextBitlyId - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 4 - - - True - - - NoControl - - - 20, 211 - - - 107, 12 - - - 66 - - - フッター(文末に付加) - - - Label12 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 5 - - - True - - - NoControl - - - 278, 97 - - - 42, 12 - - - 58 - - - APIKey - - - Label77 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 6 - - - True - - - NoControl - - - 182, 211 - - - 195, 16 - - - 67 - - - 推奨フッターを使用する[TWNv○○] - - - CheckUseRecommendStatus - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 7 - - - True - - - NoControl - - - 179, 97 - - - 16, 12 - - - 56 - - - ID - - - Label76 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - 8 - - 182, 233 - - - 232, 19 - - - 68 - - - StatusText - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 9 - - - tinyurl - - - is.gd - - - twurl.nl - - - bit.ly - - - j.mp - - - 181, 71 - - - 246, 20 - - - 55 - - - ComboBoxAutoShortUrlFirst - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 10 - - - True - - - NoControl - - - 19, 74 - - - 154, 12 - - - 54 - - - URL自動短縮で優先的に使用 - - - Label71 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 11 - - - True - - - NoControl - - - 22, 21 - - - 122, 16 - - - 51 - - - 短縮URLを解決する - - - CheckTinyURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 12 - - - True - - - NoControl - - - 22, 42 - - - 242, 16 - - - 53 - - - 入力欄のURLを投稿する際に自動で短縮する - - - CheckAutoConvertUrl - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 13 - - - Fill - - - False - - - 0, 0 - - - 525, 368 - - - 77 - - - False - - - TweetActPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SplitContainer1.Panel2 - - - 3 - 通知なし @@ -1577,10 +3554,10 @@ アイコン変更&点滅 - 217, 142 + 215, 142 - 121, 20 + 136, 20 94 @@ -1604,7 +3581,7 @@ NoControl - 26, 145 + 22, 145 134, 12 @@ -1634,7 +3611,7 @@ NoControl - 26, 166 + 22, 166 256, 16 @@ -1664,7 +3641,7 @@ NoControl - 27, 118 + 22, 118 161, 16 @@ -1694,7 +3671,7 @@ NoControl - 26, 191 + 22, 191 243, 16 @@ -1724,7 +3701,7 @@ NoControl - 87, 290 + 83, 290 115, 12 @@ -1760,10 +3737,10 @@ Simplified Chinese - 213, 290 + 215, 285 - 121, 20 + 136, 20 85 @@ -1787,7 +3764,7 @@ NoControl - 26, 290 + 22, 290 53, 12 @@ -1817,7 +3794,7 @@ NoControl - 25, 263 + 22, 263 133, 16 @@ -1847,7 +3824,7 @@ NoControl - 25, 241 + 22, 238 343, 16 @@ -1877,7 +3854,7 @@ NoControl - 26, 66 + 22, 66 249, 16 @@ -1907,7 +3884,7 @@ NoControl - 24, 21 + 22, 20 130, 12 @@ -1982,7 +3959,7 @@ NoControl - 24, 91 + 22, 91 60, 12 @@ -2015,10 +3992,10 @@ ニックネーム - 215, 18 + 215, 15 - 100, 20 + 136, 20 44 @@ -2042,7 +4019,7 @@ NoControl - 26, 43 + 22, 43 235, 16 @@ -2075,7 +4052,7 @@ NoControl - 25, 216 + 22, 215 180, 16 @@ -2126,454 +4103,436 @@ SplitContainer1.Panel2 - 4 + 9 - - True + + 343, 94 - - NoControl + + 70, 19 - - 214, 134 + + 69 - - 131, 12 + + TextBitlyPw - - 104 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 再起動後有効になります。 + + TweetActPanel - - Label47 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetPrvPanel - - + 0 - - True + + Enter - - NoControl + + Ctrl+Enter - - 264, 90 + + Shift+Enter - - 44, 12 + + 181, 136 - - 100 + + 246, 20 - - Label63 + + 60 - - LabelDateTimeFormatApplied + + ComboBoxPostKeySelect - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + TweetActPanel - + 1 - + True - + NoControl - - 214, 90 + + 19, 139 - - 44, 12 + + 137, 12 - - 99 + + 59 - - Sample: + + POSTキー(デフォルトEnter) - - Label62 + + Label27 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + TweetActPanel - + 2 - - Top, Bottom, Left, Right + + True - - yyyy/MM/dd H:mm:ss + + NoControl - - yy/M/d H:mm:ss + + 21, 163 - - H:mm:ss yy/M/d + + 165, 16 - - M/d H:mm:ss + + 62 - - M/d H:mm + + 公式RTする際に確認をしない - - H:mm:ss M/d + + CheckRetweetNoConfirm - - H:mm:ss + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - H:mm + + TweetActPanel - - tt h:mm + + 3 - - M/d tt h:mm:ss + + 201, 95 - - M/d tt h:mm + + 71, 19 - - 216, 67 + + 57 - - 199, 20 + + TextBitlyId - - 98 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - CmbDateTimeFormat + + TweetActPanel - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - TweetPrvPanel - - - 3 - - + True - + NoControl - - 25, 70 + + 20, 211 - - 113, 12 + + 107, 12 - - 97 + + 66 - - リストの日時フォーマット + + フッター(文末に付加) - - Label23 + + Label12 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + TweetActPanel - - 4 + + 5 - + True - + NoControl - - 25, 108 + + 278, 97 - - 163, 12 + + 42, 12 - - 101 + + 58 - - リストのアイコンサイズ(初期値16) + + APIKey - - Label11 + + Label77 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + TweetActPanel - - 5 + + 6 - - none + + True - - 16*16 + + NoControl - - 24*24 + + 182, 211 - - 48*48 + + 195, 16 - - 48*48(2Column) + + 67 - - 252, 105 + + 推奨フッターを使用する[TWNv○○] - - 161, 20 + + CheckUseRecommendStatus - - 103 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - IconSize + + TweetActPanel - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - TweetPrvPanel + + True - - 6 + + NoControl - - False + + 179, 97 - - 216, 106 + + 16, 12 - - 34, 19 + + 56 - - 102 + + ID - - TextBox3 + + Label76 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + TweetActPanel - - 7 + + 8 - - True + + 182, 233 - - NoControl + + 232, 19 - - 25, 203 + + 68 - - 203, 16 + + StatusText - - 96 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ソート順を変更できないようにロックする + + TweetActPanel - - CheckSortOrderLock + + 9 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tinyurl - - TweetPrvPanel + + is.gd - - 8 + + twurl.nl - - True + + bit.ly - - NoControl + + j.mp - - 26, 178 + + 181, 71 - - 154, 16 + + 246, 20 - - 94 + + 55 - - リストの区切り線を表示する + + ComboBoxAutoShortUrlFirst - - CheckShowGrid + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TweetActPanel - - TweetPrvPanel + + 10 - - 9 - - + True - + NoControl - - 26, 153 + + 19, 74 - - 143, 16 + + 154, 12 - - 92 + + 54 - - 自分の発言を既読にする + + URL自動短縮で優先的に使用 - - chkReadOwnPost + + Label71 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + TweetActPanel - - 10 + + 11 - + True - + NoControl - - 27, 42 + + 22, 21 - - 226, 16 + + 122, 16 - - 84 + + 51 - - 未読ポストのフォントと色を変更する(低速) + + 短縮URLを解決する - - chkUnreadStyle + + CheckTinyURL - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + TweetActPanel - - 11 + + 12 - + True - + NoControl - - 27, 21 + + 22, 42 - - 162, 16 + + 242, 16 - - 82 + + 53 - - 片思いを色分けして表示する + + 入力欄のURLを投稿する際に自動で短縮する - - OneWayLv + + CheckAutoConvertUrl - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + TweetActPanel - - 12 + + 13 - + Fill - + False - + 0, 0 - + 525, 368 - - 86 + + 77 - + False - - TweetPrvPanel + + TweetActPanel - + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + SplitContainer1.Panel2 - - 5 + + 10 True @@ -3377,7 +5336,7 @@ SplitContainer1.Panel2 - 6 + 11 True @@ -4271,1967 +6230,8 @@ SplitContainer1.Panel2 - 7 - - - True - - - NoControl - - - 23, 295 - - - 237, 16 - - - 24 - - - ニコニコ動画のURLをnico.msで短縮して送信 - - - CheckNicoms - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 0 - - - True - - - NoControl - - - 36, 245 - - - 99, 12 - - - 22 - - - アウトプット先のURL - - - Label60 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 1 - - - twitter.com - - - twitter.com/username - - - 205, 242 - - - 182, 20 - - - 23 - - - ComboBoxOutputzUrlmode - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 2 - - - True - - - NoControl - - - 36, 199 - - - 63, 12 - - - 20 - - - 復活の呪文 - - - Label59 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 3 - - - 205, 196 - - - 182, 19 - - - 21 - - - TextBoxOutputzKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 4 - - - True - - - NoControl - - - 23, 162 - - - 115, 16 - - - 19 - - - Outputzに対応する - - - CheckOutputz - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 5 - - - True - - - NoControl - - - 22, 329 - - - 178, 16 - - - 18 - - - BASIC認証への変更を許可する - - - CheckEnableBasicAuth - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 6 - - - 262, 125 - - - 125, 19 - - - 17 - - - search.twitter.com - - - TwitterSearchAPIText - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 7 - - - True - - - NoControl - - - 21, 128 - - - 228, 12 - - - 16 - - - Twitter SearchAPI URL (search.twitter.com) - - - Label31 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 8 - - - 262, 100 - - - 125, 19 - - - 15 - - - api.twitter.com - - - TwitterAPIText - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 9 - - - True - - - NoControl - - - 21, 103 - - - 174, 12 - - - 14 - - - Twitter API URL (api.twitter.com) - - - Label8 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 10 - - - True - - - NoControl - - - 23, 78 - - - 145, 16 - - - 13 - - - 通信にHTTPSを使用する - - - CheckUseSsl - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 11 - - - True - - - NoControl - - - 21, 51 - - - 349, 12 - - 12 - - ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 - - - Label64 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 12 - - - 262, 18 - - - 123, 19 - - - 11 - - - ConnectionTimeOut - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 13 - - - True - - - NoControl - - - 21, 21 - - - 131, 12 - - - 10 - - - タイムアウトまでの時間(秒) - - - Label63 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 14 - - - Fill - - - False - - - 0, 0 - - - 525, 368 - - - 53 - - - False - - - ConnectionPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SplitContainer1.Panel2 - - - 8 - - - True - - - NoControl - - - 37, 131 - - - 314, 12 - - - 11 - - - ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 - - - Label55 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ProxyPanel - - - 0 - - - 283, 100 - - - 96, 19 - - - 10 - - - TextProxyPassword - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ProxyPanel - - - 1 - - - True - - - NoControl - - - 15, 15 - - - 76, 16 - - - 0 - - - 使用しない - - - RadioProxyNone - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ProxyPanel - - - 2 - - - True - - - NoControl - - - 214, 103 - - - 69, 12 - - - 9 - - - パスワード(&W) - - - LabelProxyPassword - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ProxyPanel - - - 3 - - - True - - - NoControl - - - 15, 37 - - - 190, 16 - - - 1 - - - InternetExplorerの設定を使用する - - - RadioProxyIE - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ProxyPanel - - - 4 - - - 140, 100 - - - 68, 19 - - - 8 - - - TextProxyUser - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ProxyPanel - - - 5 - - - True - - - NoControl - - - 15, 59 - - - 66, 16 - - - 2 - - - 指定する - - - RadioProxySpecified - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ProxyPanel - - - 6 - - - True - - - NoControl - - - 71, 103 - - - 63, 12 - - - 7 - - - ユーザ名(&U) - - - LabelProxyUser - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ProxyPanel - - - 7 - - - True - - - NoControl - - - 47, 78 - - - 58, 12 - - - 3 - - - プロキシ(&X) - - - LabelProxyAddress - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ProxyPanel - - - 8 - - - 306, 75 - - - 73, 19 - - - 6 - - - TextProxyPort - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ProxyPanel - - - 9 - - - 111, 75 - - - 135, 19 - - - 4 - - - TextProxyAddress - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ProxyPanel - - - 10 - - - True - - - NoControl - - - 252, 78 - - - 48, 12 - - - 5 - - - ポート(&P) - - - LabelProxyPort - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ProxyPanel - - - 11 - - - Fill - - - False - - - 0, 0 - - - 525, 368 - - - 54 - - - False - - - ProxyPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SplitContainer1.Panel2 - - - 9 - - - True - - - False - - - NoControl - - - 227, 20 - - - 57, 16 - - - 14 - - - BASIC - - - AuthBasicRadio - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 0 - - - True - - - NoControl - - - 113, 20 - - - 93, 16 - - - 13 - - - OAuth(xAuth) - - - AuthOAuthRadio - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 1 - - - True - - - NoControl - - - 22, 22 - - - 53, 12 - - - 12 - - - 認証方法 - - - Label6 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 2 - - - NoControl - - - 305, 64 - - - 75, 23 - - - 18 - - - クリア - - - AuthClearButton - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 3 - - - NoControl - - - 113, 68 - - - 149, 14 - - - 17 - - - 認証済み - - - AuthUserLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 4 - - - NoControl - - - 113, 54 - - - 112, 14 - - - 16 - - - Not Authenticated - - - AuthStateLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 5 - - - True - - - NoControl - - - 23, 54 - - - 53, 12 - - - 15 - - - 認証状態 - - - Label4 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 6 - - - NoControl - - - 305, 126 - - - 75, 23 - - - 23 - - - 認証する - - - AuthorizeButton - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 7 - - - True - - - NoControl - - - 22, 112 - - - 57, 12 - - - 19 - - - ユーザー名 - - - Label1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 8 - - - True - - - NoControl - - - 22, 133 - - - 52, 12 - - - 21 - - - パスワード - - - Label2 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 9 - - - 113, 109 - - - 186, 19 - - - 20 - - - Username - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 10 - - - 113, 130 - - - 186, 19 - - - 22 - - - Password - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 11 - - - Fill - - - False - - - 0, 0 - - - 525, 368 - - - 0 - - - False - - - BasedPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SplitContainer1.Panel2 - - - 10 - - - 258, 21 - - - 65, 19 - - - 29 - - - TimelinePeriod - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 0 - - - True - - - NoControl - - - 25, 24 - - - 130, 12 - - - 28 - - - タイムライン更新間隔(秒) - - - Label3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 1 - - - NoControl - - - 258, 167 - - - 75, 23 - - - 41 - - - 再計算 - - - ButtonApiCalc - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 2 - - - True - - - NoControl - - - 31, 207 - - - 285, 12 - - - 42 - - - 投稿時取得が有効のため、投稿のたびにAPIを消費します。 - - - LabelPostAndGet - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 3 - - - True - - - NoControl - - - 31, 175 - - - 23, 12 - - - 40 - - - 999 - - - MiddleRight - - - LabelApiUsing - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 4 - - - True - - - NoControl - - - 25, 138 - - - 102, 12 - - - 38 - - - Lists更新間隔(秒) - - - Label33 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 5 - - - 258, 135 - - - 65, 19 - - - 39 - - - ListsPeriod - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 6 - - - True - - - NoControl - - - 25, 114 - - - 137, 12 - - - 36 - - - Twitter検索更新間隔(秒) - - - Label7 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 7 - - - 258, 111 - - - 65, 19 - - - 37 - - - PubSearchPeriod - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 8 - - - True - - - NoControl - - - 25, 66 - - - 123, 12 - - - 32 - - - Mentions更新間隔(秒) - - - Label69 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 9 - - - 258, 63 - - - 65, 19 - - - 33 - - - ReplyPeriod - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 10 - - - True - - - NoControl - - - 35, 43 - - - 84, 16 - - - 30 - - - 投稿時取得 - - - CheckPostAndGet - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 11 - - - True - - - NoControl - - - 252, 43 - - - 91, 16 - - - 31 - - - 自動調整する - - - False - - - CheckPeriodAdjust - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 12 - - - True - - - NoControl - - - 25, 90 - - - 94, 12 - - - 34 - - - DM更新間隔(秒) - - - Label5 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 13 - - - 258, 87 - - - 65, 19 - - - 35 - - - DMPeriod - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 14 - - - Fill - - - False - - - 0, 0 - - - 525, 368 - - - 1 - - - False - - - GetPeriodPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SplitContainer1.Panel2 - - - 11 - - - True - - - 28, 192 - - - 117, 12 - - - 52 - - - PublicSearchの取得数 - - - Label30 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 0 - - - True - - - 28, 144 - - - 63, 12 - - - 51 - - - 初回の更新 - - - Label28 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 1 - - - True - - - 31, 58 - - - 87, 12 - - - 50 - - - Mentions取得数 - - - Label19 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 2 - - - 259, 159 - - - 58, 19 - - - 48 - - - FavoritesTextCountApi - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 3 - - - 259, 185 - - - 58, 19 - - - 49 - - - SearchTextCountApi - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 4 - - - True - - - NoControl - - - 28, 166 - - - 99, 12 - - - 47 - - - Favoritesの取得数 - - - Label66 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 5 - - - 259, 135 - - - 58, 19 - - - 46 - - - FirstTextCountApi - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 6 - - - 259, 112 - - - 59, 19 - - - 45 - - - GetMoreTextCountApi - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 7 - - - True - - - NoControl - - - 28, 118 - - - 79, 12 - - - 44 - - - 前データの更新 - - - Label53 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 8 - - - True - - - NoControl - - - 30, 89 - - - 247, 16 - - - 43 - - - 次の項目の更新時の取得数を個別に設定する - - - UseChangeGetCount - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 9 - - - 258, 51 - - - 58, 19 - - - 41 - - - TextCountApiReply - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 10 - - - True - - - NoControl - - - 30, 24 - - - 77, 12 - - - 39 - - - 標準取得件数 - - - Label67 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 11 - - - 259, 21 - - - 57, 19 - - - 40 - - - TextCountApi - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 12 - - - Fill - - - False - - - 0, 0 - - - 525, 368 - - - 44 - - - False - - - GetCountPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SplitContainer1.Panel2 - - - 12 - SplitContainer1.Panel2 @@ -6275,7 +6275,7 @@ NoControl - 613, 374 + 623, 374 75, 23 @@ -6302,7 +6302,7 @@ NoControl - 532, 374 + 541, 374 75, 23 From svnnotify @ sourceforge.jp Sun Dec 19 17:03:11 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 19 Dec 2010 17:03:11 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMjNdICB1bmJsb2Nr44Kk44OZ44Oz44OI44Gr?= =?utf-8?b?5a++5b+c?= Message-ID: <1292745791.916483.16274.nullmailer@users.sourceforge.jp> Revision: 1223 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1223 Author: kiri_feather Date: 2010-12-19 17:03:11 +0900 (Sun, 19 Dec 2010) Log Message: ----------- unblockイベントに対応 userデータがないjsonがある?例外対応してtrace出力するように Modified Paths: -------------- trunk/Tween/My Project/AssemblyInfo.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/My Project/AssemblyInfo.vb =================================================================== --- trunk/Tween/My Project/AssemblyInfo.vb 2010-12-19 07:35:50 UTC (rev 1222) +++ trunk/Tween/My Project/AssemblyInfo.vb 2010-12-19 08:03:11 UTC (rev 1223) @@ -55,5 +55,5 @@ ' - + Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-19 07:35:50 UTC (rev 1222) +++ trunk/Tween/Twitter.vb 2010-12-19 08:03:11 UTC (rev 1223) @@ -1559,7 +1559,12 @@ For Each status As TwitterDataModel.Status In items Dim post As PostClass = Nothing - post = CreatePostsFromStatusData(status) + Try + post = CreatePostsFromStatusData(status) + Catch ex As NullReferenceException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Invalid Json ?" + End Try If minimumId > post.Id Then minimumId = post.Id '二重取得回避 @@ -2930,6 +2935,8 @@ evt.Target = eventData.TargetObject.Name Case "block" evt.Target = "" + Case "unblock" + evt.Target = "" Case "user_update" evt.Target = "" Case Else From svnnotify @ sourceforge.jp Sun Dec 19 17:14:39 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 19 Dec 2010 17:14:39 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMjRdICDoi7Hoqp7jg6rjgr3jg7zjgrnjgag=?= =?utf-8?b?5Lit5Zu96Kqe44Oq44K944O844K544Gu44OV44Kh44Kk44Or44KS6L+95Yqg?= Message-ID: <1292746479.016932.31795.nullmailer@users.sourceforge.jp> Revision: 1224 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1224 Author: f_swallow Date: 2010-12-19 17:14:38 +0900 (Sun, 19 Dec 2010) Log Message: ----------- 英語リソースと中国語リソースのファイルを追加 Modified Paths: -------------- branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb branches/SettingDialog/Tween/AppendSettingDialog.resx branches/SettingDialog/Tween/Tween.vbproj Added Paths: ----------- branches/SettingDialog/Tween/AppendSettingDialog.en.resx branches/SettingDialog/Tween/AppendSettingDialog.zh-CHS.resx -------------- next part -------------- Modified: branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb 2010-12-19 08:03:11 UTC (rev 1223) +++ branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb 2010-12-19 08:14:38 UTC (rev 1224) @@ -25,15 +25,101 @@ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AppendSettingDialog)) Me.SplitContainer1 = New System.Windows.Forms.SplitContainer() Me.TreeView1 = New System.Windows.Forms.TreeView() + Me.GetCountPanel = New System.Windows.Forms.Panel() + Me.Label30 = New System.Windows.Forms.Label() + Me.Label28 = New System.Windows.Forms.Label() + Me.Label19 = New System.Windows.Forms.Label() + Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() + Me.SearchTextCountApi = New System.Windows.Forms.TextBox() + Me.Label66 = New System.Windows.Forms.Label() + Me.FirstTextCountApi = New System.Windows.Forms.TextBox() + Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() + Me.Label53 = New System.Windows.Forms.Label() + Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() + Me.TextCountApiReply = New System.Windows.Forms.TextBox() + Me.Label67 = New System.Windows.Forms.Label() + Me.TextCountApi = New System.Windows.Forms.TextBox() + Me.GetPeriodPanel = New System.Windows.Forms.Panel() + Me.TimelinePeriod = New System.Windows.Forms.TextBox() + Me.Label3 = New System.Windows.Forms.Label() + Me.ButtonApiCalc = New System.Windows.Forms.Button() + Me.LabelPostAndGet = New System.Windows.Forms.Label() + Me.LabelApiUsing = New System.Windows.Forms.Label() + Me.Label33 = New System.Windows.Forms.Label() + Me.ListsPeriod = New System.Windows.Forms.TextBox() + Me.Label7 = New System.Windows.Forms.Label() + Me.PubSearchPeriod = New System.Windows.Forms.TextBox() + Me.Label69 = New System.Windows.Forms.Label() + Me.ReplyPeriod = New System.Windows.Forms.TextBox() + Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() + Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() + Me.Label5 = New System.Windows.Forms.Label() + Me.DMPeriod = New System.Windows.Forms.TextBox() + Me.BasedPanel = New System.Windows.Forms.Panel() + Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() + Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() + Me.Label6 = New System.Windows.Forms.Label() + Me.AuthClearButton = New System.Windows.Forms.Button() + Me.AuthUserLabel = New System.Windows.Forms.Label() + Me.AuthStateLabel = New System.Windows.Forms.Label() + Me.Label4 = New System.Windows.Forms.Label() + Me.AuthorizeButton = New System.Windows.Forms.Button() + Me.Label1 = New System.Windows.Forms.Label() + Me.Label2 = New System.Windows.Forms.Label() + Me.Username = New System.Windows.Forms.TextBox() + Me.Password = New System.Windows.Forms.TextBox() + Me.ProxyPanel = New System.Windows.Forms.Panel() + Me.Label55 = New System.Windows.Forms.Label() + Me.TextProxyPassword = New System.Windows.Forms.TextBox() + Me.RadioProxyNone = New System.Windows.Forms.RadioButton() + Me.LabelProxyPassword = New System.Windows.Forms.Label() + Me.RadioProxyIE = New System.Windows.Forms.RadioButton() + Me.TextProxyUser = New System.Windows.Forms.TextBox() + Me.RadioProxySpecified = New System.Windows.Forms.RadioButton() + Me.LabelProxyUser = New System.Windows.Forms.Label() + Me.LabelProxyAddress = New System.Windows.Forms.Label() + Me.TextProxyPort = New System.Windows.Forms.TextBox() + Me.TextProxyAddress = New System.Windows.Forms.TextBox() + Me.LabelProxyPort = New System.Windows.Forms.Label() + Me.ConnectionPanel = New System.Windows.Forms.Panel() + Me.CheckNicoms = New System.Windows.Forms.CheckBox() + Me.Label60 = New System.Windows.Forms.Label() + Me.ComboBoxOutputzUrlmode = New System.Windows.Forms.ComboBox() + Me.Label59 = New System.Windows.Forms.Label() + Me.TextBoxOutputzKey = New System.Windows.Forms.TextBox() + Me.CheckOutputz = New System.Windows.Forms.CheckBox() + Me.CheckEnableBasicAuth = New System.Windows.Forms.CheckBox() + Me.TwitterSearchAPIText = New System.Windows.Forms.TextBox() + Me.Label31 = New System.Windows.Forms.Label() + Me.TwitterAPIText = New System.Windows.Forms.TextBox() + Me.Label8 = New System.Windows.Forms.Label() + Me.CheckUseSsl = New System.Windows.Forms.CheckBox() + Me.Label64 = New System.Windows.Forms.Label() + Me.ConnectionTimeOut = New System.Windows.Forms.TextBox() + Me.Label63 = New System.Windows.Forms.Label() + Me.UserStreamPanel = New System.Windows.Forms.Panel() + Me.UserstreamPeriod = New System.Windows.Forms.TextBox() + Me.StartupUserstreamCheck = New System.Windows.Forms.CheckBox() + Me.Label83 = New System.Windows.Forms.Label() Me.StartupPanel = New System.Windows.Forms.Panel() Me.StartupReaded = New System.Windows.Forms.CheckBox() Me.CheckStartupFollowers = New System.Windows.Forms.CheckBox() Me.CheckStartupVersion = New System.Windows.Forms.CheckBox() Me.chkGetFav = New System.Windows.Forms.CheckBox() - Me.UserStreamPanel = New System.Windows.Forms.Panel() - Me.UserstreamPeriod = New System.Windows.Forms.TextBox() - Me.StartupUserstreamCheck = New System.Windows.Forms.CheckBox() - Me.Label83 = New System.Windows.Forms.Label() + Me.TweetPrvPanel = New System.Windows.Forms.Panel() + Me.Label47 = New System.Windows.Forms.Label() + Me.LabelDateTimeFormatApplied = New System.Windows.Forms.Label() + Me.Label62 = New System.Windows.Forms.Label() + Me.CmbDateTimeFormat = New System.Windows.Forms.ComboBox() + Me.Label23 = New System.Windows.Forms.Label() + Me.Label11 = New System.Windows.Forms.Label() + Me.IconSize = New System.Windows.Forms.ComboBox() + Me.TextBox3 = New System.Windows.Forms.TextBox() + Me.CheckSortOrderLock = New System.Windows.Forms.CheckBox() + Me.CheckShowGrid = New System.Windows.Forms.CheckBox() + Me.chkReadOwnPost = New System.Windows.Forms.CheckBox() + Me.chkUnreadStyle = New System.Windows.Forms.CheckBox() + Me.OneWayLv = New System.Windows.Forms.CheckBox() Me.ActionPanel = New System.Windows.Forms.Panel() Me.GroupBox3 = New System.Windows.Forms.GroupBox() Me.HotkeyCheck = New System.Windows.Forms.CheckBox() @@ -56,21 +142,6 @@ Me.CheckCloseToExit = New System.Windows.Forms.CheckBox() Me.CheckMinimizeToTray = New System.Windows.Forms.CheckBox() Me.CheckReadOldPosts = New System.Windows.Forms.CheckBox() - Me.TweetActPanel = New System.Windows.Forms.Panel() - Me.TextBitlyPw = New System.Windows.Forms.TextBox() - Me.ComboBoxPostKeySelect = New System.Windows.Forms.ComboBox() - Me.Label27 = New System.Windows.Forms.Label() - Me.CheckRetweetNoConfirm = New System.Windows.Forms.CheckBox() - Me.TextBitlyId = New System.Windows.Forms.TextBox() - Me.Label12 = New System.Windows.Forms.Label() - Me.Label77 = New System.Windows.Forms.Label() - Me.CheckUseRecommendStatus = New System.Windows.Forms.CheckBox() - Me.Label76 = New System.Windows.Forms.Label() - Me.StatusText = New System.Windows.Forms.TextBox() - Me.ComboBoxAutoShortUrlFirst = New System.Windows.Forms.ComboBox() - Me.Label71 = New System.Windows.Forms.Label() - Me.CheckTinyURL = New System.Windows.Forms.CheckBox() - Me.CheckAutoConvertUrl = New System.Windows.Forms.CheckBox() Me.PreviewPanel = New System.Windows.Forms.Panel() Me.ReplyIconStateCombo = New System.Windows.Forms.ComboBox() Me.Label72 = New System.Windows.Forms.Label() @@ -89,20 +160,21 @@ Me.cmbNameBalloon = New System.Windows.Forms.ComboBox() Me.CheckDispUsername = New System.Windows.Forms.CheckBox() Me.CheckBox3 = New System.Windows.Forms.CheckBox() - Me.TweetPrvPanel = New System.Windows.Forms.Panel() - Me.Label47 = New System.Windows.Forms.Label() - Me.LabelDateTimeFormatApplied = New System.Windows.Forms.Label() - Me.Label62 = New System.Windows.Forms.Label() - Me.CmbDateTimeFormat = New System.Windows.Forms.ComboBox() - Me.Label23 = New System.Windows.Forms.Label() - Me.Label11 = New System.Windows.Forms.Label() - Me.IconSize = New System.Windows.Forms.ComboBox() - Me.TextBox3 = New System.Windows.Forms.TextBox() - Me.CheckSortOrderLock = New System.Windows.Forms.CheckBox() - Me.CheckShowGrid = New System.Windows.Forms.CheckBox() - Me.chkReadOwnPost = New System.Windows.Forms.CheckBox() - Me.chkUnreadStyle = New System.Windows.Forms.CheckBox() - Me.OneWayLv = New System.Windows.Forms.CheckBox() + Me.TweetActPanel = New System.Windows.Forms.Panel() + Me.TextBitlyPw = New System.Windows.Forms.TextBox() + Me.ComboBoxPostKeySelect = New System.Windows.Forms.ComboBox() + Me.Label27 = New System.Windows.Forms.Label() + Me.CheckRetweetNoConfirm = New System.Windows.Forms.CheckBox() + Me.TextBitlyId = New System.Windows.Forms.TextBox() + Me.Label12 = New System.Windows.Forms.Label() + Me.Label77 = New System.Windows.Forms.Label() + Me.CheckUseRecommendStatus = New System.Windows.Forms.CheckBox() + Me.Label76 = New System.Windows.Forms.Label() + Me.StatusText = New System.Windows.Forms.TextBox() + Me.ComboBoxAutoShortUrlFirst = New System.Windows.Forms.ComboBox() + Me.Label71 = New System.Windows.Forms.Label() + Me.CheckTinyURL = New System.Windows.Forms.CheckBox() + Me.CheckAutoConvertUrl = New System.Windows.Forms.CheckBox() Me.FontPanel = New System.Windows.Forms.Panel() Me.GroupBox1 = New System.Windows.Forms.GroupBox() Me.btnRetweet = New System.Windows.Forms.Button() @@ -151,111 +223,39 @@ Me.lblAtSelf = New System.Windows.Forms.Label() Me.lblSelf = New System.Windows.Forms.Label() Me.ButtonBackToDefaultFontColor2 = New System.Windows.Forms.Button() - Me.Label89 = New System.Windows.Forms.Label() - Me.Label91 = New System.Windows.Forms.Label() - Me.Label95 = New System.Windows.Forms.Label() - Me.Label99 = New System.Windows.Forms.Label() - Me.Label101 = New System.Windows.Forms.Label() - Me.Label103 = New System.Windows.Forms.Label() - Me.Label105 = New System.Windows.Forms.Label() - Me.Label107 = New System.Windows.Forms.Label() - Me.Label109 = New System.Windows.Forms.Label() - Me.ConnectionPanel = New System.Windows.Forms.Panel() - Me.CheckNicoms = New System.Windows.Forms.CheckBox() - Me.Label60 = New System.Windows.Forms.Label() - Me.ComboBoxOutputzUrlmode = New System.Windows.Forms.ComboBox() - Me.Label59 = New System.Windows.Forms.Label() - Me.TextBoxOutputzKey = New System.Windows.Forms.TextBox() - Me.CheckOutputz = New System.Windows.Forms.CheckBox() - Me.CheckEnableBasicAuth = New System.Windows.Forms.CheckBox() - Me.TwitterSearchAPIText = New System.Windows.Forms.TextBox() - Me.Label31 = New System.Windows.Forms.Label() - Me.TwitterAPIText = New System.Windows.Forms.TextBox() - Me.Label8 = New System.Windows.Forms.Label() - Me.CheckUseSsl = New System.Windows.Forms.CheckBox() - Me.Label64 = New System.Windows.Forms.Label() - Me.ConnectionTimeOut = New System.Windows.Forms.TextBox() - Me.Label63 = New System.Windows.Forms.Label() - Me.ProxyPanel = New System.Windows.Forms.Panel() - Me.Label55 = New System.Windows.Forms.Label() - Me.TextProxyPassword = New System.Windows.Forms.TextBox() - Me.RadioProxyNone = New System.Windows.Forms.RadioButton() - Me.LabelProxyPassword = New System.Windows.Forms.Label() - Me.RadioProxyIE = New System.Windows.Forms.RadioButton() - Me.TextProxyUser = New System.Windows.Forms.TextBox() - Me.RadioProxySpecified = New System.Windows.Forms.RadioButton() - Me.LabelProxyUser = New System.Windows.Forms.Label() - Me.LabelProxyAddress = New System.Windows.Forms.Label() - Me.TextProxyPort = New System.Windows.Forms.TextBox() - Me.TextProxyAddress = New System.Windows.Forms.TextBox() - Me.LabelProxyPort = New System.Windows.Forms.Label() - Me.BasedPanel = New System.Windows.Forms.Panel() - Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() - Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() - Me.Label6 = New System.Windows.Forms.Label() - Me.AuthClearButton = New System.Windows.Forms.Button() - Me.AuthUserLabel = New System.Windows.Forms.Label() - Me.AuthStateLabel = New System.Windows.Forms.Label() - Me.Label4 = New System.Windows.Forms.Label() - Me.AuthorizeButton = New System.Windows.Forms.Button() - Me.Label1 = New System.Windows.Forms.Label() - Me.Label2 = New System.Windows.Forms.Label() - Me.Username = New System.Windows.Forms.TextBox() - Me.Password = New System.Windows.Forms.TextBox() - Me.GetPeriodPanel = New System.Windows.Forms.Panel() - Me.TimelinePeriod = New System.Windows.Forms.TextBox() - Me.Label3 = New System.Windows.Forms.Label() - Me.ButtonApiCalc = New System.Windows.Forms.Button() - Me.LabelPostAndGet = New System.Windows.Forms.Label() - Me.LabelApiUsing = New System.Windows.Forms.Label() - Me.Label33 = New System.Windows.Forms.Label() - Me.ListsPeriod = New System.Windows.Forms.TextBox() - Me.Label7 = New System.Windows.Forms.Label() - Me.PubSearchPeriod = New System.Windows.Forms.TextBox() - Me.Label69 = New System.Windows.Forms.Label() - Me.ReplyPeriod = New System.Windows.Forms.TextBox() - Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() - Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() - Me.Label5 = New System.Windows.Forms.Label() - Me.DMPeriod = New System.Windows.Forms.TextBox() - Me.GetCountPanel = New System.Windows.Forms.Panel() - Me.Label30 = New System.Windows.Forms.Label() - Me.Label28 = New System.Windows.Forms.Label() - Me.Label19 = New System.Windows.Forms.Label() - Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() - Me.SearchTextCountApi = New System.Windows.Forms.TextBox() - Me.Label66 = New System.Windows.Forms.Label() - Me.FirstTextCountApi = New System.Windows.Forms.TextBox() - Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() - Me.Label53 = New System.Windows.Forms.Label() - Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() - Me.TextCountApiReply = New System.Windows.Forms.TextBox() - Me.Label67 = New System.Windows.Forms.Label() - Me.TextCountApi = New System.Windows.Forms.TextBox() Me.FontDialog1 = New System.Windows.Forms.FontDialog() Me.ColorDialog1 = New System.Windows.Forms.ColorDialog() Me.Cancel = New System.Windows.Forms.Button() Me.Save = New System.Windows.Forms.Button() + Me.Label65 = New System.Windows.Forms.Label() + Me.Label52 = New System.Windows.Forms.Label() + Me.Label49 = New System.Windows.Forms.Label() + Me.Label9 = New System.Windows.Forms.Label() + Me.Label14 = New System.Windows.Forms.Label() + Me.Label16 = New System.Windows.Forms.Label() + Me.Label32 = New System.Windows.Forms.Label() + Me.Label34 = New System.Windows.Forms.Label() + Me.Label36 = New System.Windows.Forms.Label() CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SplitContainer1.Panel1.SuspendLayout() Me.SplitContainer1.Panel2.SuspendLayout() Me.SplitContainer1.SuspendLayout() + Me.GetCountPanel.SuspendLayout() + Me.GetPeriodPanel.SuspendLayout() + Me.BasedPanel.SuspendLayout() + Me.ProxyPanel.SuspendLayout() + Me.ConnectionPanel.SuspendLayout() + Me.UserStreamPanel.SuspendLayout() Me.StartupPanel.SuspendLayout() - Me.UserStreamPanel.SuspendLayout() + Me.TweetPrvPanel.SuspendLayout() Me.ActionPanel.SuspendLayout() Me.GroupBox3.SuspendLayout() + Me.PreviewPanel.SuspendLayout() Me.TweetActPanel.SuspendLayout() - Me.PreviewPanel.SuspendLayout() - Me.TweetPrvPanel.SuspendLayout() Me.FontPanel.SuspendLayout() Me.GroupBox1.SuspendLayout() Me.FontPanel2.SuspendLayout() Me.GroupBox5.SuspendLayout() - Me.ConnectionPanel.SuspendLayout() - Me.ProxyPanel.SuspendLayout() - Me.BasedPanel.SuspendLayout() - Me.GetPeriodPanel.SuspendLayout() - Me.GetCountPanel.SuspendLayout() Me.SuspendLayout() ' 'SplitContainer1 @@ -270,6 +270,7 @@ 'SplitContainer1.Panel2 ' Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Window + Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel2) Me.SplitContainer1.Panel2.Controls.Add(Me.GetCountPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.BasedPanel) @@ -282,7 +283,6 @@ Me.SplitContainer1.Panel2.Controls.Add(Me.PreviewPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.TweetActPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel2) ' 'TreeView1 ' @@ -291,6 +291,490 @@ Me.TreeView1.Name = "TreeView1" Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {CType(resources.GetObject("TreeView1.Nodes"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes1"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes2"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes3"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes4"), System.Windows.Forms.TreeNode)}) ' + 'GetCountPanel + ' + Me.GetCountPanel.BackColor = System.Drawing.SystemColors.Window + Me.GetCountPanel.Controls.Add(Me.Label30) + Me.GetCountPanel.Controls.Add(Me.Label28) + Me.GetCountPanel.Controls.Add(Me.Label19) + Me.GetCountPanel.Controls.Add(Me.FavoritesTextCountApi) + Me.GetCountPanel.Controls.Add(Me.SearchTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label66) + Me.GetCountPanel.Controls.Add(Me.FirstTextCountApi) + Me.GetCountPanel.Controls.Add(Me.GetMoreTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label53) + Me.GetCountPanel.Controls.Add(Me.UseChangeGetCount) + Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) + Me.GetCountPanel.Controls.Add(Me.Label67) + Me.GetCountPanel.Controls.Add(Me.TextCountApi) + resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") + Me.GetCountPanel.Name = "GetCountPanel" + ' + 'Label30 + ' + resources.ApplyResources(Me.Label30, "Label30") + Me.Label30.Name = "Label30" + ' + 'Label28 + ' + resources.ApplyResources(Me.Label28, "Label28") + Me.Label28.Name = "Label28" + ' + 'Label19 + ' + resources.ApplyResources(Me.Label19, "Label19") + Me.Label19.Name = "Label19" + ' + 'FavoritesTextCountApi + ' + resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") + Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" + ' + 'SearchTextCountApi + ' + resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") + Me.SearchTextCountApi.Name = "SearchTextCountApi" + ' + 'Label66 + ' + resources.ApplyResources(Me.Label66, "Label66") + Me.Label66.Name = "Label66" + ' + 'FirstTextCountApi + ' + resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") + Me.FirstTextCountApi.Name = "FirstTextCountApi" + ' + 'GetMoreTextCountApi + ' + resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") + Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" + ' + 'Label53 + ' + resources.ApplyResources(Me.Label53, "Label53") + Me.Label53.Name = "Label53" + ' + 'UseChangeGetCount + ' + resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") + Me.UseChangeGetCount.Name = "UseChangeGetCount" + Me.UseChangeGetCount.UseVisualStyleBackColor = True + ' + 'TextCountApiReply + ' + resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") + Me.TextCountApiReply.Name = "TextCountApiReply" + ' + 'Label67 + ' + resources.ApplyResources(Me.Label67, "Label67") + Me.Label67.Name = "Label67" + ' + 'TextCountApi + ' + resources.ApplyResources(Me.TextCountApi, "TextCountApi") + Me.TextCountApi.Name = "TextCountApi" + ' + 'GetPeriodPanel + ' + Me.GetPeriodPanel.BackColor = System.Drawing.SystemColors.Window + Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label3) + Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) + Me.GetPeriodPanel.Controls.Add(Me.LabelPostAndGet) + Me.GetPeriodPanel.Controls.Add(Me.LabelApiUsing) + Me.GetPeriodPanel.Controls.Add(Me.Label33) + Me.GetPeriodPanel.Controls.Add(Me.ListsPeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label7) + Me.GetPeriodPanel.Controls.Add(Me.PubSearchPeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label69) + Me.GetPeriodPanel.Controls.Add(Me.ReplyPeriod) + Me.GetPeriodPanel.Controls.Add(Me.CheckPostAndGet) + Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) + Me.GetPeriodPanel.Controls.Add(Me.Label5) + Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) + resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") + Me.GetPeriodPanel.Name = "GetPeriodPanel" + ' + 'TimelinePeriod + ' + resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") + Me.TimelinePeriod.Name = "TimelinePeriod" + ' + 'Label3 + ' + resources.ApplyResources(Me.Label3, "Label3") + Me.Label3.Name = "Label3" + ' + 'ButtonApiCalc + ' + resources.ApplyResources(Me.ButtonApiCalc, "ButtonApiCalc") + Me.ButtonApiCalc.Name = "ButtonApiCalc" + Me.ButtonApiCalc.UseVisualStyleBackColor = True + ' + 'LabelPostAndGet + ' + resources.ApplyResources(Me.LabelPostAndGet, "LabelPostAndGet") + Me.LabelPostAndGet.Name = "LabelPostAndGet" + ' + 'LabelApiUsing + ' + resources.ApplyResources(Me.LabelApiUsing, "LabelApiUsing") + Me.LabelApiUsing.Name = "LabelApiUsing" + ' + 'Label33 + ' + resources.ApplyResources(Me.Label33, "Label33") + Me.Label33.Name = "Label33" + ' + 'ListsPeriod + ' + resources.ApplyResources(Me.ListsPeriod, "ListsPeriod") + Me.ListsPeriod.Name = "ListsPeriod" + ' + 'Label7 + ' + resources.ApplyResources(Me.Label7, "Label7") + Me.Label7.Name = "Label7" + ' + 'PubSearchPeriod + ' + resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") + Me.PubSearchPeriod.Name = "PubSearchPeriod" + ' + 'Label69 + ' + resources.ApplyResources(Me.Label69, "Label69") + Me.Label69.Name = "Label69" + ' + 'ReplyPeriod + ' + resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") + Me.ReplyPeriod.Name = "ReplyPeriod" + ' + 'CheckPostAndGet + ' + resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") + Me.CheckPostAndGet.Name = "CheckPostAndGet" + Me.CheckPostAndGet.UseVisualStyleBackColor = True + ' + 'CheckPeriodAdjust + ' + resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") + Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" + Me.CheckPeriodAdjust.UseVisualStyleBackColor = True + ' + 'Label5 + ' + resources.ApplyResources(Me.Label5, "Label5") + Me.Label5.Name = "Label5" + ' + 'DMPeriod + ' + resources.ApplyResources(Me.DMPeriod, "DMPeriod") + Me.DMPeriod.Name = "DMPeriod" + ' + 'BasedPanel + ' + Me.BasedPanel.BackColor = System.Drawing.SystemColors.Window + Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) + Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) + Me.BasedPanel.Controls.Add(Me.Label6) + Me.BasedPanel.Controls.Add(Me.AuthClearButton) + Me.BasedPanel.Controls.Add(Me.AuthUserLabel) + Me.BasedPanel.Controls.Add(Me.AuthStateLabel) + Me.BasedPanel.Controls.Add(Me.Label4) + Me.BasedPanel.Controls.Add(Me.AuthorizeButton) + Me.BasedPanel.Controls.Add(Me.Label1) + Me.BasedPanel.Controls.Add(Me.Label2) + Me.BasedPanel.Controls.Add(Me.Username) + Me.BasedPanel.Controls.Add(Me.Password) + resources.ApplyResources(Me.BasedPanel, "BasedPanel") + Me.BasedPanel.Name = "BasedPanel" + ' + 'AuthBasicRadio + ' + resources.ApplyResources(Me.AuthBasicRadio, "AuthBasicRadio") + Me.AuthBasicRadio.Name = "AuthBasicRadio" + Me.AuthBasicRadio.UseVisualStyleBackColor = True + ' + 'AuthOAuthRadio + ' + resources.ApplyResources(Me.AuthOAuthRadio, "AuthOAuthRadio") + Me.AuthOAuthRadio.Checked = True + Me.AuthOAuthRadio.Name = "AuthOAuthRadio" + Me.AuthOAuthRadio.TabStop = True + Me.AuthOAuthRadio.UseVisualStyleBackColor = True + ' + 'Label6 + ' + resources.ApplyResources(Me.Label6, "Label6") + Me.Label6.Name = "Label6" + ' + 'AuthClearButton + ' + resources.ApplyResources(Me.AuthClearButton, "AuthClearButton") + Me.AuthClearButton.Name = "AuthClearButton" + Me.AuthClearButton.UseVisualStyleBackColor = True + ' + 'AuthUserLabel + ' + Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") + Me.AuthUserLabel.Name = "AuthUserLabel" + ' + 'AuthStateLabel + ' + Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") + Me.AuthStateLabel.Name = "AuthStateLabel" + ' + 'Label4 + ' + resources.ApplyResources(Me.Label4, "Label4") + Me.Label4.Name = "Label4" + ' + 'AuthorizeButton + ' + resources.ApplyResources(Me.AuthorizeButton, "AuthorizeButton") + Me.AuthorizeButton.Name = "AuthorizeButton" + Me.AuthorizeButton.UseVisualStyleBackColor = True + ' + 'Label1 + ' + resources.ApplyResources(Me.Label1, "Label1") + Me.Label1.Name = "Label1" + ' + 'Label2 + ' + resources.ApplyResources(Me.Label2, "Label2") + Me.Label2.Name = "Label2" + ' + 'Username + ' + resources.ApplyResources(Me.Username, "Username") + Me.Username.Name = "Username" + ' + 'Password + ' + resources.ApplyResources(Me.Password, "Password") + Me.Password.Name = "Password" + Me.Password.UseSystemPasswordChar = True + ' + 'ProxyPanel + ' + Me.ProxyPanel.Controls.Add(Me.Label55) + Me.ProxyPanel.Controls.Add(Me.TextProxyPassword) + Me.ProxyPanel.Controls.Add(Me.RadioProxyNone) + Me.ProxyPanel.Controls.Add(Me.LabelProxyPassword) + Me.ProxyPanel.Controls.Add(Me.RadioProxyIE) + Me.ProxyPanel.Controls.Add(Me.TextProxyUser) + Me.ProxyPanel.Controls.Add(Me.RadioProxySpecified) + Me.ProxyPanel.Controls.Add(Me.LabelProxyUser) + Me.ProxyPanel.Controls.Add(Me.LabelProxyAddress) + Me.ProxyPanel.Controls.Add(Me.TextProxyPort) + Me.ProxyPanel.Controls.Add(Me.TextProxyAddress) + Me.ProxyPanel.Controls.Add(Me.LabelProxyPort) + resources.ApplyResources(Me.ProxyPanel, "ProxyPanel") + Me.ProxyPanel.Name = "ProxyPanel" + ' + 'Label55 + ' + resources.ApplyResources(Me.Label55, "Label55") + Me.Label55.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label55.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label55.Name = "Label55" + ' + 'TextProxyPassword + ' + resources.ApplyResources(Me.TextProxyPassword, "TextProxyPassword") + Me.TextProxyPassword.Name = "TextProxyPassword" + Me.TextProxyPassword.UseSystemPasswordChar = True + ' + 'RadioProxyNone + ' + resources.ApplyResources(Me.RadioProxyNone, "RadioProxyNone") + Me.RadioProxyNone.Name = "RadioProxyNone" + Me.RadioProxyNone.UseVisualStyleBackColor = True + ' + 'LabelProxyPassword + ' + resources.ApplyResources(Me.LabelProxyPassword, "LabelProxyPassword") + Me.LabelProxyPassword.Name = "LabelProxyPassword" + ' + 'RadioProxyIE + ' + resources.ApplyResources(Me.RadioProxyIE, "RadioProxyIE") + Me.RadioProxyIE.Checked = True + Me.RadioProxyIE.Name = "RadioProxyIE" + Me.RadioProxyIE.TabStop = True + Me.RadioProxyIE.UseVisualStyleBackColor = True + ' + 'TextProxyUser + ' + resources.ApplyResources(Me.TextProxyUser, "TextProxyUser") + Me.TextProxyUser.Name = "TextProxyUser" + ' + 'RadioProxySpecified + ' + resources.ApplyResources(Me.RadioProxySpecified, "RadioProxySpecified") + Me.RadioProxySpecified.Name = "RadioProxySpecified" + Me.RadioProxySpecified.UseVisualStyleBackColor = True + ' + 'LabelProxyUser + ' + resources.ApplyResources(Me.LabelProxyUser, "LabelProxyUser") + Me.LabelProxyUser.Name = "LabelProxyUser" + ' + 'LabelProxyAddress + ' + resources.ApplyResources(Me.LabelProxyAddress, "LabelProxyAddress") + Me.LabelProxyAddress.Name = "LabelProxyAddress" + ' + 'TextProxyPort + ' + resources.ApplyResources(Me.TextProxyPort, "TextProxyPort") + Me.TextProxyPort.Name = "TextProxyPort" + ' + 'TextProxyAddress + ' + resources.ApplyResources(Me.TextProxyAddress, "TextProxyAddress") + Me.TextProxyAddress.Name = "TextProxyAddress" + ' + 'LabelProxyPort + ' + resources.ApplyResources(Me.LabelProxyPort, "LabelProxyPort") + Me.LabelProxyPort.Name = "LabelProxyPort" + ' + 'ConnectionPanel + ' + Me.ConnectionPanel.Controls.Add(Me.CheckNicoms) + Me.ConnectionPanel.Controls.Add(Me.Label60) + Me.ConnectionPanel.Controls.Add(Me.ComboBoxOutputzUrlmode) + Me.ConnectionPanel.Controls.Add(Me.Label59) + Me.ConnectionPanel.Controls.Add(Me.TextBoxOutputzKey) + Me.ConnectionPanel.Controls.Add(Me.CheckOutputz) + Me.ConnectionPanel.Controls.Add(Me.CheckEnableBasicAuth) + Me.ConnectionPanel.Controls.Add(Me.TwitterSearchAPIText) + Me.ConnectionPanel.Controls.Add(Me.Label31) + Me.ConnectionPanel.Controls.Add(Me.TwitterAPIText) + Me.ConnectionPanel.Controls.Add(Me.Label8) + Me.ConnectionPanel.Controls.Add(Me.CheckUseSsl) + Me.ConnectionPanel.Controls.Add(Me.Label64) + Me.ConnectionPanel.Controls.Add(Me.ConnectionTimeOut) + Me.ConnectionPanel.Controls.Add(Me.Label63) + resources.ApplyResources(Me.ConnectionPanel, "ConnectionPanel") + Me.ConnectionPanel.Name = "ConnectionPanel" + ' + 'CheckNicoms + ' + resources.ApplyResources(Me.CheckNicoms, "CheckNicoms") + Me.CheckNicoms.Name = "CheckNicoms" + Me.CheckNicoms.UseVisualStyleBackColor = True + ' + 'Label60 + ' + resources.ApplyResources(Me.Label60, "Label60") + Me.Label60.Name = "Label60" + ' + 'ComboBoxOutputzUrlmode + ' + Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboBoxOutputzUrlmode.FormattingEnabled = True + Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {resources.GetString("ComboBoxOutputzUrlmode.Items"), resources.GetString("ComboBoxOutputzUrlmode.Items1")}) + resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") + Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" + ' + 'Label59 + ' + resources.ApplyResources(Me.Label59, "Label59") + Me.Label59.Name = "Label59" + ' + 'TextBoxOutputzKey + ' + resources.ApplyResources(Me.TextBoxOutputzKey, "TextBoxOutputzKey") + Me.TextBoxOutputzKey.Name = "TextBoxOutputzKey" + ' + 'CheckOutputz + ' + resources.ApplyResources(Me.CheckOutputz, "CheckOutputz") + Me.CheckOutputz.Name = "CheckOutputz" + Me.CheckOutputz.UseVisualStyleBackColor = True + ' + 'CheckEnableBasicAuth + ' + resources.ApplyResources(Me.CheckEnableBasicAuth, "CheckEnableBasicAuth") + Me.CheckEnableBasicAuth.Name = "CheckEnableBasicAuth" + Me.CheckEnableBasicAuth.UseVisualStyleBackColor = True + ' + 'TwitterSearchAPIText + ' + resources.ApplyResources(Me.TwitterSearchAPIText, "TwitterSearchAPIText") + Me.TwitterSearchAPIText.Name = "TwitterSearchAPIText" + ' + 'Label31 + ' + resources.ApplyResources(Me.Label31, "Label31") + Me.Label31.Name = "Label31" + ' + 'TwitterAPIText + ' + resources.ApplyResources(Me.TwitterAPIText, "TwitterAPIText") + Me.TwitterAPIText.Name = "TwitterAPIText" + ' + 'Label8 + ' + resources.ApplyResources(Me.Label8, "Label8") + Me.Label8.Name = "Label8" + ' + 'CheckUseSsl + ' + resources.ApplyResources(Me.CheckUseSsl, "CheckUseSsl") + Me.CheckUseSsl.Name = "CheckUseSsl" + Me.CheckUseSsl.UseVisualStyleBackColor = True + ' + 'Label64 + ' + resources.ApplyResources(Me.Label64, "Label64") + Me.Label64.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label64.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label64.Name = "Label64" + ' + 'ConnectionTimeOut + ' + resources.ApplyResources(Me.ConnectionTimeOut, "ConnectionTimeOut") + Me.ConnectionTimeOut.Name = "ConnectionTimeOut" + ' + 'Label63 + ' + resources.ApplyResources(Me.Label63, "Label63") + Me.Label63.Name = "Label63" + ' + 'UserStreamPanel + ' + Me.UserStreamPanel.Controls.Add(Me.UserstreamPeriod) + Me.UserStreamPanel.Controls.Add(Me.StartupUserstreamCheck) + Me.UserStreamPanel.Controls.Add(Me.Label83) + resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") + Me.UserStreamPanel.Name = "UserStreamPanel" + ' + 'UserstreamPeriod + ' + resources.ApplyResources(Me.UserstreamPeriod, "UserstreamPeriod") + Me.UserstreamPeriod.Name = "UserstreamPeriod" + ' + 'StartupUserstreamCheck + ' + resources.ApplyResources(Me.StartupUserstreamCheck, "StartupUserstreamCheck") + Me.StartupUserstreamCheck.Name = "StartupUserstreamCheck" + Me.StartupUserstreamCheck.UseVisualStyleBackColor = True + ' + 'Label83 + ' + resources.ApplyResources(Me.Label83, "Label83") + Me.Label83.Name = "Label83" + ' 'StartupPanel ' Me.StartupPanel.BackColor = System.Drawing.SystemColors.Window @@ -325,30 +809,100 @@ Me.chkGetFav.Name = "chkGetFav" Me.chkGetFav.UseVisualStyleBackColor = True ' - 'UserStreamPanel + 'TweetPrvPanel ' - Me.UserStreamPanel.Controls.Add(Me.UserstreamPeriod) - Me.UserStreamPanel.Controls.Add(Me.StartupUserstreamCheck) - Me.UserStreamPanel.Controls.Add(Me.Label83) - resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") - Me.UserStreamPanel.Name = "UserStreamPanel" + Me.TweetPrvPanel.Controls.Add(Me.Label47) + Me.TweetPrvPanel.Controls.Add(Me.LabelDateTimeFormatApplied) + Me.TweetPrvPanel.Controls.Add(Me.Label62) + Me.TweetPrvPanel.Controls.Add(Me.CmbDateTimeFormat) + Me.TweetPrvPanel.Controls.Add(Me.Label23) + Me.TweetPrvPanel.Controls.Add(Me.Label11) + Me.TweetPrvPanel.Controls.Add(Me.IconSize) + Me.TweetPrvPanel.Controls.Add(Me.TextBox3) + Me.TweetPrvPanel.Controls.Add(Me.CheckSortOrderLock) + Me.TweetPrvPanel.Controls.Add(Me.CheckShowGrid) + Me.TweetPrvPanel.Controls.Add(Me.chkReadOwnPost) + Me.TweetPrvPanel.Controls.Add(Me.chkUnreadStyle) + Me.TweetPrvPanel.Controls.Add(Me.OneWayLv) + resources.ApplyResources(Me.TweetPrvPanel, "TweetPrvPanel") + Me.TweetPrvPanel.Name = "TweetPrvPanel" ' - 'UserstreamPeriod + 'Label47 ' - resources.ApplyResources(Me.UserstreamPeriod, "UserstreamPeriod") - Me.UserstreamPeriod.Name = "UserstreamPeriod" + resources.ApplyResources(Me.Label47, "Label47") + Me.Label47.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label47.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label47.Name = "Label47" ' - 'StartupUserstreamCheck + 'LabelDateTimeFormatApplied ' - resources.ApplyResources(Me.StartupUserstreamCheck, "StartupUserstreamCheck") - Me.StartupUserstreamCheck.Name = "StartupUserstreamCheck" - Me.StartupUserstreamCheck.UseVisualStyleBackColor = True + resources.ApplyResources(Me.LabelDateTimeFormatApplied, "LabelDateTimeFormatApplied") + Me.LabelDateTimeFormatApplied.Name = "LabelDateTimeFormatApplied" ' - 'Label83 + 'Label62 ' - resources.ApplyResources(Me.Label83, "Label83") - Me.Label83.Name = "Label83" + resources.ApplyResources(Me.Label62, "Label62") + Me.Label62.Name = "Label62" ' + 'CmbDateTimeFormat + ' + resources.ApplyResources(Me.CmbDateTimeFormat, "CmbDateTimeFormat") + Me.CmbDateTimeFormat.Items.AddRange(New Object() {resources.GetString("CmbDateTimeFormat.Items"), resources.GetString("CmbDateTimeFormat.Items1"), resources.GetString("CmbDateTimeFormat.Items2"), resources.GetString("CmbDateTimeFormat.Items3"), resources.GetString("CmbDateTimeFormat.Items4"), resources.GetString("CmbDateTimeFormat.Items5"), resources.GetString("CmbDateTimeFormat.Items6"), resources.GetString("CmbDateTimeFormat.Items7"), resources.GetString("CmbDateTimeFormat.Items8"), resources.GetString("CmbDateTimeFormat.Items9"), resources.GetString("CmbDateTimeFormat.Items10")}) + Me.CmbDateTimeFormat.Name = "CmbDateTimeFormat" + ' + 'Label23 + ' + resources.ApplyResources(Me.Label23, "Label23") + Me.Label23.Name = "Label23" + ' + 'Label11 + ' + resources.ApplyResources(Me.Label11, "Label11") + Me.Label11.Name = "Label11" + ' + 'IconSize + ' + Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.IconSize.FormattingEnabled = True + Me.IconSize.Items.AddRange(New Object() {resources.GetString("IconSize.Items"), resources.GetString("IconSize.Items1"), resources.GetString("IconSize.Items2"), resources.GetString("IconSize.Items3"), resources.GetString("IconSize.Items4")}) + resources.ApplyResources(Me.IconSize, "IconSize") + Me.IconSize.Name = "IconSize" + ' + 'TextBox3 + ' + resources.ApplyResources(Me.TextBox3, "TextBox3") + Me.TextBox3.Name = "TextBox3" + ' + 'CheckSortOrderLock + ' + resources.ApplyResources(Me.CheckSortOrderLock, "CheckSortOrderLock") + Me.CheckSortOrderLock.Name = "CheckSortOrderLock" + Me.CheckSortOrderLock.UseVisualStyleBackColor = True + ' + 'CheckShowGrid + ' + resources.ApplyResources(Me.CheckShowGrid, "CheckShowGrid") + Me.CheckShowGrid.Name = "CheckShowGrid" + Me.CheckShowGrid.UseVisualStyleBackColor = True + ' + 'chkReadOwnPost + ' + resources.ApplyResources(Me.chkReadOwnPost, "chkReadOwnPost") + Me.chkReadOwnPost.Name = "chkReadOwnPost" + Me.chkReadOwnPost.UseVisualStyleBackColor = True + ' + 'chkUnreadStyle + ' + resources.ApplyResources(Me.chkUnreadStyle, "chkUnreadStyle") + Me.chkUnreadStyle.Name = "chkUnreadStyle" + Me.chkUnreadStyle.UseVisualStyleBackColor = True + ' + 'OneWayLv + ' + resources.ApplyResources(Me.OneWayLv, "OneWayLv") + Me.OneWayLv.Name = "OneWayLv" + Me.OneWayLv.UseVisualStyleBackColor = True + ' 'ActionPanel ' Me.ActionPanel.BackColor = System.Drawing.SystemColors.Window @@ -502,106 +1056,6 @@ Me.CheckReadOldPosts.Name = "CheckReadOldPosts" Me.CheckReadOldPosts.UseVisualStyleBackColor = True ' - 'TweetActPanel - ' - Me.TweetActPanel.BackColor = System.Drawing.SystemColors.Window - Me.TweetActPanel.Controls.Add(Me.TextBitlyPw) - Me.TweetActPanel.Controls.Add(Me.ComboBoxPostKeySelect) - Me.TweetActPanel.Controls.Add(Me.Label27) - Me.TweetActPanel.Controls.Add(Me.CheckRetweetNoConfirm) - Me.TweetActPanel.Controls.Add(Me.TextBitlyId) - Me.TweetActPanel.Controls.Add(Me.Label12) - Me.TweetActPanel.Controls.Add(Me.Label77) - Me.TweetActPanel.Controls.Add(Me.CheckUseRecommendStatus) - Me.TweetActPanel.Controls.Add(Me.Label76) - Me.TweetActPanel.Controls.Add(Me.StatusText) - Me.TweetActPanel.Controls.Add(Me.ComboBoxAutoShortUrlFirst) - Me.TweetActPanel.Controls.Add(Me.Label71) - Me.TweetActPanel.Controls.Add(Me.CheckTinyURL) - Me.TweetActPanel.Controls.Add(Me.CheckAutoConvertUrl) - resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") - Me.TweetActPanel.Name = "TweetActPanel" - ' - 'TextBitlyPw - ' - resources.ApplyResources(Me.TextBitlyPw, "TextBitlyPw") - Me.TextBitlyPw.Name = "TextBitlyPw" - ' - 'ComboBoxPostKeySelect - ' - Me.ComboBoxPostKeySelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxPostKeySelect.FormattingEnabled = True - Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {resources.GetString("ComboBoxPostKeySelect.Items"), resources.GetString("ComboBoxPostKeySelect.Items1"), resources.GetString("ComboBoxPostKeySelect.Items2")}) - resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") - Me.ComboBoxPostKeySelect.Name = "ComboBoxPostKeySelect" - ' - 'Label27 - ' - resources.ApplyResources(Me.Label27, "Label27") - Me.Label27.Name = "Label27" - ' - 'CheckRetweetNoConfirm - ' - resources.ApplyResources(Me.CheckRetweetNoConfirm, "CheckRetweetNoConfirm") - Me.CheckRetweetNoConfirm.Name = "CheckRetweetNoConfirm" - Me.CheckRetweetNoConfirm.UseVisualStyleBackColor = True - ' - 'TextBitlyId - ' - resources.ApplyResources(Me.TextBitlyId, "TextBitlyId") - Me.TextBitlyId.Name = "TextBitlyId" - ' - 'Label12 - ' - resources.ApplyResources(Me.Label12, "Label12") - Me.Label12.Name = "Label12" - ' - 'Label77 - ' - resources.ApplyResources(Me.Label77, "Label77") - Me.Label77.Name = "Label77" - ' - 'CheckUseRecommendStatus - ' - resources.ApplyResources(Me.CheckUseRecommendStatus, "CheckUseRecommendStatus") - Me.CheckUseRecommendStatus.Name = "CheckUseRecommendStatus" - Me.CheckUseRecommendStatus.UseVisualStyleBackColor = True - ' - 'Label76 - ' - resources.ApplyResources(Me.Label76, "Label76") - Me.Label76.Name = "Label76" - ' - 'StatusText - ' - resources.ApplyResources(Me.StatusText, "StatusText") - Me.StatusText.Name = "StatusText" - ' - 'ComboBoxAutoShortUrlFirst - ' - Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True - Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4")}) - resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") - Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" - ' - 'Label71 - ' - resources.ApplyResources(Me.Label71, "Label71") - Me.Label71.Name = "Label71" - ' - 'CheckTinyURL - ' - resources.ApplyResources(Me.CheckTinyURL, "CheckTinyURL") - Me.CheckTinyURL.Name = "CheckTinyURL" - Me.CheckTinyURL.UseVisualStyleBackColor = True - ' - 'CheckAutoConvertUrl - ' - resources.ApplyResources(Me.CheckAutoConvertUrl, "CheckAutoConvertUrl") - Me.CheckAutoConvertUrl.Name = "CheckAutoConvertUrl" - Me.CheckAutoConvertUrl.UseVisualStyleBackColor = True - ' 'PreviewPanel ' Me.PreviewPanel.Controls.Add(Me.ReplyIconStateCombo) @@ -731,100 +1185,106 @@ Me.CheckBox3.Name = "CheckBox3" Me.CheckBox3.UseVisualStyleBackColor = True ' - 'TweetPrvPanel + 'TweetActPanel ' - Me.TweetPrvPanel.Controls.Add(Me.Label47) - Me.TweetPrvPanel.Controls.Add(Me.LabelDateTimeFormatApplied) - Me.TweetPrvPanel.Controls.Add(Me.Label62) - Me.TweetPrvPanel.Controls.Add(Me.CmbDateTimeFormat) - Me.TweetPrvPanel.Controls.Add(Me.Label23) - Me.TweetPrvPanel.Controls.Add(Me.Label11) - Me.TweetPrvPanel.Controls.Add(Me.IconSize) - Me.TweetPrvPanel.Controls.Add(Me.TextBox3) - Me.TweetPrvPanel.Controls.Add(Me.CheckSortOrderLock) - Me.TweetPrvPanel.Controls.Add(Me.CheckShowGrid) - Me.TweetPrvPanel.Controls.Add(Me.chkReadOwnPost) - Me.TweetPrvPanel.Controls.Add(Me.chkUnreadStyle) - Me.TweetPrvPanel.Controls.Add(Me.OneWayLv) - resources.ApplyResources(Me.TweetPrvPanel, "TweetPrvPanel") - Me.TweetPrvPanel.Name = "TweetPrvPanel" + Me.TweetActPanel.BackColor = System.Drawing.SystemColors.Window + Me.TweetActPanel.Controls.Add(Me.TextBitlyPw) + Me.TweetActPanel.Controls.Add(Me.ComboBoxPostKeySelect) + Me.TweetActPanel.Controls.Add(Me.Label27) + Me.TweetActPanel.Controls.Add(Me.CheckRetweetNoConfirm) + Me.TweetActPanel.Controls.Add(Me.TextBitlyId) + Me.TweetActPanel.Controls.Add(Me.Label12) + Me.TweetActPanel.Controls.Add(Me.Label77) + Me.TweetActPanel.Controls.Add(Me.CheckUseRecommendStatus) + Me.TweetActPanel.Controls.Add(Me.Label76) + Me.TweetActPanel.Controls.Add(Me.StatusText) + Me.TweetActPanel.Controls.Add(Me.ComboBoxAutoShortUrlFirst) + Me.TweetActPanel.Controls.Add(Me.Label71) + Me.TweetActPanel.Controls.Add(Me.CheckTinyURL) + Me.TweetActPanel.Controls.Add(Me.CheckAutoConvertUrl) + resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") + Me.TweetActPanel.Name = "TweetActPanel" ' - 'Label47 + 'TextBitlyPw ' - resources.ApplyResources(Me.Label47, "Label47") - Me.Label47.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label47.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label47.Name = "Label47" + resources.ApplyResources(Me.TextBitlyPw, "TextBitlyPw") + Me.TextBitlyPw.Name = "TextBitlyPw" ' - 'LabelDateTimeFormatApplied + 'ComboBoxPostKeySelect ' - resources.ApplyResources(Me.LabelDateTimeFormatApplied, "LabelDateTimeFormatApplied") - Me.LabelDateTimeFormatApplied.Name = "LabelDateTimeFormatApplied" + Me.ComboBoxPostKeySelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboBoxPostKeySelect.FormattingEnabled = True + Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {resources.GetString("ComboBoxPostKeySelect.Items"), resources.GetString("ComboBoxPostKeySelect.Items1"), resources.GetString("ComboBoxPostKeySelect.Items2")}) + resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") + Me.ComboBoxPostKeySelect.Name = "ComboBoxPostKeySelect" ' - 'Label62 + 'Label27 ' - resources.ApplyResources(Me.Label62, "Label62") - Me.Label62.Name = "Label62" + resources.ApplyResources(Me.Label27, "Label27") + Me.Label27.Name = "Label27" ' - 'CmbDateTimeFormat + 'CheckRetweetNoConfirm ' - resources.ApplyResources(Me.CmbDateTimeFormat, "CmbDateTimeFormat") - Me.CmbDateTimeFormat.Items.AddRange(New Object() {resources.GetString("CmbDateTimeFormat.Items"), resources.GetString("CmbDateTimeFormat.Items1"), resources.GetString("CmbDateTimeFormat.Items2"), resources.GetString("CmbDateTimeFormat.Items3"), resources.GetString("CmbDateTimeFormat.Items4"), resources.GetString("CmbDateTimeFormat.Items5"), resources.GetString("CmbDateTimeFormat.Items6"), resources.GetString("CmbDateTimeFormat.Items7"), resources.GetString("CmbDateTimeFormat.Items8"), resources.GetString("CmbDateTimeFormat.Items9"), resources.GetString("CmbDateTimeFormat.Items10")}) - Me.CmbDateTimeFormat.Name = "CmbDateTimeFormat" + resources.ApplyResources(Me.CheckRetweetNoConfirm, "CheckRetweetNoConfirm") + Me.CheckRetweetNoConfirm.Name = "CheckRetweetNoConfirm" + Me.CheckRetweetNoConfirm.UseVisualStyleBackColor = True ' - 'Label23 + 'TextBitlyId ' - resources.ApplyResources(Me.Label23, "Label23") - Me.Label23.Name = "Label23" + resources.ApplyResources(Me.TextBitlyId, "TextBitlyId") + Me.TextBitlyId.Name = "TextBitlyId" ' - 'Label11 + 'Label12 ' - resources.ApplyResources(Me.Label11, "Label11") - Me.Label11.Name = "Label11" + resources.ApplyResources(Me.Label12, "Label12") + Me.Label12.Name = "Label12" ' - 'IconSize + 'Label77 ' - Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.IconSize.FormattingEnabled = True - Me.IconSize.Items.AddRange(New Object() {resources.GetString("IconSize.Items"), resources.GetString("IconSize.Items1"), resources.GetString("IconSize.Items2"), resources.GetString("IconSize.Items3"), resources.GetString("IconSize.Items4")}) - resources.ApplyResources(Me.IconSize, "IconSize") - Me.IconSize.Name = "IconSize" + resources.ApplyResources(Me.Label77, "Label77") + Me.Label77.Name = "Label77" ' - 'TextBox3 + 'CheckUseRecommendStatus ' - resources.ApplyResources(Me.TextBox3, "TextBox3") - Me.TextBox3.Name = "TextBox3" + resources.ApplyResources(Me.CheckUseRecommendStatus, "CheckUseRecommendStatus") + Me.CheckUseRecommendStatus.Name = "CheckUseRecommendStatus" + Me.CheckUseRecommendStatus.UseVisualStyleBackColor = True ' - 'CheckSortOrderLock + 'Label76 ' - resources.ApplyResources(Me.CheckSortOrderLock, "CheckSortOrderLock") - Me.CheckSortOrderLock.Name = "CheckSortOrderLock" - Me.CheckSortOrderLock.UseVisualStyleBackColor = True + resources.ApplyResources(Me.Label76, "Label76") + Me.Label76.Name = "Label76" ' - 'CheckShowGrid + 'StatusText ' - resources.ApplyResources(Me.CheckShowGrid, "CheckShowGrid") - Me.CheckShowGrid.Name = "CheckShowGrid" - Me.CheckShowGrid.UseVisualStyleBackColor = True + resources.ApplyResources(Me.StatusText, "StatusText") + Me.StatusText.Name = "StatusText" ' - 'chkReadOwnPost + 'ComboBoxAutoShortUrlFirst ' - resources.ApplyResources(Me.chkReadOwnPost, "chkReadOwnPost") - Me.chkReadOwnPost.Name = "chkReadOwnPost" - Me.chkReadOwnPost.UseVisualStyleBackColor = True + Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True + Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4")}) + resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") + Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" ' - 'chkUnreadStyle + 'Label71 ' - resources.ApplyResources(Me.chkUnreadStyle, "chkUnreadStyle") - Me.chkUnreadStyle.Name = "chkUnreadStyle" - Me.chkUnreadStyle.UseVisualStyleBackColor = True + resources.ApplyResources(Me.Label71, "Label71") + Me.Label71.Name = "Label71" ' - 'OneWayLv + 'CheckTinyURL ' - resources.ApplyResources(Me.OneWayLv, "OneWayLv") - Me.OneWayLv.Name = "OneWayLv" - Me.OneWayLv.UseVisualStyleBackColor = True + resources.ApplyResources(Me.CheckTinyURL, "CheckTinyURL") + Me.CheckTinyURL.Name = "CheckTinyURL" + Me.CheckTinyURL.UseVisualStyleBackColor = True ' + 'CheckAutoConvertUrl + ' + resources.ApplyResources(Me.CheckAutoConvertUrl, "CheckAutoConvertUrl") + Me.CheckAutoConvertUrl.Name = "CheckAutoConvertUrl" + Me.CheckAutoConvertUrl.UseVisualStyleBackColor = True + ' 'FontPanel ' Me.FontPanel.Controls.Add(Me.GroupBox1) @@ -1012,6 +1472,15 @@ ' 'GroupBox5 ' + Me.GroupBox5.Controls.Add(Me.Label65) + Me.GroupBox5.Controls.Add(Me.Label52) + Me.GroupBox5.Controls.Add(Me.Label49) + Me.GroupBox5.Controls.Add(Me.Label9) + Me.GroupBox5.Controls.Add(Me.Label14) + Me.GroupBox5.Controls.Add(Me.Label16) + Me.GroupBox5.Controls.Add(Me.Label32) + Me.GroupBox5.Controls.Add(Me.Label34) + Me.GroupBox5.Controls.Add(Me.Label36) Me.GroupBox5.Controls.Add(Me.btnInputFont) Me.GroupBox5.Controls.Add(Me.btnInputBackcolor) Me.GroupBox5.Controls.Add(Me.btnAtTo) @@ -1031,15 +1500,6 @@ Me.GroupBox5.Controls.Add(Me.lblAtSelf) Me.GroupBox5.Controls.Add(Me.lblSelf) Me.GroupBox5.Controls.Add(Me.ButtonBackToDefaultFontColor2) - Me.GroupBox5.Controls.Add(Me.Label89) - Me.GroupBox5.Controls.Add(Me.Label91) - Me.GroupBox5.Controls.Add(Me.Label95) - Me.GroupBox5.Controls.Add(Me.Label99) - Me.GroupBox5.Controls.Add(Me.Label101) - Me.GroupBox5.Controls.Add(Me.Label103) - Me.GroupBox5.Controls.Add(Me.Label105) - Me.GroupBox5.Controls.Add(Me.Label107) - Me.GroupBox5.Controls.Add(Me.Label109) resources.ApplyResources(Me.GroupBox5, "GroupBox5") Me.GroupBox5.Name = "GroupBox5" Me.GroupBox5.TabStop = False @@ -1158,526 +1618,66 @@ Me.ButtonBackToDefaultFontColor2.Name = "ButtonBackToDefaultFontColor2" Me.ButtonBackToDefaultFontColor2.UseVisualStyleBackColor = True ' - 'Label89 + 'Cancel ' - resources.ApplyResources(Me.Label89, "Label89") - Me.Label89.Name = "Label89" + Me.Cancel.CausesValidation = False + Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel + resources.ApplyResources(Me.Cancel, "Cancel") + Me.Cancel.Name = "Cancel" + Me.Cancel.UseVisualStyleBackColor = True ' - 'Label91 + 'Save ' - resources.ApplyResources(Me.Label91, "Label91") - Me.Label91.Name = "Label91" + Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK + resources.ApplyResources(Me.Save, "Save") + Me.Save.Name = "Save" + Me.Save.UseVisualStyleBackColor = True ' - 'Label95 + 'Label65 ' - resources.ApplyResources(Me.Label95, "Label95") - Me.Label95.Name = "Label95" + resources.ApplyResources(Me.Label65, "Label65") + Me.Label65.Name = "Label65" ' - 'Label99 + 'Label52 ' - resources.ApplyResources(Me.Label99, "Label99") - Me.Label99.Name = "Label99" + resources.ApplyResources(Me.Label52, "Label52") + Me.Label52.Name = "Label52" ' - 'Label101 + 'Label49 ' - resources.ApplyResources(Me.Label101, "Label101") - Me.Label101.Name = "Label101" + resources.ApplyResources(Me.Label49, "Label49") + Me.Label49.Name = "Label49" ' - 'Label103 + 'Label9 ' - resources.ApplyResources(Me.Label103, "Label103") - Me.Label103.Name = "Label103" + resources.ApplyResources(Me.Label9, "Label9") + Me.Label9.Name = "Label9" ' - 'Label105 + 'Label14 ' - resources.ApplyResources(Me.Label105, "Label105") - Me.Label105.Name = "Label105" + resources.ApplyResources(Me.Label14, "Label14") + Me.Label14.Name = "Label14" ' - 'Label107 + 'Label16 ' - resources.ApplyResources(Me.Label107, "Label107") - Me.Label107.Name = "Label107" + resources.ApplyResources(Me.Label16, "Label16") + Me.Label16.Name = "Label16" ' - 'Label109 + 'Label32 ' - resources.ApplyResources(Me.Label109, "Label109") - Me.Label109.Name = "Label109" + resources.ApplyResources(Me.Label32, "Label32") + Me.Label32.Name = "Label32" ' - 'ConnectionPanel + 'Label34 ' - Me.ConnectionPanel.Controls.Add(Me.CheckNicoms) - Me.ConnectionPanel.Controls.Add(Me.Label60) - Me.ConnectionPanel.Controls.Add(Me.ComboBoxOutputzUrlmode) - Me.ConnectionPanel.Controls.Add(Me.Label59) - Me.ConnectionPanel.Controls.Add(Me.TextBoxOutputzKey) - Me.ConnectionPanel.Controls.Add(Me.CheckOutputz) - Me.ConnectionPanel.Controls.Add(Me.CheckEnableBasicAuth) - Me.ConnectionPanel.Controls.Add(Me.TwitterSearchAPIText) - Me.ConnectionPanel.Controls.Add(Me.Label31) - Me.ConnectionPanel.Controls.Add(Me.TwitterAPIText) - Me.ConnectionPanel.Controls.Add(Me.Label8) - Me.ConnectionPanel.Controls.Add(Me.CheckUseSsl) - Me.ConnectionPanel.Controls.Add(Me.Label64) - Me.ConnectionPanel.Controls.Add(Me.ConnectionTimeOut) - Me.ConnectionPanel.Controls.Add(Me.Label63) - resources.ApplyResources(Me.ConnectionPanel, "ConnectionPanel") - Me.ConnectionPanel.Name = "ConnectionPanel" + resources.ApplyResources(Me.Label34, "Label34") + Me.Label34.Name = "Label34" ' - 'CheckNicoms + 'Label36 ' - resources.ApplyResources(Me.CheckNicoms, "CheckNicoms") - Me.CheckNicoms.Name = "CheckNicoms" - Me.CheckNicoms.UseVisualStyleBackColor = True + resources.ApplyResources(Me.Label36, "Label36") + Me.Label36.Name = "Label36" ' - 'Label60 - ' - resources.ApplyResources(Me.Label60, "Label60") - Me.Label60.Name = "Label60" - ' - 'ComboBoxOutputzUrlmode - ' - Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxOutputzUrlmode.FormattingEnabled = True - Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {resources.GetString("ComboBoxOutputzUrlmode.Items"), resources.GetString("ComboBoxOutputzUrlmode.Items1")}) - resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") - Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" - ' - 'Label59 - ' - resources.ApplyResources(Me.Label59, "Label59") - Me.Label59.Name = "Label59" - ' - 'TextBoxOutputzKey - ' - resources.ApplyResources(Me.TextBoxOutputzKey, "TextBoxOutputzKey") - Me.TextBoxOutputzKey.Name = "TextBoxOutputzKey" - ' - 'CheckOutputz - ' - resources.ApplyResources(Me.CheckOutputz, "CheckOutputz") - Me.CheckOutputz.Name = "CheckOutputz" - Me.CheckOutputz.UseVisualStyleBackColor = True - ' - 'CheckEnableBasicAuth - ' - resources.ApplyResources(Me.CheckEnableBasicAuth, "CheckEnableBasicAuth") - Me.CheckEnableBasicAuth.Name = "CheckEnableBasicAuth" - Me.CheckEnableBasicAuth.UseVisualStyleBackColor = True - ' - 'TwitterSearchAPIText - ' - resources.ApplyResources(Me.TwitterSearchAPIText, "TwitterSearchAPIText") - Me.TwitterSearchAPIText.Name = "TwitterSearchAPIText" - ' - 'Label31 - ' - resources.ApplyResources(Me.Label31, "Label31") - Me.Label31.Name = "Label31" - ' - 'TwitterAPIText - ' - resources.ApplyResources(Me.TwitterAPIText, "TwitterAPIText") - Me.TwitterAPIText.Name = "TwitterAPIText" - ' - 'Label8 - ' - resources.ApplyResources(Me.Label8, "Label8") - Me.Label8.Name = "Label8" - ' - 'CheckUseSsl - ' - resources.ApplyResources(Me.CheckUseSsl, "CheckUseSsl") - Me.CheckUseSsl.Name = "CheckUseSsl" - Me.CheckUseSsl.UseVisualStyleBackColor = True - ' - 'Label64 - ' - resources.ApplyResources(Me.Label64, "Label64") - Me.Label64.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label64.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label64.Name = "Label64" - ' - 'ConnectionTimeOut - ' - resources.ApplyResources(Me.ConnectionTimeOut, "ConnectionTimeOut") - Me.ConnectionTimeOut.Name = "ConnectionTimeOut" - ' - 'Label63 - ' - resources.ApplyResources(Me.Label63, "Label63") - Me.Label63.Name = "Label63" - ' - 'ProxyPanel - ' - Me.ProxyPanel.Controls.Add(Me.Label55) - Me.ProxyPanel.Controls.Add(Me.TextProxyPassword) - Me.ProxyPanel.Controls.Add(Me.RadioProxyNone) - Me.ProxyPanel.Controls.Add(Me.LabelProxyPassword) - Me.ProxyPanel.Controls.Add(Me.RadioProxyIE) - Me.ProxyPanel.Controls.Add(Me.TextProxyUser) - Me.ProxyPanel.Controls.Add(Me.RadioProxySpecified) - Me.ProxyPanel.Controls.Add(Me.LabelProxyUser) - Me.ProxyPanel.Controls.Add(Me.LabelProxyAddress) - Me.ProxyPanel.Controls.Add(Me.TextProxyPort) - Me.ProxyPanel.Controls.Add(Me.TextProxyAddress) - Me.ProxyPanel.Controls.Add(Me.LabelProxyPort) - resources.ApplyResources(Me.ProxyPanel, "ProxyPanel") - Me.ProxyPanel.Name = "ProxyPanel" - ' - 'Label55 - ' - resources.ApplyResources(Me.Label55, "Label55") - Me.Label55.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label55.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label55.Name = "Label55" - ' - 'TextProxyPassword - ' - resources.ApplyResources(Me.TextProxyPassword, "TextProxyPassword") - Me.TextProxyPassword.Name = "TextProxyPassword" - Me.TextProxyPassword.UseSystemPasswordChar = True - ' - 'RadioProxyNone - ' - resources.ApplyResources(Me.RadioProxyNone, "RadioProxyNone") - Me.RadioProxyNone.Name = "RadioProxyNone" - Me.RadioProxyNone.UseVisualStyleBackColor = True - ' - 'LabelProxyPassword - ' - resources.ApplyResources(Me.LabelProxyPassword, "LabelProxyPassword") - Me.LabelProxyPassword.Name = "LabelProxyPassword" - ' - 'RadioProxyIE - ' - resources.ApplyResources(Me.RadioProxyIE, "RadioProxyIE") - Me.RadioProxyIE.Checked = True - Me.RadioProxyIE.Name = "RadioProxyIE" - Me.RadioProxyIE.TabStop = True - Me.RadioProxyIE.UseVisualStyleBackColor = True - ' - 'TextProxyUser - ' - resources.ApplyResources(Me.TextProxyUser, "TextProxyUser") - Me.TextProxyUser.Name = "TextProxyUser" - ' - 'RadioProxySpecified - ' - resources.ApplyResources(Me.RadioProxySpecified, "RadioProxySpecified") - Me.RadioProxySpecified.Name = "RadioProxySpecified" - Me.RadioProxySpecified.UseVisualStyleBackColor = True - ' - 'LabelProxyUser - ' - resources.ApplyResources(Me.LabelProxyUser, "LabelProxyUser") - Me.LabelProxyUser.Name = "LabelProxyUser" - ' - 'LabelProxyAddress - ' - resources.ApplyResources(Me.LabelProxyAddress, "LabelProxyAddress") - Me.LabelProxyAddress.Name = "LabelProxyAddress" - ' - 'TextProxyPort - ' - resources.ApplyResources(Me.TextProxyPort, "TextProxyPort") - Me.TextProxyPort.Name = "TextProxyPort" - ' - 'TextProxyAddress - ' - resources.ApplyResources(Me.TextProxyAddress, "TextProxyAddress") - Me.TextProxyAddress.Name = "TextProxyAddress" - ' - 'LabelProxyPort - ' - resources.ApplyResources(Me.LabelProxyPort, "LabelProxyPort") - Me.LabelProxyPort.Name = "LabelProxyPort" - ' - 'BasedPanel - ' - Me.BasedPanel.BackColor = System.Drawing.SystemColors.Window - Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) - Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) - Me.BasedPanel.Controls.Add(Me.Label6) - Me.BasedPanel.Controls.Add(Me.AuthClearButton) - Me.BasedPanel.Controls.Add(Me.AuthUserLabel) - Me.BasedPanel.Controls.Add(Me.AuthStateLabel) - Me.BasedPanel.Controls.Add(Me.Label4) - Me.BasedPanel.Controls.Add(Me.AuthorizeButton) - Me.BasedPanel.Controls.Add(Me.Label1) - Me.BasedPanel.Controls.Add(Me.Label2) - Me.BasedPanel.Controls.Add(Me.Username) - Me.BasedPanel.Controls.Add(Me.Password) - resources.ApplyResources(Me.BasedPanel, "BasedPanel") - Me.BasedPanel.Name = "BasedPanel" - ' - 'AuthBasicRadio - ' - resources.ApplyResources(Me.AuthBasicRadio, "AuthBasicRadio") - Me.AuthBasicRadio.Name = "AuthBasicRadio" - Me.AuthBasicRadio.UseVisualStyleBackColor = True - ' - 'AuthOAuthRadio - ' - resources.ApplyResources(Me.AuthOAuthRadio, "AuthOAuthRadio") - Me.AuthOAuthRadio.Checked = True - Me.AuthOAuthRadio.Name = "AuthOAuthRadio" - Me.AuthOAuthRadio.TabStop = True - Me.AuthOAuthRadio.UseVisualStyleBackColor = True - ' - 'Label6 - ' - resources.ApplyResources(Me.Label6, "Label6") - Me.Label6.Name = "Label6" - ' - 'AuthClearButton - ' - resources.ApplyResources(Me.AuthClearButton, "AuthClearButton") - Me.AuthClearButton.Name = "AuthClearButton" - Me.AuthClearButton.UseVisualStyleBackColor = True - ' - 'AuthUserLabel - ' - Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") - Me.AuthUserLabel.Name = "AuthUserLabel" - ' - 'AuthStateLabel - ' - Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") - Me.AuthStateLabel.Name = "AuthStateLabel" - ' - 'Label4 - ' - resources.ApplyResources(Me.Label4, "Label4") - Me.Label4.Name = "Label4" - ' - 'AuthorizeButton - ' - resources.ApplyResources(Me.AuthorizeButton, "AuthorizeButton") - Me.AuthorizeButton.Name = "AuthorizeButton" - Me.AuthorizeButton.UseVisualStyleBackColor = True - ' - 'Label1 - ' - resources.ApplyResources(Me.Label1, "Label1") - Me.Label1.Name = "Label1" - ' - 'Label2 - ' - resources.ApplyResources(Me.Label2, "Label2") - Me.Label2.Name = "Label2" - ' - 'Username - ' - resources.ApplyResources(Me.Username, "Username") - Me.Username.Name = "Username" - ' - 'Password - ' - resources.ApplyResources(Me.Password, "Password") - Me.Password.Name = "Password" - Me.Password.UseSystemPasswordChar = True - ' - 'GetPeriodPanel - ' - Me.GetPeriodPanel.BackColor = System.Drawing.SystemColors.Window - Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) - Me.GetPeriodPanel.Controls.Add(Me.Label3) - Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) - Me.GetPeriodPanel.Controls.Add(Me.LabelPostAndGet) - Me.GetPeriodPanel.Controls.Add(Me.LabelApiUsing) - Me.GetPeriodPanel.Controls.Add(Me.Label33) - Me.GetPeriodPanel.Controls.Add(Me.ListsPeriod) - Me.GetPeriodPanel.Controls.Add(Me.Label7) - Me.GetPeriodPanel.Controls.Add(Me.PubSearchPeriod) - Me.GetPeriodPanel.Controls.Add(Me.Label69) - Me.GetPeriodPanel.Controls.Add(Me.ReplyPeriod) - Me.GetPeriodPanel.Controls.Add(Me.CheckPostAndGet) - Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) - Me.GetPeriodPanel.Controls.Add(Me.Label5) - Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) - resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") - Me.GetPeriodPanel.Name = "GetPeriodPanel" - ' - 'TimelinePeriod - ' - resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") - Me.TimelinePeriod.Name = "TimelinePeriod" - ' - 'Label3 - ' - resources.ApplyResources(Me.Label3, "Label3") - Me.Label3.Name = "Label3" - ' - 'ButtonApiCalc - ' - resources.ApplyResources(Me.ButtonApiCalc, "ButtonApiCalc") - Me.ButtonApiCalc.Name = "ButtonApiCalc" - Me.ButtonApiCalc.UseVisualStyleBackColor = True - ' - 'LabelPostAndGet - ' - resources.ApplyResources(Me.LabelPostAndGet, "LabelPostAndGet") - Me.LabelPostAndGet.Name = "LabelPostAndGet" - ' - 'LabelApiUsing - ' - resources.ApplyResources(Me.LabelApiUsing, "LabelApiUsing") - Me.LabelApiUsing.Name = "LabelApiUsing" - ' - 'Label33 - ' - resources.ApplyResources(Me.Label33, "Label33") - Me.Label33.Name = "Label33" - ' - 'ListsPeriod - ' - resources.ApplyResources(Me.ListsPeriod, "ListsPeriod") - Me.ListsPeriod.Name = "ListsPeriod" - ' - 'Label7 - ' - resources.ApplyResources(Me.Label7, "Label7") - Me.Label7.Name = "Label7" - ' - 'PubSearchPeriod - ' - resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") - Me.PubSearchPeriod.Name = "PubSearchPeriod" - ' - 'Label69 - ' - resources.ApplyResources(Me.Label69, "Label69") - Me.Label69.Name = "Label69" - ' - 'ReplyPeriod - ' - resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") - Me.ReplyPeriod.Name = "ReplyPeriod" - ' - 'CheckPostAndGet - ' - resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") - Me.CheckPostAndGet.Name = "CheckPostAndGet" - Me.CheckPostAndGet.UseVisualStyleBackColor = True - ' - 'CheckPeriodAdjust - ' - resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") - Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" - Me.CheckPeriodAdjust.UseVisualStyleBackColor = True - ' - 'Label5 - ' - resources.ApplyResources(Me.Label5, "Label5") - Me.Label5.Name = "Label5" - ' - 'DMPeriod - ' - resources.ApplyResources(Me.DMPeriod, "DMPeriod") - Me.DMPeriod.Name = "DMPeriod" - ' - 'GetCountPanel - ' - Me.GetCountPanel.BackColor = System.Drawing.SystemColors.Window - Me.GetCountPanel.Controls.Add(Me.Label30) - Me.GetCountPanel.Controls.Add(Me.Label28) - Me.GetCountPanel.Controls.Add(Me.Label19) - Me.GetCountPanel.Controls.Add(Me.FavoritesTextCountApi) - Me.GetCountPanel.Controls.Add(Me.SearchTextCountApi) - Me.GetCountPanel.Controls.Add(Me.Label66) - Me.GetCountPanel.Controls.Add(Me.FirstTextCountApi) - Me.GetCountPanel.Controls.Add(Me.GetMoreTextCountApi) - Me.GetCountPanel.Controls.Add(Me.Label53) - Me.GetCountPanel.Controls.Add(Me.UseChangeGetCount) - Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) - Me.GetCountPanel.Controls.Add(Me.Label67) - Me.GetCountPanel.Controls.Add(Me.TextCountApi) - resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") - Me.GetCountPanel.Name = "GetCountPanel" - ' - 'Label30 - ' - resources.ApplyResources(Me.Label30, "Label30") - Me.Label30.Name = "Label30" - ' - 'Label28 - ' - resources.ApplyResources(Me.Label28, "Label28") - Me.Label28.Name = "Label28" - ' - 'Label19 - ' - resources.ApplyResources(Me.Label19, "Label19") - Me.Label19.Name = "Label19" - ' - 'FavoritesTextCountApi - ' - resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") - Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" - ' - 'SearchTextCountApi - ' - resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") - Me.SearchTextCountApi.Name = "SearchTextCountApi" - ' - 'Label66 - ' - resources.ApplyResources(Me.Label66, "Label66") - Me.Label66.Name = "Label66" - ' - 'FirstTextCountApi - ' - resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") - Me.FirstTextCountApi.Name = "FirstTextCountApi" - ' - 'GetMoreTextCountApi - ' - resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") - Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" - ' - 'Label53 - ' - resources.ApplyResources(Me.Label53, "Label53") - Me.Label53.Name = "Label53" - ' - 'UseChangeGetCount - ' - resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") - Me.UseChangeGetCount.Name = "UseChangeGetCount" - Me.UseChangeGetCount.UseVisualStyleBackColor = True - ' - 'TextCountApiReply - ' - resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") - Me.TextCountApiReply.Name = "TextCountApiReply" - ' - 'Label67 - ' - resources.ApplyResources(Me.Label67, "Label67") - Me.Label67.Name = "Label67" - ' - 'TextCountApi - ' - resources.ApplyResources(Me.TextCountApi, "TextCountApi") - Me.TextCountApi.Name = "TextCountApi" - ' - 'Cancel - ' - Me.Cancel.CausesValidation = False - Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel - resources.ApplyResources(Me.Cancel, "Cancel") - Me.Cancel.Name = "Cancel" - Me.Cancel.UseVisualStyleBackColor = True - ' - 'Save - ' - Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK - resources.ApplyResources(Me.Save, "Save") - Me.Save.Name = "Save" - Me.Save.UseVisualStyleBackColor = True - ' 'AppendSettingDialog ' Me.AcceptButton = Me.Save @@ -1698,36 +1698,36 @@ Me.SplitContainer1.Panel2.ResumeLayout(False) CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit() Me.SplitContainer1.ResumeLayout(False) + Me.GetCountPanel.ResumeLayout(False) + Me.GetCountPanel.PerformLayout() + Me.GetPeriodPanel.ResumeLayout(False) + Me.GetPeriodPanel.PerformLayout() + Me.BasedPanel.ResumeLayout(False) + Me.BasedPanel.PerformLayout() + Me.ProxyPanel.ResumeLayout(False) + Me.ProxyPanel.PerformLayout() + Me.ConnectionPanel.ResumeLayout(False) + Me.ConnectionPanel.PerformLayout() + Me.UserStreamPanel.ResumeLayout(False) + Me.UserStreamPanel.PerformLayout() Me.StartupPanel.ResumeLayout(False) Me.StartupPanel.PerformLayout() - Me.UserStreamPanel.ResumeLayout(False) - Me.UserStreamPanel.PerformLayout() + Me.TweetPrvPanel.ResumeLayout(False) + Me.TweetPrvPanel.PerformLayout() Me.ActionPanel.ResumeLayout(False) Me.ActionPanel.PerformLayout() Me.GroupBox3.ResumeLayout(False) Me.GroupBox3.PerformLayout() + Me.PreviewPanel.ResumeLayout(False) + Me.PreviewPanel.PerformLayout() Me.TweetActPanel.ResumeLayout(False) Me.TweetActPanel.PerformLayout() - Me.PreviewPanel.ResumeLayout(False) - Me.PreviewPanel.PerformLayout() - Me.TweetPrvPanel.ResumeLayout(False) - Me.TweetPrvPanel.PerformLayout() Me.FontPanel.ResumeLayout(False) Me.GroupBox1.ResumeLayout(False) Me.GroupBox1.PerformLayout() Me.FontPanel2.ResumeLayout(False) Me.GroupBox5.ResumeLayout(False) Me.GroupBox5.PerformLayout() - Me.ConnectionPanel.ResumeLayout(False) - Me.ConnectionPanel.PerformLayout() - Me.ProxyPanel.ResumeLayout(False) - Me.ProxyPanel.PerformLayout() - Me.BasedPanel.ResumeLayout(False) - Me.BasedPanel.PerformLayout() - Me.GetPeriodPanel.ResumeLayout(False) - Me.GetPeriodPanel.PerformLayout() - Me.GetCountPanel.ResumeLayout(False) - Me.GetCountPanel.PerformLayout() Me.ResumeLayout(False) End Sub @@ -1895,15 +1895,6 @@ Friend WithEvents CheckOutputz As System.Windows.Forms.CheckBox Friend WithEvents GroupBox5 As System.Windows.Forms.GroupBox Friend WithEvents ButtonBackToDefaultFontColor2 As System.Windows.Forms.Button - Friend WithEvents Label89 As System.Windows.Forms.Label - Friend WithEvents Label91 As System.Windows.Forms.Label - Friend WithEvents Label95 As System.Windows.Forms.Label - Friend WithEvents Label99 As System.Windows.Forms.Label - Friend WithEvents Label101 As System.Windows.Forms.Label - Friend WithEvents Label103 As System.Windows.Forms.Label - Friend WithEvents Label105 As System.Windows.Forms.Label - Friend WithEvents Label107 As System.Windows.Forms.Label - Friend WithEvents Label109 As System.Windows.Forms.Label Friend WithEvents Cancel As System.Windows.Forms.Button Friend WithEvents Save As System.Windows.Forms.Button Friend WithEvents TextBitlyPw As System.Windows.Forms.TextBox @@ -1944,4 +1935,13 @@ Friend WithEvents UserstreamPeriod As System.Windows.Forms.TextBox Friend WithEvents StartupUserstreamCheck As System.Windows.Forms.CheckBox Friend WithEvents Label83 As System.Windows.Forms.Label + Friend WithEvents Label65 As System.Windows.Forms.Label + Friend WithEvents Label52 As System.Windows.Forms.Label + Friend WithEvents Label49 As System.Windows.Forms.Label + Friend WithEvents Label9 As System.Windows.Forms.Label + Friend WithEvents Label14 As System.Windows.Forms.Label + Friend WithEvents Label16 As System.Windows.Forms.Label + Friend WithEvents Label32 As System.Windows.Forms.Label + Friend WithEvents Label34 As System.Windows.Forms.Label + Friend WithEvents Label36 As System.Windows.Forms.Label End Class Added: branches/SettingDialog/Tween/AppendSettingDialog.en.resx =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.en.resx (rev 0) +++ branches/SettingDialog/Tween/AppendSettingDialog.en.resx 2010-12-19 08:14:38 UTC (rev 1224) @@ -0,0 +1,1008 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + 56, 12 + + + Username + + + 54, 12 + + + Password + + + Cancel + + + 170, 12 + + + Timeline Fetching Interval (sec.) + + + 144, 12 + + + DM Fetching Interval (sec.) + + + 135, 12 + + + First-time Reading Posts + + + 81, 16 + + + Make Read + + + 162, 12 + + + Icon size in List (16 in default) + + + 38, 12 + + + Footer + + + 58, 16 + + + Enable + + + 42, 12 + + + Sounds + + + Sounds will play when you enable this option and set sound file for each tabs. + + + 58, 16 + + + Enable + + + 145, 12 + + + Colorize One-way following + + + Fore... + + + 96, 22 + + + Back to Default + + + Fore... + + + 119, 12 + + + Details of Tweet(Link) + + + Font... + + + 97, 12 + + + Font of input field + + + Back... + + + 169, 12 + + + Backcolor of focused input field + + + Font&&Fore... + + + 76, 12 + + + Unread Tweet + + + Back... + + + 78, 12 + + + Replied Tweet + + + Back... + + + 110, 12 + + + Backcolor of Details + + + Back... + + + 90, 12 + + + Backcolor of list + + + Back... + + + 114, 12 + + + Replied User's Tweet + + + Back... + + + 137, 12 + + + Replies for Selected User + + + Back... + + + 120, 12 + + + Selected User's Tweet + + + Back... + + + 84, 12 + + + Replies for You + + + Back... + + + 89, 12 + + + Your Own Tweet + + + Font&&Fore... + + + 90, 12 + + + Details of Tweet + + + Fore... + + + 100, 12 + + + One-way following + + + Fore... + + + 53, 12 + + + Favorited + + + Font&&Fore... + + + 94, 12 + + + Font of tweet list + + + Font && Color + + + None + + + User ID + + + Nickname + + + 103, 12 + + + Username in popup + + + 188, 16 + + + Use Recommended [TWNvNNN] + + + 105, 12 + + + Date Format in List + + + 58, 16 + + + Enable + + + 139, 12 + + + Show Icon in Details Pane + + + 117, 12 + + + Tweet with Ctrl-Enter + + + None + + + 89, 12 + + + Manage Reading + + + 58, 16 + + + Enable + + + 136, 12 + + + Make Read when updated + + + 58, 16 + + + Enable + + + 136, 12 + + + Exit when Closed Window + + + 58, 16 + + + Enable + + + 118, 12 + + + Iconize when Minimize + + + 58, 16 + + + Enable + + + 88, 12 + + + Path to Browser + + + 58, 16 + + + Enable + + + 141, 12 + + + Show Username in Popups + + + 65, 12 + + + Title format + + + None + + + Program Version + + + Latest your post + + + unread @reply items + + + unread items + + + unread items(unread @reply items) + + + unread items/all items + + + Count of Status/Follow/Follower + + + 115, 12 + + + Apply after restarting + + + 117, 12 + + + Refresh Interval (sec) + + + 130, 12 + + + Auto connect in Starting + + + 58, 16 + + + Enable + + + Recalculation + + + 358, 12 + + + Because "Post && fetch" is enabled, the API for each post consumed. + + + 150, 12 + + + Lists Fetching Interval (sec) + + + 70, 12 + + + Auth method + + + Clear + + + 65, 12 + + + Auth status + + + Auth + + + 149, 12 + + + Public Search Interval (sec.) + + + 156, 12 + + + Reply Fetching Interval (sec.) + + + 88, 16 + + + Post && fetch + + + 226, 12 + + + Getting number of tweets/mentions in API + + + 131, 12 + + + Get User List in Starting + + + 58, 16 + + + Enable + + + 158, 12 + + + Check for Updates in Starting + + + 58, 16 + + + Enable + + + 150, 16 + + + Enable Auto-Adjustment + + + 106, 12 + + + Get favs in Starting + + + 58, 16 + + + Enable + + + Basic + + + 62, 16 + + + Disable + + + 89, 12 + + + Retweet confirm + + + 58, 16 + + + Enable + + + Hotkey + + + 11, 439 + + + 142, 12 + + + Use Input #tag supplement + + + 173, 438 + + + 58, 16 + + + Enable + + + 11, 421 + + + 139, 12 + + + Use Input @ID supplement + + + 173, 420 + + + 58, 16 + + + Enable + + + 149, 12 + + + Primary URLshorten service + + + 58, 16 + + + Enable + + + 103, 12 + + + Auto shorten URLs + + + + False + + + + NoControl + + + 382, 28 + + + Refetch tweets and verify whether marked favorites. This option causes traffic incleasement. + + + 138, 12 + + + Marking Favorites Strictly + + + 58, 16 + + + Enable + + + 58, 16 + + + Enable + + + 136, 12 + + + Resolve Shortening URLs + + + Open... + + + Behavior + + + 124, 12 + + + Disp Picture Thumbnail + + + 58, 16 + + + Enable + + + 58, 16 + + + Enable + + + 81, 12 + + + Always on Top + + + 101, 12 + + + Lock Sorting Order + + + 58, 16 + + + Enable + + + 57, 12 + + + Show Grid + + + 51, 16 + + + Show + + + 150, 12 + + + Font in Detail Pane(for AA) + + + 81, 16 + + + Monospace + + + 81, 12 + + + Read own post + + + 58, 16 + + + Enable + + + Don't notify + + + Change icon + + + Change icon&blink + + + 188, 12 + + + Tasktray icon with unread mentions + + + 130, 12 + + + Blink with new mentions + + + 90, 12 + + + Show icon in tab + + + 58, 16 + + + Enable + + + 51, 16 + + + Show + + + 148, 12 + + + Limit the condition of popup + + + 193, 16 + + + only at the minimization and icon + + + 162, 12 + + + Unread styles(Font&&Forecolor) + + + 58, 16 + + + Enable + + + View + + + Fonts & Colors + + + 241, 16 + + + Enable to select BASIC auth in 'Basic' tab + + + 130, 16 + + + Use HTTPS Protocol + + + 371, 12 + + + ※Adjust Connection timeout if the error of timeout happens frequently. + + + 130, 12 + + + Connection timeout(sec) + + + 320, 12 + + + Keep credential empty if the proxy server don't need to log in + + + 54, 12 + + + Pass&word + + + 56, 12 + + + &Username + + + 26, 12 + + + &Port + + + 62, 12 + + + Pro&xy Host + + + 80, 16 + + + Use Below: + + + 200, 16 + + + Refer Settings of Internet Explorer + + + 73, 16 + + + Don't Use + + + Proxy Server + + + Connection + + + 125, 12 + + + Favorites/PublicSearch + + + 98, 12 + + + Get more/Starting + + + 188, 16 + + + Enable to edit 'Count' parameter + + + 196, 16 + + + Shorten nicovideo urls by nico.ms + + + 107, 12 + + + URI of your Outputz + + + 86, 12 + + + Your secret key + + + 87, 16 + + + Use Outputz + + + Settings + + \ No newline at end of file Modified: branches/SettingDialog/Tween/AppendSettingDialog.resx =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.resx 2010-12-19 08:03:11 UTC (rev 1223) +++ branches/SettingDialog/Tween/AppendSettingDialog.resx 2010-12-19 08:14:38 UTC (rev 1224) @@ -244,6 +244,900 @@ 0 + + True + + + NoControl + + + 16, 220 + + + 74, 12 + + + 78 + + + 入力欄フォント + + + Label65 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 0 + + + True + + + NoControl + + + 16, 195 + + + 131, 12 + + + 77 + + + 入力欄アクティブ時背景色 + + + Label52 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 1 + + + True + + + NoControl + + + 16, 145 + + + 102, 12 + + + 75 + + + その発言の@先発言 + + + Label49 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 2 + + + True + + + NoControl + + + 16, 170 + + + 53, 12 + + + 76 + + + 一般発言 + + + Label9 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 3 + + + True + + + NoControl + + + 16, 120 + + + 134, 12 + + + 74 + + + その発言の@先の人の発言 + + + Label14 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 4 + + + True + + + NoControl + + + 16, 95 + + + 88, 12 + + + 73 + + + その人への@返信 + + + Label16 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 5 + + + True + + + NoControl + + + 16, 70 + + + 70, 12 + + + 72 + + + その人の発言 + + + Label32 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 6 + + + True + + + NoControl + + + 16, 45 + + + 81, 12 + + + 71 + + + 自分への@返信 + + + Label34 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 7 + + + True + + + NoControl + + + 16, 20 + + + 63, 12 + + + 70 + + + 自分の発言 + + + Label36 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 8 + + + True + + + NoControl + + + 398, 216 + + + 75, 22 + + + 69 + + + フォント&&色 + + + btnInputFont + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 9 + + + True + + + NoControl + + + 398, 191 + + + 75, 22 + + + 68 + + + 背景色 + + + btnInputBackcolor + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 10 + + + True + + + NoControl + + + 398, 141 + + + 75, 22 + + + 66 + + + 背景色 + + + btnAtTo + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 11 + + + True + + + NoControl + + + 398, 166 + + + 75, 22 + + + 67 + + + 背景色 + + + btnListBack + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 12 + + + True + + + NoControl + + + 398, 116 + + + 75, 22 + + + 65 + + + 背景色 + + + btnAtFromTarget + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 13 + + + True + + + NoControl + + + 398, 91 + + + 75, 22 + + + 64 + + + 背景色 + + + btnAtTarget + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 14 + + + True + + + NoControl + + + 398, 66 + + + 75, 22 + + + 63 + + + 背景色 + + + btnTarget + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 15 + + + True + + + NoControl + + + 398, 41 + + + 75, 22 + + + 62 + + + 背景色 + + + btnAtSelf + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 16 + + + True + + + NoControl + + + 398, 16 + + + 75, 22 + + + 61 + + + 背景色 + + + btnSelf + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 17 + + + NoControl + + + 214, 220 + + + 102, 19 + + + 60 + + + This is sample. + + + MiddleLeft + + + lblInputFont + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 18 + + + NoControl + + + 214, 195 + + + 102, 19 + + + 59 + + + This is sample. + + + MiddleLeft + + + lblInputBackcolor + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 19 + + + NoControl + + + 214, 145 + + + 102, 19 + + + 57 + + + This is sample. + + + MiddleLeft + + + lblAtTo + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 20 + + + NoControl + + + 214, 170 + + + 102, 19 + + + 58 + + + This is sample. + + + MiddleLeft + + + lblListBackcolor + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 21 + + + NoControl + + + 214, 120 + + + 102, 19 + + + 56 + + + This is sample. + + + MiddleLeft + + + lblAtFromTarget + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 22 + + + NoControl + + + 214, 95 + + + 102, 19 + + + 55 + + + This is sample. + + + MiddleLeft + + + lblAtTarget + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 23 + + + NoControl + + + 214, 70 + + + 102, 19 + + + 54 + + + This is sample. + + + MiddleLeft + + + lblTarget + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 24 + + + NoControl + + + 214, 45 + + + 102, 19 + + + 53 + + + This is sample. + + + MiddleLeft + + + lblAtSelf + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 25 + + + NoControl + + + 214, 19 + + + 102, 19 + + + 52 + + + This is sample. + + + MiddleLeft + + + lblSelf + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 26 + + + True + + + NoControl + + + 191, 252 + + + 90, 22 + + + 51 + + + デフォルトに戻す + + + ButtonBackToDefaultFontColor2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 27 + + + 22, 18 + + + 489, 290 + + + 1 + + + フォント&色設定 + + + GroupBox5 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + FontPanel2 + + + 0 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 25 + + + False + + + FontPanel2 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 0 + True @@ -599,7 +1493,7 @@ SplitContainer1.Panel2 - 0 + 1 258, 21 @@ -1037,7 +1931,7 @@ SplitContainer1.Panel2 - 1 + 2 True @@ -1400,7 +2294,7 @@ SplitContainer1.Panel2 - 2 + 3 True @@ -1754,7 +2648,7 @@ SplitContainer1.Panel2 - 3 + 4 True @@ -2201,7 +3095,7 @@ SplitContainer1.Panel2 - 4 + 5 227, 41 @@ -2312,7 +3206,7 @@ SplitContainer1.Panel2 - 5 + 6 True @@ -2462,7 +3356,7 @@ SplitContainer1.Panel2 - 6 + 7 True @@ -2909,7 +3803,7 @@ SplitContainer1.Panel2 - 7 + 8 True @@ -3542,7 +4436,7 @@ SplitContainer1.Panel2 - 8 + 9 通知なし @@ -4103,7 +4997,7 @@ SplitContainer1.Panel2 - 9 + 10 343, 94 @@ -4532,7 +5426,7 @@ SplitContainer1.Panel2 - 10 + 11 True @@ -5336,902 +6230,8 @@ SplitContainer1.Panel2 - 11 - - - True - - - NoControl - - - 398, 216 - - - 75, 22 - - - 69 - - - フォント&&色 - - - btnInputFont - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 0 - - - True - - - NoControl - - - 398, 191 - - - 75, 22 - - - 68 - - - 背景色 - - - btnInputBackcolor - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 1 - - - True - - - NoControl - - - 398, 141 - - - 75, 22 - - - 66 - - - 背景色 - - - btnAtTo - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 2 - - - True - - - NoControl - - - 398, 166 - - - 75, 22 - - - 67 - - - 背景色 - - - btnListBack - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 3 - - - True - - - NoControl - - - 398, 116 - - - 75, 22 - - - 65 - - - 背景色 - - - btnAtFromTarget - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 4 - - - True - - - NoControl - - - 398, 91 - - - 75, 22 - - - 64 - - - 背景色 - - - btnAtTarget - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 5 - - - True - - - NoControl - - - 398, 66 - - - 75, 22 - - - 63 - - - 背景色 - - - btnTarget - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 6 - - - True - - - NoControl - - - 398, 41 - - - 75, 22 - - - 62 - - - 背景色 - - - btnAtSelf - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 7 - - - True - - - NoControl - - - 398, 16 - - - 75, 22 - - - 61 - - - 背景色 - - - btnSelf - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 8 - - - NoControl - - - 214, 220 - - - 102, 19 - - - 60 - - - This is sample. - - - MiddleLeft - - - lblInputFont - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 9 - - - NoControl - - - 214, 195 - - - 102, 19 - - - 59 - - - This is sample. - - - MiddleLeft - - - lblInputBackcolor - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 10 - - - NoControl - - - 214, 145 - - - 102, 19 - - - 57 - - - This is sample. - - - MiddleLeft - - - lblAtTo - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 11 - - - NoControl - - - 214, 170 - - - 102, 19 - - - 58 - - - This is sample. - - - MiddleLeft - - - lblListBackcolor - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - 12 - - NoControl - - - 214, 120 - - - 102, 19 - - - 56 - - - This is sample. - - - MiddleLeft - - - lblAtFromTarget - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 13 - - - NoControl - - - 214, 95 - - - 102, 19 - - - 55 - - - This is sample. - - - MiddleLeft - - - lblAtTarget - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 14 - - - NoControl - - - 214, 70 - - - 102, 19 - - - 54 - - - This is sample. - - - MiddleLeft - - - lblTarget - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 15 - - - NoControl - - - 214, 45 - - - 102, 19 - - - 53 - - - This is sample. - - - MiddleLeft - - - lblAtSelf - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 16 - - - NoControl - - - 214, 19 - - - 102, 19 - - - 52 - - - This is sample. - - - MiddleLeft - - - lblSelf - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 17 - - - True - - - NoControl - - - 191, 252 - - - 90, 22 - - - 51 - - - デフォルトに戻す - - - ButtonBackToDefaultFontColor2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 18 - - - True - - - NoControl - - - 9, 220 - - - 74, 12 - - - 48 - - - 入力欄フォント - - - Label89 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 19 - - - True - - - NoControl - - - 9, 195 - - - 131, 12 - - - 45 - - - 入力欄アクティブ時背景色 - - - Label91 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 20 - - - True - - - NoControl - - - 9, 145 - - - 102, 12 - - - 39 - - - その発言の@先発言 - - - Label95 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 21 - - - True - - - NoControl - - - 9, 170 - - - 53, 12 - - - 42 - - - 一般発言 - - - Label99 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 22 - - - True - - - NoControl - - - 9, 120 - - - 134, 12 - - - 36 - - - その発言の@先の人の発言 - - - Label101 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 23 - - - True - - - NoControl - - - 9, 95 - - - 88, 12 - - - 33 - - - その人への@返信 - - - Label103 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 24 - - - True - - - NoControl - - - 9, 70 - - - 70, 12 - - - 30 - - - その人の発言 - - - Label105 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 25 - - - True - - - NoControl - - - 9, 45 - - - 81, 12 - - - 27 - - - 自分への@返信 - - - Label107 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 26 - - - True - - - NoControl - - - 9, 20 - - - 63, 12 - - - 24 - - - 自分の発言 - - - Label109 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 27 - - - 22, 18 - - - 489, 290 - - - 1 - - - フォント&色設定 - - - GroupBox5 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - FontPanel2 - - - 0 - - - Fill - - - False - - - 0, 0 - - - 525, 368 - - - 25 - - - False - - - FontPanel2 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SplitContainer1.Panel2 - - - 12 - SplitContainer1.Panel2 Added: branches/SettingDialog/Tween/AppendSettingDialog.zh-CHS.resx =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.zh-CHS.resx (rev 0) +++ branches/SettingDialog/Tween/AppendSettingDialog.zh-CHS.resx 2010-12-19 08:14:38 UTC (rev 1224) @@ -0,0 +1,919 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + 41, 12 + + + 用?名 + + + 29, 12 + + + 密? + + + 确定 + + + 取消 + + + 101, 12 + + + 消息更新?隔(秒) + + + 私信更新?隔(秒) + + + 101, 12 + + + 启???取的消息 + + + 72, 16 + + + 置?已? + + + 173, 12 + + + 列表中的?像??大小(默?16) + + + 101, 12 + + + 消息文末自?附加 + + + 48, 16 + + + 播放 + + + 41, 12 + + + 提示音 + + + 307, 13 + + + ???置的提示音,只要启用“播放”??就能被播放。 + + + 启用 + + + 113, 12 + + + 用?色区分?向?注 + + + 字体和?色?置 + + + 文本色 + + + 53, 12 + + + ?推消息 + + + 恢?默?? + + + 文本色 + + + 65, 12 + + + 消息??接 + + + 75, 22 + + + 字体&&?色 + + + 65, 12 + + + ?入框字体 + + + 125, 12 + + + ?入框激活?的背景色 + + + 75, 22 + + + 字体&&?色 + + + 53, 12 + + + 未?字体 + + + ?中消息所@的消息 + + + 77, 12 + + + 消息?背景色 + + + 普通消息 + + + 先中消息所@人的其它消息 + + + @??中人的消息 + + + 101, 12 + + + ?中人的其它消息 + + + @?自己的消息 + + + 自己的消息 + + + 75, 22 + + + 字体&&?色 + + + 65, 12 + + + 消息?文本 + + + 文本色 + + + 77, 12 + + + ?向?注消息 + + + 文本色 + + + 53, 12 + + + 收藏消息 + + + 75, 22 + + + 字体&&?色 + + + 53, 12 + + + 列表字体 + + + + + + 用?ID + + + 昵称 + + + 137, 12 + + + 新消息气球提示的用?名 + + + 132, 16 + + + 推荐使用[TWNv○○] + + + 125, 12 + + + 列表中的日期??格式 + + + 48, 16 + + + ?示 + + + 101, 12 + + + 消息?的?像?? + + + 108, 16 + + + 使用Ctrl+Enter + + + 143, 12 + + + ?送快捷?(默?是Enter) + + + 未?管理 + + + 启用 + + + 149, 12 + + + 有更新的消息?清除旧未? + + + 启用 + + + 101, 12 + + + 点?窗口上的×? + + + 退出程序 + + + 77, 12 + + + 窗口最小化? + + + ?小?托??? + + + 65, 12 + + + ??器路径 + + + 84, 16 + + + ?示用?名 + + + 101, 12 + + + ???和浮?提示 + + + 41, 12 + + + ??? + + + (无) + + + 版本号 + + + 最后一条消息 + + + @的未?数 + + + 未?数 + + + 未?数(@的未?数) + + + ?未?数/?消息数 + + + 消息数/好友数/?注数 + + + 101, 12 + + + 重启之后才生效。 + + + ?? + + + 77, 12 + + + ?助?入#Tag + + + 48, 16 + + + 启用 + + + ?助?入@ID + + + 48, 16 + + + 启用 + + + 119, 12 + + + URL自??短?先使用 + + + 138, 16 + + + 不包含Protect者消息 + + + 101, 12 + + + ?制?推的文本? + + + 72, 16 + + + 自??短 + + + 95, 12 + + + ?短?入框的URL + + + 323, 12 + + + 会重新?取原消息来??Fav?果。会?加流量,推荐??。 + + + 125, 12 + + + 是否?格??收藏?果 + + + 48, 16 + + + ?? + + + 48, 16 + + + 展? + + + 95, 12 + + + ?理?短网址URL + + + ?? + + + 行? + + + 77, 12 + + + ?示?片?? + + + 48, 16 + + + 启用 + + + 65, 12 + + + 重启后生效 + + + 48, 16 + + + 启用 + + + 65, 12 + + + ?在最前面 + + + 77, 12 + + + ?列排序方式 + + + 48, 16 + + + 固定 + + + 消息?列表格? + + + 48, 16 + + + ?示 + + + 173, 12 + + + 消息?文本字体等?化(支持AA) + + + 132, 16 + + + 启用(可能会有??) + + + 113, 12 + + + 自己的消息自?已? + + + 48, 16 + + + 启用 + + + 无通知 + + + 只有?色?化 + + + ?色?化&?? + + + 137, 12 + + + 有未?回??的通知?? + + + 113, 12 + + + 有新回??画面?? + + + 113, 12 + + + ??上?示未??? + + + 48, 16 + + + ?? + + + 48, 16 + + + 启用 + + + 77, 12 + + + 气球提示只在 + + + 72, 16 + + + 最小化? + + + 161, 12 + + + 未?文本?式(字体和?色上) + + + 48, 16 + + + 启用 + + + ?示 + + + 字体与?色 + + + 附加 + + + 重新?算 + + + 251, 12 + + + 成功刷新消息、?送消息?都会消耗API配?。 + + + 101, 12 + + + 列表更新?隔(秒) + + + 登?方法 + + + 清除 + + + 已登? + + + 登?状? + + + 登? + + + 101, 12 + + + 搜索更新?隔(秒) + + + 101, 12 + + + 回?更新?隔(秒) + + + ?推?更新 + + + 143, 12 + + + 默??取推数/回??取数 + + + 161, 12 + + + 启???取?向?注用?列表 + + + 48, 16 + + + ?取 + + + 89, 12 + + + 启??版本更新 + + + 48, 16 + + + ?? + + + 72, 16 + + + 自??整 + + + 89, 12 + + + 启???取收藏 + + + 48, 16 + + + ?取 + + + 生效 + + + 143, 21 + + + 215, 12 + + + Search API URL (search.twitter.com) + + + 143, 21 + + + 102, 16 + + + 使用HTTPS通信 + + + 317, 12 + + + ※刷新?繁出?超?的???整?更大的?。默?是20秒。 + + + 77, 12 + + + 超???(秒) + + + 代理?置 + + + 281, 12 + + + ※代理不需要登????,?将用?名密??留空。 + + + 47, 12 + + + 密?(&W) + + + 59, 12 + + + 用?名(&U) + + + 47, 12 + + + 端口(&P) + + + 47, 12 + + + 地址(&X) + + + 59, 16 + + + 自定? + + + 179, 16 + + + 使用InternetExplorer的?置 + + + 59, 16 + + + 不使用 + + + 216, 16 + + + 使用nico.ms?短Niconico?画的URL + + + 59, 12 + + + ?出到URL + + + 53, 12 + + + ?活咒? + + + 90, 16 + + + ??Outputz + + + ?置 + + + BASIC認証への変更を許可する + + + 前データの更新/初回の更新 + + + 次の項目の更新時の取得数を個別に設定する + + + Favorites/PublicSearchの取得数 + + + Shift+Enterにする + + \ No newline at end of file Modified: branches/SettingDialog/Tween/Tween.vbproj =================================================================== --- branches/SettingDialog/Tween/Tween.vbproj 2010-12-19 08:03:11 UTC (rev 1223) +++ branches/SettingDialog/Tween/Tween.vbproj 2010-12-19 08:14:38 UTC (rev 1224) @@ -48,6 +48,7 @@ 42353,42354,42355 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036 true + AnyCPU pdbonly @@ -285,9 +286,16 @@ + + AppendSettingDialog.vb + AppendSettingDialog.vb + Designer + + AppendSettingDialog.vb + Designer AtIdSupplement.vb From svnnotify @ sourceforge.jp Sun Dec 19 17:43:10 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 19 Dec 2010 17:43:10 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMjVdICBVU+WPjeaYoOmWk+malOOBruODhw==?= =?utf-8?b?44OV44Kp44Or44OI44KSM+enkuOBqw==?= Message-ID: <1292748190.647466.2084.nullmailer@users.sourceforge.jp> Revision: 1225 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1225 Author: kiri_feather Date: 2010-12-19 17:43:10 +0900 (Sun, 19 Dec 2010) Log Message: ----------- US反映間隔のデフォルトを3秒に Modified Paths: -------------- trunk/Tween/Setting/SettingCommon.vb -------------- next part -------------- Modified: trunk/Tween/Setting/SettingCommon.vb =================================================================== --- trunk/Tween/Setting/SettingCommon.vb 2010-12-19 08:14:38 UTC (rev 1224) +++ trunk/Tween/Setting/SettingCommon.vb 2010-12-19 08:43:10 UTC (rev 1225) @@ -174,6 +174,6 @@ Public FavoritesCountApi As Integer = 40 Public TrackWord As String = "" Public AllAtReply As Boolean = False - Public UserstreamPeriod As Integer = 0 + Public UserstreamPeriod As Integer = 3 Public UserstreamStartup As Boolean = True End Class From svnnotify @ sourceforge.jp Sun Dec 19 21:30:57 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 19 Dec 2010 21:30:57 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMjZdICDmtojosrtBUEnjga7ooajnpLrjgYw=?= =?utf-8?b?6Iux6Kqe44Gg44Go5YaN6KiI566X44Gu44Oc44K/44Oz44Go6YeN44Gq44Gj?= =?utf-8?b?44Gm44GE44Gf44Gu44KS55u044GX44Gf?= Message-ID: <1292761857.133773.4642.nullmailer@users.sourceforge.jp> Revision: 1226 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1226 Author: f_swallow Date: 2010-12-19 21:30:57 +0900 (Sun, 19 Dec 2010) Log Message: ----------- 消費APIの表示が英語だと再計算のボタンと重なっていたのを直した Modified Paths: -------------- branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb branches/SettingDialog/Tween/AppendSettingDialog.resx -------------- next part -------------- Modified: branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb 2010-12-19 08:43:10 UTC (rev 1225) +++ branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb 2010-12-19 12:30:57 UTC (rev 1226) @@ -25,6 +25,36 @@ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AppendSettingDialog)) Me.SplitContainer1 = New System.Windows.Forms.SplitContainer() Me.TreeView1 = New System.Windows.Forms.TreeView() + Me.FontPanel2 = New System.Windows.Forms.Panel() + Me.GroupBox5 = New System.Windows.Forms.GroupBox() + Me.Label65 = New System.Windows.Forms.Label() + Me.Label52 = New System.Windows.Forms.Label() + Me.Label49 = New System.Windows.Forms.Label() + Me.Label9 = New System.Windows.Forms.Label() + Me.Label14 = New System.Windows.Forms.Label() + Me.Label16 = New System.Windows.Forms.Label() + Me.Label32 = New System.Windows.Forms.Label() + Me.Label34 = New System.Windows.Forms.Label() + Me.Label36 = New System.Windows.Forms.Label() + Me.btnInputFont = New System.Windows.Forms.Button() + Me.btnInputBackcolor = New System.Windows.Forms.Button() + Me.btnAtTo = New System.Windows.Forms.Button() + Me.btnListBack = New System.Windows.Forms.Button() + Me.btnAtFromTarget = New System.Windows.Forms.Button() + Me.btnAtTarget = New System.Windows.Forms.Button() + Me.btnTarget = New System.Windows.Forms.Button() + Me.btnAtSelf = New System.Windows.Forms.Button() + Me.btnSelf = New System.Windows.Forms.Button() + Me.lblInputFont = New System.Windows.Forms.Label() + Me.lblInputBackcolor = New System.Windows.Forms.Label() + Me.lblAtTo = New System.Windows.Forms.Label() + Me.lblListBackcolor = New System.Windows.Forms.Label() + Me.lblAtFromTarget = New System.Windows.Forms.Label() + Me.lblAtTarget = New System.Windows.Forms.Label() + Me.lblTarget = New System.Windows.Forms.Label() + Me.lblAtSelf = New System.Windows.Forms.Label() + Me.lblSelf = New System.Windows.Forms.Label() + Me.ButtonBackToDefaultFontColor2 = New System.Windows.Forms.Button() Me.GetCountPanel = New System.Windows.Forms.Panel() Me.Label30 = New System.Windows.Forms.Label() Me.Label28 = New System.Windows.Forms.Label() @@ -202,44 +232,16 @@ Me.btnListFont = New System.Windows.Forms.Button() Me.lblListFont = New System.Windows.Forms.Label() Me.Label61 = New System.Windows.Forms.Label() - Me.FontPanel2 = New System.Windows.Forms.Panel() - Me.GroupBox5 = New System.Windows.Forms.GroupBox() - Me.btnInputFont = New System.Windows.Forms.Button() - Me.btnInputBackcolor = New System.Windows.Forms.Button() - Me.btnAtTo = New System.Windows.Forms.Button() - Me.btnListBack = New System.Windows.Forms.Button() - Me.btnAtFromTarget = New System.Windows.Forms.Button() - Me.btnAtTarget = New System.Windows.Forms.Button() - Me.btnTarget = New System.Windows.Forms.Button() - Me.btnAtSelf = New System.Windows.Forms.Button() - Me.btnSelf = New System.Windows.Forms.Button() - Me.lblInputFont = New System.Windows.Forms.Label() - Me.lblInputBackcolor = New System.Windows.Forms.Label() - Me.lblAtTo = New System.Windows.Forms.Label() - Me.lblListBackcolor = New System.Windows.Forms.Label() - Me.lblAtFromTarget = New System.Windows.Forms.Label() - Me.lblAtTarget = New System.Windows.Forms.Label() - Me.lblTarget = New System.Windows.Forms.Label() - Me.lblAtSelf = New System.Windows.Forms.Label() - Me.lblSelf = New System.Windows.Forms.Label() - Me.ButtonBackToDefaultFontColor2 = New System.Windows.Forms.Button() Me.FontDialog1 = New System.Windows.Forms.FontDialog() Me.ColorDialog1 = New System.Windows.Forms.ColorDialog() Me.Cancel = New System.Windows.Forms.Button() Me.Save = New System.Windows.Forms.Button() - Me.Label65 = New System.Windows.Forms.Label() - Me.Label52 = New System.Windows.Forms.Label() - Me.Label49 = New System.Windows.Forms.Label() - Me.Label9 = New System.Windows.Forms.Label() - Me.Label14 = New System.Windows.Forms.Label() - Me.Label16 = New System.Windows.Forms.Label() - Me.Label32 = New System.Windows.Forms.Label() - Me.Label34 = New System.Windows.Forms.Label() - Me.Label36 = New System.Windows.Forms.Label() CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SplitContainer1.Panel1.SuspendLayout() Me.SplitContainer1.Panel2.SuspendLayout() Me.SplitContainer1.SuspendLayout() + Me.FontPanel2.SuspendLayout() + Me.GroupBox5.SuspendLayout() Me.GetCountPanel.SuspendLayout() Me.GetPeriodPanel.SuspendLayout() Me.BasedPanel.SuspendLayout() @@ -254,8 +256,6 @@ Me.TweetActPanel.SuspendLayout() Me.FontPanel.SuspendLayout() Me.GroupBox1.SuspendLayout() - Me.FontPanel2.SuspendLayout() - Me.GroupBox5.SuspendLayout() Me.SuspendLayout() ' 'SplitContainer1 @@ -270,9 +270,9 @@ 'SplitContainer1.Panel2 ' Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Window + Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.GetCountPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel2) - Me.SplitContainer1.Panel2.Controls.Add(Me.GetCountPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.BasedPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.ProxyPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.ConnectionPanel) @@ -291,6 +291,205 @@ Me.TreeView1.Name = "TreeView1" Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {CType(resources.GetObject("TreeView1.Nodes"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes1"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes2"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes3"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes4"), System.Windows.Forms.TreeNode)}) ' + 'FontPanel2 + ' + Me.FontPanel2.Controls.Add(Me.GroupBox5) + resources.ApplyResources(Me.FontPanel2, "FontPanel2") + Me.FontPanel2.Name = "FontPanel2" + ' + 'GroupBox5 + ' + Me.GroupBox5.Controls.Add(Me.Label65) + Me.GroupBox5.Controls.Add(Me.Label52) + Me.GroupBox5.Controls.Add(Me.Label49) + Me.GroupBox5.Controls.Add(Me.Label9) + Me.GroupBox5.Controls.Add(Me.Label14) + Me.GroupBox5.Controls.Add(Me.Label16) + Me.GroupBox5.Controls.Add(Me.Label32) + Me.GroupBox5.Controls.Add(Me.Label34) + Me.GroupBox5.Controls.Add(Me.Label36) + Me.GroupBox5.Controls.Add(Me.btnInputFont) + Me.GroupBox5.Controls.Add(Me.btnInputBackcolor) + Me.GroupBox5.Controls.Add(Me.btnAtTo) + Me.GroupBox5.Controls.Add(Me.btnListBack) + Me.GroupBox5.Controls.Add(Me.btnAtFromTarget) + Me.GroupBox5.Controls.Add(Me.btnAtTarget) + Me.GroupBox5.Controls.Add(Me.btnTarget) + Me.GroupBox5.Controls.Add(Me.btnAtSelf) + Me.GroupBox5.Controls.Add(Me.btnSelf) + Me.GroupBox5.Controls.Add(Me.lblInputFont) + Me.GroupBox5.Controls.Add(Me.lblInputBackcolor) + Me.GroupBox5.Controls.Add(Me.lblAtTo) + Me.GroupBox5.Controls.Add(Me.lblListBackcolor) + Me.GroupBox5.Controls.Add(Me.lblAtFromTarget) + Me.GroupBox5.Controls.Add(Me.lblAtTarget) + Me.GroupBox5.Controls.Add(Me.lblTarget) + Me.GroupBox5.Controls.Add(Me.lblAtSelf) + Me.GroupBox5.Controls.Add(Me.lblSelf) + Me.GroupBox5.Controls.Add(Me.ButtonBackToDefaultFontColor2) + resources.ApplyResources(Me.GroupBox5, "GroupBox5") + Me.GroupBox5.Name = "GroupBox5" + Me.GroupBox5.TabStop = False + ' + 'Label65 + ' + resources.ApplyResources(Me.Label65, "Label65") + Me.Label65.Name = "Label65" + ' + 'Label52 + ' + resources.ApplyResources(Me.Label52, "Label52") + Me.Label52.Name = "Label52" + ' + 'Label49 + ' + resources.ApplyResources(Me.Label49, "Label49") + Me.Label49.Name = "Label49" + ' + 'Label9 + ' + resources.ApplyResources(Me.Label9, "Label9") + Me.Label9.Name = "Label9" + ' + 'Label14 + ' + resources.ApplyResources(Me.Label14, "Label14") + Me.Label14.Name = "Label14" + ' + 'Label16 + ' + resources.ApplyResources(Me.Label16, "Label16") + Me.Label16.Name = "Label16" + ' + 'Label32 + ' + resources.ApplyResources(Me.Label32, "Label32") + Me.Label32.Name = "Label32" + ' + 'Label34 + ' + resources.ApplyResources(Me.Label34, "Label34") + Me.Label34.Name = "Label34" + ' + 'Label36 + ' + resources.ApplyResources(Me.Label36, "Label36") + Me.Label36.Name = "Label36" + ' + 'btnInputFont + ' + resources.ApplyResources(Me.btnInputFont, "btnInputFont") + Me.btnInputFont.Name = "btnInputFont" + Me.btnInputFont.UseVisualStyleBackColor = True + ' + 'btnInputBackcolor + ' + resources.ApplyResources(Me.btnInputBackcolor, "btnInputBackcolor") + Me.btnInputBackcolor.Name = "btnInputBackcolor" + Me.btnInputBackcolor.UseVisualStyleBackColor = True + ' + 'btnAtTo + ' + resources.ApplyResources(Me.btnAtTo, "btnAtTo") + Me.btnAtTo.Name = "btnAtTo" + Me.btnAtTo.UseVisualStyleBackColor = True + ' + 'btnListBack + ' + resources.ApplyResources(Me.btnListBack, "btnListBack") + Me.btnListBack.Name = "btnListBack" + Me.btnListBack.UseVisualStyleBackColor = True + ' + 'btnAtFromTarget + ' + resources.ApplyResources(Me.btnAtFromTarget, "btnAtFromTarget") + Me.btnAtFromTarget.Name = "btnAtFromTarget" + Me.btnAtFromTarget.UseVisualStyleBackColor = True + ' + 'btnAtTarget + ' + resources.ApplyResources(Me.btnAtTarget, "btnAtTarget") + Me.btnAtTarget.Name = "btnAtTarget" + Me.btnAtTarget.UseVisualStyleBackColor = True + ' + 'btnTarget + ' + resources.ApplyResources(Me.btnTarget, "btnTarget") + Me.btnTarget.Name = "btnTarget" + Me.btnTarget.UseVisualStyleBackColor = True + ' + 'btnAtSelf + ' + resources.ApplyResources(Me.btnAtSelf, "btnAtSelf") + Me.btnAtSelf.Name = "btnAtSelf" + Me.btnAtSelf.UseVisualStyleBackColor = True + ' + 'btnSelf + ' + resources.ApplyResources(Me.btnSelf, "btnSelf") + Me.btnSelf.Name = "btnSelf" + Me.btnSelf.UseVisualStyleBackColor = True + ' + 'lblInputFont + ' + Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblInputFont, "lblInputFont") + Me.lblInputFont.Name = "lblInputFont" + ' + 'lblInputBackcolor + ' + Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") + Me.lblInputBackcolor.Name = "lblInputBackcolor" + ' + 'lblAtTo + ' + Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblAtTo, "lblAtTo") + Me.lblAtTo.Name = "lblAtTo" + ' + 'lblListBackcolor + ' + Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") + Me.lblListBackcolor.Name = "lblListBackcolor" + ' + 'lblAtFromTarget + ' + Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") + Me.lblAtFromTarget.Name = "lblAtFromTarget" + ' + 'lblAtTarget + ' + Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") + Me.lblAtTarget.Name = "lblAtTarget" + ' + 'lblTarget + ' + Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblTarget, "lblTarget") + Me.lblTarget.Name = "lblTarget" + ' + 'lblAtSelf + ' + Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") + Me.lblAtSelf.Name = "lblAtSelf" + ' + 'lblSelf + ' + Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblSelf, "lblSelf") + Me.lblSelf.Name = "lblSelf" + ' + 'ButtonBackToDefaultFontColor2 + ' + resources.ApplyResources(Me.ButtonBackToDefaultFontColor2, "ButtonBackToDefaultFontColor2") + Me.ButtonBackToDefaultFontColor2.Name = "ButtonBackToDefaultFontColor2" + Me.ButtonBackToDefaultFontColor2.UseVisualStyleBackColor = True + ' 'GetCountPanel ' Me.GetCountPanel.BackColor = System.Drawing.SystemColors.Window @@ -1464,160 +1663,6 @@ resources.ApplyResources(Me.Label61, "Label61") Me.Label61.Name = "Label61" ' - 'FontPanel2 - ' - Me.FontPanel2.Controls.Add(Me.GroupBox5) - resources.ApplyResources(Me.FontPanel2, "FontPanel2") - Me.FontPanel2.Name = "FontPanel2" - ' - 'GroupBox5 - ' - Me.GroupBox5.Controls.Add(Me.Label65) - Me.GroupBox5.Controls.Add(Me.Label52) - Me.GroupBox5.Controls.Add(Me.Label49) - Me.GroupBox5.Controls.Add(Me.Label9) - Me.GroupBox5.Controls.Add(Me.Label14) - Me.GroupBox5.Controls.Add(Me.Label16) - Me.GroupBox5.Controls.Add(Me.Label32) - Me.GroupBox5.Controls.Add(Me.Label34) - Me.GroupBox5.Controls.Add(Me.Label36) - Me.GroupBox5.Controls.Add(Me.btnInputFont) - Me.GroupBox5.Controls.Add(Me.btnInputBackcolor) - Me.GroupBox5.Controls.Add(Me.btnAtTo) - Me.GroupBox5.Controls.Add(Me.btnListBack) - Me.GroupBox5.Controls.Add(Me.btnAtFromTarget) - Me.GroupBox5.Controls.Add(Me.btnAtTarget) - Me.GroupBox5.Controls.Add(Me.btnTarget) - Me.GroupBox5.Controls.Add(Me.btnAtSelf) - Me.GroupBox5.Controls.Add(Me.btnSelf) - Me.GroupBox5.Controls.Add(Me.lblInputFont) - Me.GroupBox5.Controls.Add(Me.lblInputBackcolor) - Me.GroupBox5.Controls.Add(Me.lblAtTo) - Me.GroupBox5.Controls.Add(Me.lblListBackcolor) - Me.GroupBox5.Controls.Add(Me.lblAtFromTarget) - Me.GroupBox5.Controls.Add(Me.lblAtTarget) - Me.GroupBox5.Controls.Add(Me.lblTarget) - Me.GroupBox5.Controls.Add(Me.lblAtSelf) - Me.GroupBox5.Controls.Add(Me.lblSelf) - Me.GroupBox5.Controls.Add(Me.ButtonBackToDefaultFontColor2) - resources.ApplyResources(Me.GroupBox5, "GroupBox5") - Me.GroupBox5.Name = "GroupBox5" - Me.GroupBox5.TabStop = False - ' - 'btnInputFont - ' - resources.ApplyResources(Me.btnInputFont, "btnInputFont") - Me.btnInputFont.Name = "btnInputFont" - Me.btnInputFont.UseVisualStyleBackColor = True - ' - 'btnInputBackcolor - ' - resources.ApplyResources(Me.btnInputBackcolor, "btnInputBackcolor") - Me.btnInputBackcolor.Name = "btnInputBackcolor" - Me.btnInputBackcolor.UseVisualStyleBackColor = True - ' - 'btnAtTo - ' - resources.ApplyResources(Me.btnAtTo, "btnAtTo") - Me.btnAtTo.Name = "btnAtTo" - Me.btnAtTo.UseVisualStyleBackColor = True - ' - 'btnListBack - ' - resources.ApplyResources(Me.btnListBack, "btnListBack") - Me.btnListBack.Name = "btnListBack" - Me.btnListBack.UseVisualStyleBackColor = True - ' - 'btnAtFromTarget - ' - resources.ApplyResources(Me.btnAtFromTarget, "btnAtFromTarget") - Me.btnAtFromTarget.Name = "btnAtFromTarget" - Me.btnAtFromTarget.UseVisualStyleBackColor = True - ' - 'btnAtTarget - ' - resources.ApplyResources(Me.btnAtTarget, "btnAtTarget") - Me.btnAtTarget.Name = "btnAtTarget" - Me.btnAtTarget.UseVisualStyleBackColor = True - ' - 'btnTarget - ' - resources.ApplyResources(Me.btnTarget, "btnTarget") - Me.btnTarget.Name = "btnTarget" - Me.btnTarget.UseVisualStyleBackColor = True - ' - 'btnAtSelf - ' - resources.ApplyResources(Me.btnAtSelf, "btnAtSelf") - Me.btnAtSelf.Name = "btnAtSelf" - Me.btnAtSelf.UseVisualStyleBackColor = True - ' - 'btnSelf - ' - resources.ApplyResources(Me.btnSelf, "btnSelf") - Me.btnSelf.Name = "btnSelf" - Me.btnSelf.UseVisualStyleBackColor = True - ' - 'lblInputFont - ' - Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblInputFont, "lblInputFont") - Me.lblInputFont.Name = "lblInputFont" - ' - 'lblInputBackcolor - ' - Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") - Me.lblInputBackcolor.Name = "lblInputBackcolor" - ' - 'lblAtTo - ' - Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblAtTo, "lblAtTo") - Me.lblAtTo.Name = "lblAtTo" - ' - 'lblListBackcolor - ' - Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") - Me.lblListBackcolor.Name = "lblListBackcolor" - ' - 'lblAtFromTarget - ' - Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") - Me.lblAtFromTarget.Name = "lblAtFromTarget" - ' - 'lblAtTarget - ' - Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") - Me.lblAtTarget.Name = "lblAtTarget" - ' - 'lblTarget - ' - Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblTarget, "lblTarget") - Me.lblTarget.Name = "lblTarget" - ' - 'lblAtSelf - ' - Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") - Me.lblAtSelf.Name = "lblAtSelf" - ' - 'lblSelf - ' - Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblSelf, "lblSelf") - Me.lblSelf.Name = "lblSelf" - ' - 'ButtonBackToDefaultFontColor2 - ' - resources.ApplyResources(Me.ButtonBackToDefaultFontColor2, "ButtonBackToDefaultFontColor2") - Me.ButtonBackToDefaultFontColor2.Name = "ButtonBackToDefaultFontColor2" - Me.ButtonBackToDefaultFontColor2.UseVisualStyleBackColor = True - ' 'Cancel ' Me.Cancel.CausesValidation = False @@ -1633,51 +1678,6 @@ Me.Save.Name = "Save" Me.Save.UseVisualStyleBackColor = True ' - 'Label65 - ' - resources.ApplyResources(Me.Label65, "Label65") - Me.Label65.Name = "Label65" - ' - 'Label52 - ' - resources.ApplyResources(Me.Label52, "Label52") - Me.Label52.Name = "Label52" - ' - 'Label49 - ' - resources.ApplyResources(Me.Label49, "Label49") - Me.Label49.Name = "Label49" - ' - 'Label9 - ' - resources.ApplyResources(Me.Label9, "Label9") - Me.Label9.Name = "Label9" - ' - 'Label14 - ' - resources.ApplyResources(Me.Label14, "Label14") - Me.Label14.Name = "Label14" - ' - 'Label16 - ' - resources.ApplyResources(Me.Label16, "Label16") - Me.Label16.Name = "Label16" - ' - 'Label32 - ' - resources.ApplyResources(Me.Label32, "Label32") - Me.Label32.Name = "Label32" - ' - 'Label34 - ' - resources.ApplyResources(Me.Label34, "Label34") - Me.Label34.Name = "Label34" - ' - 'Label36 - ' - resources.ApplyResources(Me.Label36, "Label36") - Me.Label36.Name = "Label36" - ' 'AppendSettingDialog ' Me.AcceptButton = Me.Save @@ -1698,6 +1698,9 @@ Me.SplitContainer1.Panel2.ResumeLayout(False) CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit() Me.SplitContainer1.ResumeLayout(False) + Me.FontPanel2.ResumeLayout(False) + Me.GroupBox5.ResumeLayout(False) + Me.GroupBox5.PerformLayout() Me.GetCountPanel.ResumeLayout(False) Me.GetCountPanel.PerformLayout() Me.GetPeriodPanel.ResumeLayout(False) @@ -1725,9 +1728,6 @@ Me.FontPanel.ResumeLayout(False) Me.GroupBox1.ResumeLayout(False) Me.GroupBox1.PerformLayout() - Me.FontPanel2.ResumeLayout(False) - Me.GroupBox5.ResumeLayout(False) - Me.GroupBox5.PerformLayout() Me.ResumeLayout(False) End Sub Modified: branches/SettingDialog/Tween/AppendSettingDialog.resx =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.resx 2010-12-19 08:43:10 UTC (rev 1225) +++ branches/SettingDialog/Tween/AppendSettingDialog.resx 2010-12-19 12:30:57 UTC (rev 1226) @@ -244,6 +244,801 @@ 0 + + 258, 21 + + + 65, 19 + + + 29 + + + TimelinePeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 0 + + + True + + + NoControl + + + 22, 24 + + + 130, 12 + + + 28 + + + タイムライン更新間隔(秒) + + + Label3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 1 + + + NoControl + + + 122, 216 + + + 108, 23 + + + 41 + + + 再計算 + + + ButtonApiCalc + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 2 + + + True + + + NoControl + + + 29, 195 + + + 285, 12 + + + 42 + + + 投稿時取得が有効のため、投稿のたびにAPIを消費します。 + + + LabelPostAndGet + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 3 + + + True + + + NoControl + + + 29, 174 + + + 23, 12 + + + 40 + + + 999 + + + MiddleRight + + + LabelApiUsing + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 4 + + + True + + + NoControl + + + 22, 138 + + + 102, 12 + + + 38 + + + Lists更新間隔(秒) + + + Label33 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 5 + + + 258, 135 + + + 65, 19 + + + 39 + + + ListsPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 6 + + + True + + + NoControl + + + 22, 114 + + + 137, 12 + + + 36 + + + Twitter検索更新間隔(秒) + + + Label7 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 7 + + + 258, 111 + + + 65, 19 + + + 37 + + + PubSearchPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 8 + + + True + + + NoControl + + + 22, 66 + + + 123, 12 + + + 32 + + + Mentions更新間隔(秒) + + + Label69 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 9 + + + 258, 63 + + + 65, 19 + + + 33 + + + ReplyPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 10 + + + True + + + NoControl + + + 33, 43 + + + 84, 16 + + + 30 + + + 投稿時取得 + + + CheckPostAndGet + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 11 + + + True + + + NoControl + + + 251, 43 + + + 91, 16 + + + 31 + + + 自動調整する + + + False + + + CheckPeriodAdjust + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 12 + + + True + + + NoControl + + + 22, 90 + + + 94, 12 + + + 34 + + + DM更新間隔(秒) + + + Label5 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 13 + + + 258, 87 + + + 65, 19 + + + 35 + + + DMPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 14 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 1 + + + False + + + GetPeriodPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 0 + + + True + + + 22, 186 + + + 117, 12 + + + 52 + + + PublicSearchの取得数 + + + Label30 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 0 + + + True + + + 22, 136 + + + 63, 12 + + + 51 + + + 初回の更新 + + + Label28 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 1 + + + True + + + 22, 54 + + + 87, 12 + + + 50 + + + Mentions取得数 + + + Label19 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 2 + + + 259, 159 + + + 58, 19 + + + 48 + + + FavoritesTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 3 + + + 259, 185 + + + 58, 19 + + + 49 + + + SearchTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 4 + + + True + + + NoControl + + + 22, 160 + + + 99, 12 + + + 47 + + + Favoritesの取得数 + + + Label66 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 5 + + + 259, 135 + + + 58, 19 + + + 46 + + + FirstTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 6 + + + 259, 112 + + + 58, 19 + + + 45 + + + GetMoreTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 7 + + + True + + + NoControl + + + 22, 112 + + + 79, 12 + + + 44 + + + 前データの更新 + + + Label53 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 8 + + + True + + + NoControl + + + 22, 86 + + + 247, 16 + + + 43 + + + 次の項目の更新時の取得数を個別に設定する + + + UseChangeGetCount + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 9 + + + 259, 51 + + + 58, 19 + + + 41 + + + TextCountApiReply + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 10 + + + True + + + NoControl + + + 22, 24 + + + 77, 12 + + + 39 + + + 標準取得件数 + + + Label67 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 11 + + + 259, 21 + + + 58, 19 + + + 40 + + + TextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 12 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 44 + + + False + + + GetCountPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 1 + True @@ -1136,803 +1931,8 @@ SplitContainer1.Panel2 - 0 - - - True - - - 22, 186 - - - 117, 12 - - - 52 - - - PublicSearchの取得数 - - - Label30 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 0 - - - True - - - 22, 136 - - - 63, 12 - - - 51 - - - 初回の更新 - - - Label28 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 1 - - - True - - - 22, 54 - - - 87, 12 - - - 50 - - - Mentions取得数 - - - Label19 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - 2 - - 259, 159 - - - 58, 19 - - - 48 - - - FavoritesTextCountApi - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 3 - - - 259, 185 - - - 58, 19 - - - 49 - - - SearchTextCountApi - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 4 - - - True - - - NoControl - - - 22, 160 - - - 99, 12 - - - 47 - - - Favoritesの取得数 - - - Label66 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 5 - - - 259, 135 - - - 58, 19 - - - 46 - - - FirstTextCountApi - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 6 - - - 259, 112 - - - 58, 19 - - - 45 - - - GetMoreTextCountApi - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 7 - - - True - - - NoControl - - - 22, 112 - - - 79, 12 - - - 44 - - - 前データの更新 - - - Label53 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 8 - - - True - - - NoControl - - - 22, 86 - - - 247, 16 - - - 43 - - - 次の項目の更新時の取得数を個別に設定する - - - UseChangeGetCount - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 9 - - - 259, 51 - - - 58, 19 - - - 41 - - - TextCountApiReply - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 10 - - - True - - - NoControl - - - 22, 24 - - - 77, 12 - - - 39 - - - 標準取得件数 - - - Label67 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 11 - - - 259, 21 - - - 58, 19 - - - 40 - - - TextCountApi - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetCountPanel - - - 12 - - - Fill - - - False - - - 0, 0 - - - 525, 368 - - - 44 - - - False - - - GetCountPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SplitContainer1.Panel2 - - - 1 - - - 258, 21 - - - 65, 19 - - - 29 - - - TimelinePeriod - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 0 - - - True - - - NoControl - - - 22, 24 - - - 130, 12 - - - 28 - - - タイムライン更新間隔(秒) - - - Label3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 1 - - - NoControl - - - 257, 164 - - - 75, 23 - - - 41 - - - 再計算 - - - ButtonApiCalc - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 2 - - - True - - - NoControl - - - 29, 202 - - - 285, 12 - - - 42 - - - 投稿時取得が有効のため、投稿のたびにAPIを消費します。 - - - LabelPostAndGet - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 3 - - - True - - - NoControl - - - 29, 174 - - - 23, 12 - - - 40 - - - 999 - - - MiddleRight - - - LabelApiUsing - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 4 - - - True - - - NoControl - - - 22, 138 - - - 102, 12 - - - 38 - - - Lists更新間隔(秒) - - - Label33 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 5 - - - 258, 135 - - - 65, 19 - - - 39 - - - ListsPeriod - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 6 - - - True - - - NoControl - - - 22, 114 - - - 137, 12 - - - 36 - - - Twitter検索更新間隔(秒) - - - Label7 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 7 - - - 258, 111 - - - 65, 19 - - - 37 - - - PubSearchPeriod - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 8 - - - True - - - NoControl - - - 22, 66 - - - 123, 12 - - - 32 - - - Mentions更新間隔(秒) - - - Label69 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 9 - - - 258, 63 - - - 65, 19 - - - 33 - - - ReplyPeriod - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 10 - - - True - - - NoControl - - - 33, 43 - - - 84, 16 - - - 30 - - - 投稿時取得 - - - CheckPostAndGet - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 11 - - - True - - - NoControl - - - 251, 43 - - - 91, 16 - - - 31 - - - 自動調整する - - - False - - - CheckPeriodAdjust - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 12 - - - True - - - NoControl - - - 22, 90 - - - 94, 12 - - - 34 - - - DM更新間隔(秒) - - - Label5 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 13 - - - 258, 87 - - - 65, 19 - - - 35 - - - DMPeriod - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 14 - - - Fill - - - False - - - 0, 0 - - - 525, 368 - - - 1 - - - False - - - GetPeriodPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SplitContainer1.Panel2 - - - 2 - True From svnnotify @ sourceforge.jp Mon Dec 20 08:26:16 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 20 Dec 2010 08:26:16 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMjddICDml6foqK3lrprjg4DjgqTjgqLjg60=?= =?utf-8?b?44Kw5YmK6Zmk?= Message-ID: <1292801176.585348.14541.nullmailer@users.sourceforge.jp> Revision: 1227 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1227 Author: syo68k Date: 2010-12-20 08:26:16 +0900 (Mon, 20 Dec 2010) Log Message: ----------- 旧設定ダイアログ削除 Modified Paths: -------------- branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb branches/SettingDialog/Tween/AppendSettingDialog.resx branches/SettingDialog/Tween/Tween.vbproj Removed Paths: ------------- branches/SettingDialog/Tween/Setting.Designer.vb branches/SettingDialog/Tween/Setting.en.resx branches/SettingDialog/Tween/Setting.resx branches/SettingDialog/Tween/Setting.vb branches/SettingDialog/Tween/Setting.zh-CHS.resx -------------- next part -------------- Modified: branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb 2010-12-19 12:30:57 UTC (rev 1226) +++ branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb 2010-12-19 23:26:16 UTC (rev 1227) @@ -25,6 +25,36 @@ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AppendSettingDialog)) Me.SplitContainer1 = New System.Windows.Forms.SplitContainer() Me.TreeView1 = New System.Windows.Forms.TreeView() + Me.GetPeriodPanel = New System.Windows.Forms.Panel() + Me.TimelinePeriod = New System.Windows.Forms.TextBox() + Me.Label3 = New System.Windows.Forms.Label() + Me.ButtonApiCalc = New System.Windows.Forms.Button() + Me.LabelPostAndGet = New System.Windows.Forms.Label() + Me.LabelApiUsing = New System.Windows.Forms.Label() + Me.Label33 = New System.Windows.Forms.Label() + Me.ListsPeriod = New System.Windows.Forms.TextBox() + Me.Label7 = New System.Windows.Forms.Label() + Me.PubSearchPeriod = New System.Windows.Forms.TextBox() + Me.Label69 = New System.Windows.Forms.Label() + Me.ReplyPeriod = New System.Windows.Forms.TextBox() + Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() + Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() + Me.Label5 = New System.Windows.Forms.Label() + Me.DMPeriod = New System.Windows.Forms.TextBox() + Me.GetCountPanel = New System.Windows.Forms.Panel() + Me.Label30 = New System.Windows.Forms.Label() + Me.Label28 = New System.Windows.Forms.Label() + Me.Label19 = New System.Windows.Forms.Label() + Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() + Me.SearchTextCountApi = New System.Windows.Forms.TextBox() + Me.Label66 = New System.Windows.Forms.Label() + Me.FirstTextCountApi = New System.Windows.Forms.TextBox() + Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() + Me.Label53 = New System.Windows.Forms.Label() + Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() + Me.TextCountApiReply = New System.Windows.Forms.TextBox() + Me.Label67 = New System.Windows.Forms.Label() + Me.TextCountApi = New System.Windows.Forms.TextBox() Me.FontPanel2 = New System.Windows.Forms.Panel() Me.GroupBox5 = New System.Windows.Forms.GroupBox() Me.Label65 = New System.Windows.Forms.Label() @@ -55,36 +85,6 @@ Me.lblAtSelf = New System.Windows.Forms.Label() Me.lblSelf = New System.Windows.Forms.Label() Me.ButtonBackToDefaultFontColor2 = New System.Windows.Forms.Button() - Me.GetCountPanel = New System.Windows.Forms.Panel() - Me.Label30 = New System.Windows.Forms.Label() - Me.Label28 = New System.Windows.Forms.Label() - Me.Label19 = New System.Windows.Forms.Label() - Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() - Me.SearchTextCountApi = New System.Windows.Forms.TextBox() - Me.Label66 = New System.Windows.Forms.Label() - Me.FirstTextCountApi = New System.Windows.Forms.TextBox() - Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() - Me.Label53 = New System.Windows.Forms.Label() - Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() - Me.TextCountApiReply = New System.Windows.Forms.TextBox() - Me.Label67 = New System.Windows.Forms.Label() - Me.TextCountApi = New System.Windows.Forms.TextBox() - Me.GetPeriodPanel = New System.Windows.Forms.Panel() - Me.TimelinePeriod = New System.Windows.Forms.TextBox() - Me.Label3 = New System.Windows.Forms.Label() - Me.ButtonApiCalc = New System.Windows.Forms.Button() - Me.LabelPostAndGet = New System.Windows.Forms.Label() - Me.LabelApiUsing = New System.Windows.Forms.Label() - Me.Label33 = New System.Windows.Forms.Label() - Me.ListsPeriod = New System.Windows.Forms.TextBox() - Me.Label7 = New System.Windows.Forms.Label() - Me.PubSearchPeriod = New System.Windows.Forms.TextBox() - Me.Label69 = New System.Windows.Forms.Label() - Me.ReplyPeriod = New System.Windows.Forms.TextBox() - Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() - Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() - Me.Label5 = New System.Windows.Forms.Label() - Me.DMPeriod = New System.Windows.Forms.TextBox() Me.BasedPanel = New System.Windows.Forms.Panel() Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() @@ -240,10 +240,10 @@ Me.SplitContainer1.Panel1.SuspendLayout() Me.SplitContainer1.Panel2.SuspendLayout() Me.SplitContainer1.SuspendLayout() + Me.GetPeriodPanel.SuspendLayout() + Me.GetCountPanel.SuspendLayout() Me.FontPanel2.SuspendLayout() Me.GroupBox5.SuspendLayout() - Me.GetCountPanel.SuspendLayout() - Me.GetPeriodPanel.SuspendLayout() Me.BasedPanel.SuspendLayout() Me.ProxyPanel.SuspendLayout() Me.ConnectionPanel.SuspendLayout() @@ -270,6 +270,8 @@ 'SplitContainer1.Panel2 ' Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Window + Me.SplitContainer1.Panel2.Controls.Add(Me.TweetActPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.GetCountPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel2) @@ -281,8 +283,6 @@ Me.SplitContainer1.Panel2.Controls.Add(Me.TweetPrvPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.ActionPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.PreviewPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.TweetActPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel) ' 'TreeView1 ' @@ -291,6 +291,190 @@ Me.TreeView1.Name = "TreeView1" Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {CType(resources.GetObject("TreeView1.Nodes"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes1"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes2"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes3"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes4"), System.Windows.Forms.TreeNode)}) ' + 'GetPeriodPanel + ' + Me.GetPeriodPanel.BackColor = System.Drawing.SystemColors.Window + Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label3) + Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) + Me.GetPeriodPanel.Controls.Add(Me.LabelPostAndGet) + Me.GetPeriodPanel.Controls.Add(Me.LabelApiUsing) + Me.GetPeriodPanel.Controls.Add(Me.Label33) + Me.GetPeriodPanel.Controls.Add(Me.ListsPeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label7) + Me.GetPeriodPanel.Controls.Add(Me.PubSearchPeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label69) + Me.GetPeriodPanel.Controls.Add(Me.ReplyPeriod) + Me.GetPeriodPanel.Controls.Add(Me.CheckPostAndGet) + Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) + Me.GetPeriodPanel.Controls.Add(Me.Label5) + Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) + resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") + Me.GetPeriodPanel.Name = "GetPeriodPanel" + ' + 'TimelinePeriod + ' + resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") + Me.TimelinePeriod.Name = "TimelinePeriod" + ' + 'Label3 + ' + resources.ApplyResources(Me.Label3, "Label3") + Me.Label3.Name = "Label3" + ' + 'ButtonApiCalc + ' + resources.ApplyResources(Me.ButtonApiCalc, "ButtonApiCalc") + Me.ButtonApiCalc.Name = "ButtonApiCalc" + Me.ButtonApiCalc.UseVisualStyleBackColor = True + ' + 'LabelPostAndGet + ' + resources.ApplyResources(Me.LabelPostAndGet, "LabelPostAndGet") + Me.LabelPostAndGet.Name = "LabelPostAndGet" + ' + 'LabelApiUsing + ' + resources.ApplyResources(Me.LabelApiUsing, "LabelApiUsing") + Me.LabelApiUsing.Name = "LabelApiUsing" + ' + 'Label33 + ' + resources.ApplyResources(Me.Label33, "Label33") + Me.Label33.Name = "Label33" + ' + 'ListsPeriod + ' + resources.ApplyResources(Me.ListsPeriod, "ListsPeriod") + Me.ListsPeriod.Name = "ListsPeriod" + ' + 'Label7 + ' + resources.ApplyResources(Me.Label7, "Label7") + Me.Label7.Name = "Label7" + ' + 'PubSearchPeriod + ' + resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") + Me.PubSearchPeriod.Name = "PubSearchPeriod" + ' + 'Label69 + ' + resources.ApplyResources(Me.Label69, "Label69") + Me.Label69.Name = "Label69" + ' + 'ReplyPeriod + ' + resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") + Me.ReplyPeriod.Name = "ReplyPeriod" + ' + 'CheckPostAndGet + ' + resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") + Me.CheckPostAndGet.Name = "CheckPostAndGet" + Me.CheckPostAndGet.UseVisualStyleBackColor = True + ' + 'CheckPeriodAdjust + ' + resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") + Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" + Me.CheckPeriodAdjust.UseVisualStyleBackColor = True + ' + 'Label5 + ' + resources.ApplyResources(Me.Label5, "Label5") + Me.Label5.Name = "Label5" + ' + 'DMPeriod + ' + resources.ApplyResources(Me.DMPeriod, "DMPeriod") + Me.DMPeriod.Name = "DMPeriod" + ' + 'GetCountPanel + ' + Me.GetCountPanel.BackColor = System.Drawing.SystemColors.Window + Me.GetCountPanel.Controls.Add(Me.Label30) + Me.GetCountPanel.Controls.Add(Me.Label28) + Me.GetCountPanel.Controls.Add(Me.Label19) + Me.GetCountPanel.Controls.Add(Me.FavoritesTextCountApi) + Me.GetCountPanel.Controls.Add(Me.SearchTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label66) + Me.GetCountPanel.Controls.Add(Me.FirstTextCountApi) + Me.GetCountPanel.Controls.Add(Me.GetMoreTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label53) + Me.GetCountPanel.Controls.Add(Me.UseChangeGetCount) + Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) + Me.GetCountPanel.Controls.Add(Me.Label67) + Me.GetCountPanel.Controls.Add(Me.TextCountApi) + resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") + Me.GetCountPanel.Name = "GetCountPanel" + ' + 'Label30 + ' + resources.ApplyResources(Me.Label30, "Label30") + Me.Label30.Name = "Label30" + ' + 'Label28 + ' + resources.ApplyResources(Me.Label28, "Label28") + Me.Label28.Name = "Label28" + ' + 'Label19 + ' + resources.ApplyResources(Me.Label19, "Label19") + Me.Label19.Name = "Label19" + ' + 'FavoritesTextCountApi + ' + resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") + Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" + ' + 'SearchTextCountApi + ' + resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") + Me.SearchTextCountApi.Name = "SearchTextCountApi" + ' + 'Label66 + ' + resources.ApplyResources(Me.Label66, "Label66") + Me.Label66.Name = "Label66" + ' + 'FirstTextCountApi + ' + resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") + Me.FirstTextCountApi.Name = "FirstTextCountApi" + ' + 'GetMoreTextCountApi + ' + resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") + Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" + ' + 'Label53 + ' + resources.ApplyResources(Me.Label53, "Label53") + Me.Label53.Name = "Label53" + ' + 'UseChangeGetCount + ' + resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") + Me.UseChangeGetCount.Name = "UseChangeGetCount" + Me.UseChangeGetCount.UseVisualStyleBackColor = True + ' + 'TextCountApiReply + ' + resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") + Me.TextCountApiReply.Name = "TextCountApiReply" + ' + 'Label67 + ' + resources.ApplyResources(Me.Label67, "Label67") + Me.Label67.Name = "Label67" + ' + 'TextCountApi + ' + resources.ApplyResources(Me.TextCountApi, "TextCountApi") + Me.TextCountApi.Name = "TextCountApi" + ' 'FontPanel2 ' Me.FontPanel2.Controls.Add(Me.GroupBox5) @@ -490,190 +674,6 @@ Me.ButtonBackToDefaultFontColor2.Name = "ButtonBackToDefaultFontColor2" Me.ButtonBackToDefaultFontColor2.UseVisualStyleBackColor = True ' - 'GetCountPanel - ' - Me.GetCountPanel.BackColor = System.Drawing.SystemColors.Window - Me.GetCountPanel.Controls.Add(Me.Label30) - Me.GetCountPanel.Controls.Add(Me.Label28) - Me.GetCountPanel.Controls.Add(Me.Label19) - Me.GetCountPanel.Controls.Add(Me.FavoritesTextCountApi) - Me.GetCountPanel.Controls.Add(Me.SearchTextCountApi) - Me.GetCountPanel.Controls.Add(Me.Label66) - Me.GetCountPanel.Controls.Add(Me.FirstTextCountApi) - Me.GetCountPanel.Controls.Add(Me.GetMoreTextCountApi) - Me.GetCountPanel.Controls.Add(Me.Label53) - Me.GetCountPanel.Controls.Add(Me.UseChangeGetCount) - Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) - Me.GetCountPanel.Controls.Add(Me.Label67) - Me.GetCountPanel.Controls.Add(Me.TextCountApi) - resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") - Me.GetCountPanel.Name = "GetCountPanel" - ' - 'Label30 - ' - resources.ApplyResources(Me.Label30, "Label30") - Me.Label30.Name = "Label30" - ' - 'Label28 - ' - resources.ApplyResources(Me.Label28, "Label28") - Me.Label28.Name = "Label28" - ' - 'Label19 - ' - resources.ApplyResources(Me.Label19, "Label19") - Me.Label19.Name = "Label19" - ' - 'FavoritesTextCountApi - ' - resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") - Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" - ' - 'SearchTextCountApi - ' - resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") - Me.SearchTextCountApi.Name = "SearchTextCountApi" - ' - 'Label66 - ' - resources.ApplyResources(Me.Label66, "Label66") - Me.Label66.Name = "Label66" - ' - 'FirstTextCountApi - ' - resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") - Me.FirstTextCountApi.Name = "FirstTextCountApi" - ' - 'GetMoreTextCountApi - ' - resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") - Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" - ' - 'Label53 - ' - resources.ApplyResources(Me.Label53, "Label53") - Me.Label53.Name = "Label53" - ' - 'UseChangeGetCount - ' - resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") - Me.UseChangeGetCount.Name = "UseChangeGetCount" - Me.UseChangeGetCount.UseVisualStyleBackColor = True - ' - 'TextCountApiReply - ' - resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") - Me.TextCountApiReply.Name = "TextCountApiReply" - ' - 'Label67 - ' - resources.ApplyResources(Me.Label67, "Label67") - Me.Label67.Name = "Label67" - ' - 'TextCountApi - ' - resources.ApplyResources(Me.TextCountApi, "TextCountApi") - Me.TextCountApi.Name = "TextCountApi" - ' - 'GetPeriodPanel - ' - Me.GetPeriodPanel.BackColor = System.Drawing.SystemColors.Window - Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) - Me.GetPeriodPanel.Controls.Add(Me.Label3) - Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) - Me.GetPeriodPanel.Controls.Add(Me.LabelPostAndGet) - Me.GetPeriodPanel.Controls.Add(Me.LabelApiUsing) - Me.GetPeriodPanel.Controls.Add(Me.Label33) - Me.GetPeriodPanel.Controls.Add(Me.ListsPeriod) - Me.GetPeriodPanel.Controls.Add(Me.Label7) - Me.GetPeriodPanel.Controls.Add(Me.PubSearchPeriod) - Me.GetPeriodPanel.Controls.Add(Me.Label69) - Me.GetPeriodPanel.Controls.Add(Me.ReplyPeriod) - Me.GetPeriodPanel.Controls.Add(Me.CheckPostAndGet) - Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) - Me.GetPeriodPanel.Controls.Add(Me.Label5) - Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) - resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") - Me.GetPeriodPanel.Name = "GetPeriodPanel" - ' - 'TimelinePeriod - ' - resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") - Me.TimelinePeriod.Name = "TimelinePeriod" - ' - 'Label3 - ' - resources.ApplyResources(Me.Label3, "Label3") - Me.Label3.Name = "Label3" - ' - 'ButtonApiCalc - ' - resources.ApplyResources(Me.ButtonApiCalc, "ButtonApiCalc") - Me.ButtonApiCalc.Name = "ButtonApiCalc" - Me.ButtonApiCalc.UseVisualStyleBackColor = True - ' - 'LabelPostAndGet - ' - resources.ApplyResources(Me.LabelPostAndGet, "LabelPostAndGet") - Me.LabelPostAndGet.Name = "LabelPostAndGet" - ' - 'LabelApiUsing - ' - resources.ApplyResources(Me.LabelApiUsing, "LabelApiUsing") - Me.LabelApiUsing.Name = "LabelApiUsing" - ' - 'Label33 - ' - resources.ApplyResources(Me.Label33, "Label33") - Me.Label33.Name = "Label33" - ' - 'ListsPeriod - ' - resources.ApplyResources(Me.ListsPeriod, "ListsPeriod") - Me.ListsPeriod.Name = "ListsPeriod" - ' - 'Label7 - ' - resources.ApplyResources(Me.Label7, "Label7") - Me.Label7.Name = "Label7" - ' - 'PubSearchPeriod - ' - resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") - Me.PubSearchPeriod.Name = "PubSearchPeriod" - ' - 'Label69 - ' - resources.ApplyResources(Me.Label69, "Label69") - Me.Label69.Name = "Label69" - ' - 'ReplyPeriod - ' - resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") - Me.ReplyPeriod.Name = "ReplyPeriod" - ' - 'CheckPostAndGet - ' - resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") - Me.CheckPostAndGet.Name = "CheckPostAndGet" - Me.CheckPostAndGet.UseVisualStyleBackColor = True - ' - 'CheckPeriodAdjust - ' - resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") - Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" - Me.CheckPeriodAdjust.UseVisualStyleBackColor = True - ' - 'Label5 - ' - resources.ApplyResources(Me.Label5, "Label5") - Me.Label5.Name = "Label5" - ' - 'DMPeriod - ' - resources.ApplyResources(Me.DMPeriod, "DMPeriod") - Me.DMPeriod.Name = "DMPeriod" - ' 'BasedPanel ' Me.BasedPanel.BackColor = System.Drawing.SystemColors.Window @@ -1698,13 +1698,13 @@ Me.SplitContainer1.Panel2.ResumeLayout(False) CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit() Me.SplitContainer1.ResumeLayout(False) + Me.GetPeriodPanel.ResumeLayout(False) + Me.GetPeriodPanel.PerformLayout() + Me.GetCountPanel.ResumeLayout(False) + Me.GetCountPanel.PerformLayout() Me.FontPanel2.ResumeLayout(False) Me.GroupBox5.ResumeLayout(False) Me.GroupBox5.PerformLayout() - Me.GetCountPanel.ResumeLayout(False) - Me.GetCountPanel.PerformLayout() - Me.GetPeriodPanel.ResumeLayout(False) - Me.GetPeriodPanel.PerformLayout() Me.BasedPanel.ResumeLayout(False) Me.BasedPanel.PerformLayout() Me.ProxyPanel.ResumeLayout(False) Modified: branches/SettingDialog/Tween/AppendSettingDialog.resx =================================================================== --- branches/SettingDialog/Tween/AppendSettingDialog.resx 2010-12-19 12:30:57 UTC (rev 1226) +++ branches/SettingDialog/Tween/AppendSettingDialog.resx 2010-12-19 23:26:16 UTC (rev 1227) @@ -244,6 +244,1239 @@ 0 + + 343, 94 + + + 70, 19 + + + 69 + + + TextBitlyPw + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 0 + + + Enter + + + Ctrl+Enter + + + Shift+Enter + + + 181, 136 + + + 246, 20 + + + 60 + + + ComboBoxPostKeySelect + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 1 + + + True + + + NoControl + + + 19, 139 + + + 137, 12 + + + 59 + + + POSTキー(デフォルトEnter) + + + Label27 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 2 + + + True + + + NoControl + + + 21, 163 + + + 165, 16 + + + 62 + + + 公式RTする際に確認をしない + + + CheckRetweetNoConfirm + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 3 + + + 201, 95 + + + 71, 19 + + + 57 + + + TextBitlyId + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 4 + + + True + + + NoControl + + + 20, 211 + + + 107, 12 + + + 66 + + + フッター(文末に付加) + + + Label12 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 5 + + + True + + + NoControl + + + 278, 97 + + + 42, 12 + + + 58 + + + APIKey + + + Label77 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 6 + + + True + + + NoControl + + + 182, 211 + + + 195, 16 + + + 67 + + + 推奨フッターを使用する[TWNv○○] + + + CheckUseRecommendStatus + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 7 + + + True + + + NoControl + + + 179, 97 + + + 16, 12 + + + 56 + + + ID + + + Label76 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 8 + + + 182, 233 + + + 232, 19 + + + 68 + + + StatusText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 9 + + + tinyurl + + + is.gd + + + twurl.nl + + + bit.ly + + + j.mp + + + 181, 71 + + + 246, 20 + + + 55 + + + ComboBoxAutoShortUrlFirst + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 10 + + + True + + + NoControl + + + 19, 74 + + + 154, 12 + + + 54 + + + URL自動短縮で優先的に使用 + + + Label71 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 11 + + + True + + + NoControl + + + 22, 21 + + + 122, 16 + + + 51 + + + 短縮URLを解決する + + + CheckTinyURL + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 12 + + + True + + + NoControl + + + 22, 42 + + + 242, 16 + + + 53 + + + 入力欄のURLを投稿する際に自動で短縮する + + + CheckAutoConvertUrl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 13 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 77 + + + False + + + TweetActPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 0 + + + True + + + NoControl + + + 396, 119 + + + 75, 22 + + + 14 + + + 文字色 + + + btnRetweet + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 0 + + + NoControl + + + 214, 120 + + + 104, 19 + + + 13 + + + This is sample. + + + MiddleLeft + + + lblRetweet + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 1 + + + True + + + NoControl + + + 9, 123 + + + 50, 12 + + + 12 + + + ReTweet + + + Label80 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 2 + + + True + + + NoControl + + + 194, 236 + + + 90, 22 + + + 51 + + + デフォルトに戻す + + + ButtonBackToDefaultFontColor + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 3 + + + True + + + NoControl + + + 396, 169 + + + 75, 22 + + + 20 + + + 文字色 + + + btnDetailLink + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 4 + + + NoControl + + + 214, 170 + + + 104, 19 + + + 19 + + + This is sample. + + + MiddleLeft + + + lblDetailLink + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 5 + + + True + + + NoControl + + + 8, 173 + + + 77, 12 + + + 18 + + + 発言詳細リンク + + + Label18 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 6 + + + True + + + NoControl + + + 396, 44 + + + 75, 22 + + + 5 + + + フォント&&色 + + + btnUnread + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 7 + + + NoControl + + + 214, 45 + + + 104, 19 + + + 4 + + + This is sample. + + + MiddleLeft + + + lblUnread + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 8 + + + True + + + NoControl + + + 9, 48 + + + 62, 12 + + + 3 + + + 未読フォント + + + Label20 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 9 + + + True + + + NoControl + + + 396, 194 + + + 75, 22 + + + 23 + + + 背景色 + + + btnDetailBack + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 10 + + + NoControl + + + 214, 195 + + + 104, 19 + + + 22 + + + This is sample. + + + MiddleLeft + + + lblDetailBackcolor + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 11 + + + True + + + NoControl + + + 9, 198 + + + 89, 12 + + + 21 + + + 発言詳細背景色 + + + Label37 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 12 + + + True + + + NoControl + + + 396, 144 + + + 75, 22 + + + 17 + + + フォント&&色 + + + btnDetail + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 13 + + + NoControl + + + 214, 145 + + + 104, 19 + + + 16 + + + This is sample. + + + MiddleLeft + + + lblDetail + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 14 + + + True + + + NoControl + + + 9, 148 + + + 77, 12 + + + 15 + + + 発言詳細文字 + + + Label26 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 15 + + + True + + + NoControl + + + 396, 94 + + + 75, 22 + + + 11 + + + 文字色 + + + btnOWL + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 16 + + + NoControl + + + 214, 95 + + + 104, 19 + + + 10 + + + This is sample. + + + MiddleLeft + + + lblOWL + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 17 + + + True + + + NoControl + + + 9, 98 + + + 63, 12 + + + 9 + + + 片思い発言 + + + Label24 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 18 + + + True + + + NoControl + + + 396, 69 + + + 75, 22 + + + 8 + + + 文字色 + + + btnFav + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 19 + + + NoControl + + + 214, 70 + + + 104, 19 + + + 7 + + + This is sample. + + + MiddleLeft + + + lblFav + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 20 + + + True + + + NoControl + + + 9, 73 + + + 48, 12 + + + 6 + + + Fav発言 + + + Label22 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 21 + + + True + + + NoControl + + + 396, 19 + + + 75, 22 + + + 2 + + + フォント&&色 + + + btnListFont + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 22 + + + NoControl + + + 214, 20 + + + 104, 19 + + + 1 + + + This is sample. + + + MiddleLeft + + + lblListFont + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 23 + + + True + + + NoControl + + + 9, 23 + + + 62, 12 + + + 0 + + + リストフォント + + + Label61 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 24 + + + 22, 18 + + + 484, 267 + + + 1 + + + フォント&色設定 + + + GroupBox1 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + FontPanel + + + 0 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 51 + + + False + + + FontPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 1 + 258, 21 @@ -680,7 +1913,7 @@ SplitContainer1.Panel2 - 0 + 2 True @@ -1037,7 +2270,7 @@ SplitContainer1.Panel2 - 1 + 3 True @@ -1931,7 +3164,7 @@ SplitContainer1.Panel2 - 2 + 4 True @@ -2294,7 +3527,7 @@ SplitContainer1.Panel2 - 3 + 5 True @@ -2648,7 +3881,7 @@ SplitContainer1.Panel2 - 4 + 6 True @@ -3095,7 +4328,7 @@ SplitContainer1.Panel2 - 5 + 7 227, 41 @@ -3206,7 +4439,7 @@ SplitContainer1.Panel2 - 6 + 8 True @@ -3356,7 +4589,7 @@ SplitContainer1.Panel2 - 7 + 9 True @@ -3803,7 +5036,7 @@ SplitContainer1.Panel2 - 8 + 10 True @@ -4436,7 +5669,7 @@ SplitContainer1.Panel2 - 9 + 11 通知なし @@ -4997,1241 +6230,8 @@ SplitContainer1.Panel2 - 10 - - - 343, 94 - - - 70, 19 - - - 69 - - - TextBitlyPw - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 0 - - - Enter - - - Ctrl+Enter - - - Shift+Enter - - - 181, 136 - - - 246, 20 - - - 60 - - - ComboBoxPostKeySelect - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 1 - - - True - - - NoControl - - - 19, 139 - - - 137, 12 - - - 59 - - - POSTキー(デフォルトEnter) - - - Label27 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 2 - - - True - - - NoControl - - - 21, 163 - - - 165, 16 - - - 62 - - - 公式RTする際に確認をしない - - - CheckRetweetNoConfirm - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 3 - - - 201, 95 - - - 71, 19 - - - 57 - - - TextBitlyId - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 4 - - - True - - - NoControl - - - 20, 211 - - - 107, 12 - - - 66 - - - フッター(文末に付加) - - - Label12 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 5 - - - True - - - NoControl - - - 278, 97 - - - 42, 12 - - - 58 - - - APIKey - - - Label77 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 6 - - - True - - - NoControl - - - 182, 211 - - - 195, 16 - - - 67 - - - 推奨フッターを使用する[TWNv○○] - - - CheckUseRecommendStatus - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 7 - - - True - - - NoControl - - - 179, 97 - - - 16, 12 - - - 56 - - - ID - - - Label76 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 8 - - - 182, 233 - - - 232, 19 - - - 68 - - - StatusText - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 9 - - - tinyurl - - - is.gd - - - twurl.nl - - - bit.ly - - - j.mp - - - 181, 71 - - - 246, 20 - - - 55 - - - ComboBoxAutoShortUrlFirst - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 10 - - - True - - - NoControl - - - 19, 74 - - - 154, 12 - - - 54 - - - URL自動短縮で優先的に使用 - - - Label71 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 11 - - - True - - - NoControl - - - 22, 21 - - - 122, 16 - - - 51 - - - 短縮URLを解決する - - - CheckTinyURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - 12 - - True - - - NoControl - - - 22, 42 - - - 242, 16 - - - 53 - - - 入力欄のURLを投稿する際に自動で短縮する - - - CheckAutoConvertUrl - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 13 - - - Fill - - - False - - - 0, 0 - - - 525, 368 - - - 77 - - - False - - - TweetActPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SplitContainer1.Panel2 - - - 11 - - - True - - - NoControl - - - 396, 119 - - - 75, 22 - - - 14 - - - 文字色 - - - btnRetweet - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 0 - - - NoControl - - - 214, 120 - - - 104, 19 - - - 13 - - - This is sample. - - - MiddleLeft - - - lblRetweet - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 1 - - - True - - - NoControl - - - 9, 123 - - - 50, 12 - - - 12 - - - ReTweet - - - Label80 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 2 - - - True - - - NoControl - - - 194, 236 - - - 90, 22 - - - 51 - - - デフォルトに戻す - - - ButtonBackToDefaultFontColor - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 3 - - - True - - - NoControl - - - 396, 169 - - - 75, 22 - - - 20 - - - 文字色 - - - btnDetailLink - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 4 - - - NoControl - - - 214, 170 - - - 104, 19 - - - 19 - - - This is sample. - - - MiddleLeft - - - lblDetailLink - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 5 - - - True - - - NoControl - - - 8, 173 - - - 77, 12 - - - 18 - - - 発言詳細リンク - - - Label18 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 6 - - - True - - - NoControl - - - 396, 44 - - - 75, 22 - - - 5 - - - フォント&&色 - - - btnUnread - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 7 - - - NoControl - - - 214, 45 - - - 104, 19 - - - 4 - - - This is sample. - - - MiddleLeft - - - lblUnread - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 8 - - - True - - - NoControl - - - 9, 48 - - - 62, 12 - - - 3 - - - 未読フォント - - - Label20 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 9 - - - True - - - NoControl - - - 396, 194 - - - 75, 22 - - - 23 - - - 背景色 - - - btnDetailBack - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 10 - - - NoControl - - - 214, 195 - - - 104, 19 - - - 22 - - - This is sample. - - - MiddleLeft - - - lblDetailBackcolor - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 11 - - - True - - - NoControl - - - 9, 198 - - - 89, 12 - - - 21 - - - 発言詳細背景色 - - - Label37 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 12 - - - True - - - NoControl - - - 396, 144 - - - 75, 22 - - - 17 - - - フォント&&色 - - - btnDetail - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 13 - - - NoControl - - - 214, 145 - - - 104, 19 - - - 16 - - - This is sample. - - - MiddleLeft - - - lblDetail - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 14 - - - True - - - NoControl - - - 9, 148 - - - 77, 12 - - - 15 - - - 発言詳細文字 - - - Label26 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 15 - - - True - - - NoControl - - - 396, 94 - - - 75, 22 - - - 11 - - - 文字色 - - - btnOWL - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 16 - - - NoControl - - - 214, 95 - - - 104, 19 - - - 10 - - - This is sample. - - - MiddleLeft - - - lblOWL - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 17 - - - True - - - NoControl - - - 9, 98 - - - 63, 12 - - - 9 - - - 片思い発言 - - - Label24 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 18 - - - True - - - NoControl - - - 396, 69 - - - 75, 22 - - - 8 - - - 文字色 - - - btnFav - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 19 - - - NoControl - - - 214, 70 - - - 104, 19 - - - 7 - - - This is sample. - - - MiddleLeft - - - lblFav - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 20 - - - True - - - NoControl - - - 9, 73 - - - 48, 12 - - - 6 - - - Fav発言 - - - Label22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 21 - - - True - - - NoControl - - - 396, 19 - - - 75, 22 - - - 2 - - - フォント&&色 - - - btnListFont - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 22 - - - NoControl - - - 214, 20 - - - 104, 19 - - - 1 - - - This is sample. - - - MiddleLeft - - - lblListFont - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 23 - - - True - - - NoControl - - - 9, 23 - - - 62, 12 - - - 0 - - - リストフォント - - - Label61 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 24 - - - 22, 18 - - - 484, 267 - - - 1 - - - フォント&色設定 - - - GroupBox1 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - FontPanel - - - 0 - - - Fill - - - False - - - 0, 0 - - - 525, 368 - - - 51 - - - False - - - FontPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - SplitContainer1.Panel2 - - - 12 - SplitContainer1.Panel2 Deleted: branches/SettingDialog/Tween/Setting.Designer.vb =================================================================== --- branches/SettingDialog/Tween/Setting.Designer.vb 2010-12-19 12:30:57 UTC (rev 1226) +++ branches/SettingDialog/Tween/Setting.Designer.vb 2010-12-19 23:26:16 UTC (rev 1227) @@ -1,2060 +0,0 @@ -?Option Strict On - _ -Partial Class Setting - Inherits System.Windows.Forms.Form - - 'フォームがコンポーネントの一覧をクリーンアップするために dispose をオーバーライドします。 - _ - Protected Overrides Sub Dispose(ByVal disposing As Boolean) - Try - If disposing AndAlso components IsNot Nothing Then - components.Dispose() - End If - Finally - MyBase.Dispose(disposing) - End Try - End Sub - - 'Windows フォーム デザイナで必要です。 - Private components As System.ComponentModel.IContainer - - 'メモ: 以下のプロシージャは Windows フォーム デザイナで必要です。 - 'Windows フォーム デザイナを使用して変更できます。 - 'コード エディタを使って変更しないでください。 - _ - Private Sub InitializeComponent() - Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Setting)) - Me.Label1 = New System.Windows.Forms.Label() - Me.Label2 = New System.Windows.Forms.Label() - Me.Username = New System.Windows.Forms.TextBox() - Me.Password = New System.Windows.Forms.TextBox() - Me.Save = New System.Windows.Forms.Button() - Me.Cancel = New System.Windows.Forms.Button() - Me.Label3 = New System.Windows.Forms.Label() - Me.TimelinePeriod = New System.Windows.Forms.TextBox() - Me.DMPeriod = New System.Windows.Forms.TextBox() - Me.Label5 = New System.Windows.Forms.Label() - Me.Label9 = New System.Windows.Forms.Label() - Me.StartupReaded = New System.Windows.Forms.CheckBox() - Me.Label11 = New System.Windows.Forms.Label() - Me.Label12 = New System.Windows.Forms.Label() - Me.StatusText = New System.Windows.Forms.TextBox() - Me.PlaySnd = New System.Windows.Forms.CheckBox() - Me.Label14 = New System.Windows.Forms.Label() - Me.Label15 = New System.Windows.Forms.Label() - Me.OneWayLv = New System.Windows.Forms.CheckBox() - Me.Label16 = New System.Windows.Forms.Label() - Me.GroupBox1 = New System.Windows.Forms.GroupBox() - Me.btnRetweet = New System.Windows.Forms.Button() - Me.lblRetweet = New System.Windows.Forms.Label() - Me.Label80 = New System.Windows.Forms.Label() - Me.ButtonBackToDefaultFontColor = New System.Windows.Forms.Button() - Me.btnDetailLink = New System.Windows.Forms.Button() - Me.lblDetailLink = New System.Windows.Forms.Label() - Me.Label18 = New System.Windows.Forms.Label() - Me.btnInputFont = New System.Windows.Forms.Button() - Me.lblInputFont = New System.Windows.Forms.Label() - Me.Label65 = New System.Windows.Forms.Label() - Me.btnInputBackcolor = New System.Windows.Forms.Button() - Me.lblInputBackcolor = New System.Windows.Forms.Label() - Me.Label52 = New System.Windows.Forms.Label() - Me.btnUnread = New System.Windows.Forms.Button() - Me.lblUnread = New System.Windows.Forms.Label() - Me.Label20 = New System.Windows.Forms.Label() - Me.btnAtTo = New System.Windows.Forms.Button() - Me.lblAtTo = New System.Windows.Forms.Label() - Me.Label49 = New System.Windows.Forms.Label() - Me.btnDetailBack = New System.Windows.Forms.Button() - Me.lblDetailBackcolor = New System.Windows.Forms.Label() - Me.Label37 = New System.Windows.Forms.Label() - Me.btnListBack = New System.Windows.Forms.Button() - Me.lblListBackcolor = New System.Windows.Forms.Label() - Me.Label19 = New System.Windows.Forms.Label() - Me.btnAtFromTarget = New System.Windows.Forms.Button() - Me.lblAtFromTarget = New System.Windows.Forms.Label() - Me.Label28 = New System.Windows.Forms.Label() - Me.btnAtTarget = New System.Windows.Forms.Button() - Me.lblAtTarget = New System.Windows.Forms.Label() - Me.Label30 = New System.Windows.Forms.Label() - Me.btnTarget = New System.Windows.Forms.Button() - Me.lblTarget = New System.Windows.Forms.Label() - Me.Label32 = New System.Windows.Forms.Label() - Me.btnAtSelf = New System.Windows.Forms.Button() - Me.lblAtSelf = New System.Windows.Forms.Label() - Me.Label34 = New System.Windows.Forms.Label() - Me.btnSelf = New System.Windows.Forms.Button() - Me.lblSelf = New System.Windows.Forms.Label() - Me.Label36 = New System.Windows.Forms.Label() - Me.btnDetail = New System.Windows.Forms.Button() - Me.lblDetail = New System.Windows.Forms.Label() - Me.Label26 = New System.Windows.Forms.Label() - Me.btnOWL = New System.Windows.Forms.Button() - Me.lblOWL = New System.Windows.Forms.Label() - Me.Label24 = New System.Windows.Forms.Label() - Me.btnFav = New System.Windows.Forms.Button() - Me.lblFav = New System.Windows.Forms.Label() - Me.Label22 = New System.Windows.Forms.Label() - Me.btnListFont = New System.Windows.Forms.Button() - Me.lblListFont = New System.Windows.Forms.Label() - Me.Label61 = New System.Windows.Forms.Label() - Me.FontDialog1 = New System.Windows.Forms.FontDialog() - Me.ColorDialog1 = New System.Windows.Forms.ColorDialog() - Me.cmbNameBalloon = New System.Windows.Forms.ComboBox() - Me.Label10 = New System.Windows.Forms.Label() - Me.CheckUseRecommendStatus = New System.Windows.Forms.CheckBox() - Me.CmbDateTimeFormat = New System.Windows.Forms.ComboBox() - Me.Label23 = New System.Windows.Forms.Label() - Me.CheckBox3 = New System.Windows.Forms.CheckBox() - Me.Label25 = New System.Windows.Forms.Label() - Me.Label27 = New System.Windows.Forms.Label() - Me.TextBox3 = New System.Windows.Forms.TextBox() - Me.IconSize = New System.Windows.Forms.ComboBox() - Me.Label38 = New System.Windows.Forms.Label() - Me.UReadMng = New System.Windows.Forms.CheckBox() - Me.Label39 = New System.Windows.Forms.Label() - Me.CheckReadOldPosts = New System.Windows.Forms.CheckBox() - Me.Label40 = New System.Windows.Forms.Label() - Me.CheckCloseToExit = New System.Windows.Forms.CheckBox() - Me.Label41 = New System.Windows.Forms.Label() - Me.CheckMinimizeToTray = New System.Windows.Forms.CheckBox() - Me.BrowserPathText = New System.Windows.Forms.TextBox() - Me.Label44 = New System.Windows.Forms.Label() - Me.CheckDispUsername = New System.Windows.Forms.CheckBox() - Me.Label46 = New System.Windows.Forms.Label() - Me.Label45 = New System.Windows.Forms.Label() - Me.ComboDispTitle = New System.Windows.Forms.ComboBox() - Me.Label47 = New System.Windows.Forms.Label() - Me.TabControl1 = New System.Windows.Forms.TabControl() - Me.TabPage1 = New System.Windows.Forms.TabPage() - Me.GroupBox4 = New System.Windows.Forms.GroupBox() - Me.UserstreamPeriod = New System.Windows.Forms.TextBox() - Me.Label83 = New System.Windows.Forms.Label() - Me.Label70 = New System.Windows.Forms.Label() - Me.StartupUserstreamCheck = New System.Windows.Forms.CheckBox() - Me.ButtonApiCalc = New System.Windows.Forms.Button() - Me.LabelPostAndGet = New System.Windows.Forms.Label() - Me.LabelApiUsing = New System.Windows.Forms.Label() - Me.Label33 = New System.Windows.Forms.Label() - Me.ListsPeriod = New System.Windows.Forms.TextBox() - Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() - Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() - Me.Label6 = New System.Windows.Forms.Label() - Me.AuthClearButton = New System.Windows.Forms.Button() - Me.AuthUserLabel = New System.Windows.Forms.Label() - Me.AuthStateLabel = New System.Windows.Forms.Label() - Me.Label4 = New System.Windows.Forms.Label() - Me.AuthorizeButton = New System.Windows.Forms.Button() - Me.TextCountApiReply = New System.Windows.Forms.TextBox() - Me.Label7 = New System.Windows.Forms.Label() - Me.PubSearchPeriod = New System.Windows.Forms.TextBox() - Me.Label69 = New System.Windows.Forms.Label() - Me.ReplyPeriod = New System.Windows.Forms.TextBox() - Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() - Me.Label67 = New System.Windows.Forms.Label() - Me.TextCountApi = New System.Windows.Forms.TextBox() - Me.Label54 = New System.Windows.Forms.Label() - Me.CheckStartupFollowers = New System.Windows.Forms.CheckBox() - Me.Label51 = New System.Windows.Forms.Label() - Me.CheckStartupVersion = New System.Windows.Forms.CheckBox() - Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() - Me.Label74 = New System.Windows.Forms.Label() - Me.chkGetFav = New System.Windows.Forms.CheckBox() - Me.TabPage2 = New System.Windows.Forms.TabPage() - Me.ComboBoxPostKeySelect = New System.Windows.Forms.ComboBox() - Me.CheckRetweetNoConfirm = New System.Windows.Forms.CheckBox() - Me.Label42 = New System.Windows.Forms.Label() - Me.GroupBox3 = New System.Windows.Forms.GroupBox() - Me.HotkeyCheck = New System.Windows.Forms.CheckBox() - Me.HotkeyCode = New System.Windows.Forms.Label() - Me.HotkeyText = New System.Windows.Forms.TextBox() - Me.HotkeyWin = New System.Windows.Forms.CheckBox() - Me.HotkeyAlt = New System.Windows.Forms.CheckBox() - Me.HotkeyShift = New System.Windows.Forms.CheckBox() - Me.HotkeyCtrl = New System.Windows.Forms.CheckBox() - Me.Label82 = New System.Windows.Forms.Label() - Me.CheckHashSupple = New System.Windows.Forms.CheckBox() - Me.Label79 = New System.Windows.Forms.Label() - Me.CheckAtIdSupple = New System.Windows.Forms.CheckBox() - Me.TextBitlyPw = New System.Windows.Forms.TextBox() - Me.Label77 = New System.Windows.Forms.Label() - Me.TextBitlyId = New System.Windows.Forms.TextBox() - Me.Label76 = New System.Windows.Forms.Label() - Me.ComboBoxAutoShortUrlFirst = New System.Windows.Forms.ComboBox() - Me.Label71 = New System.Windows.Forms.Label() - Me.CheckAutoConvertUrl = New System.Windows.Forms.CheckBox() - Me.Label29 = New System.Windows.Forms.Label() - Me.Label57 = New System.Windows.Forms.Label() - Me.Label56 = New System.Windows.Forms.Label() - Me.CheckFavRestrict = New System.Windows.Forms.CheckBox() - Me.CheckTinyURL = New System.Windows.Forms.CheckBox() - Me.Label50 = New System.Windows.Forms.Label() - Me.Button3 = New System.Windows.Forms.Button() - Me.TabPage3 = New System.Windows.Forms.TabPage() - Me.Label35 = New System.Windows.Forms.Label() - Me.CheckPreviewEnable = New System.Windows.Forms.CheckBox() - Me.Label81 = New System.Windows.Forms.Label() - Me.LanguageCombo = New System.Windows.Forms.ComboBox() - Me.Label13 = New System.Windows.Forms.Label() - Me.CheckAlwaysTop = New System.Windows.Forms.CheckBox() - Me.Label58 = New System.Windows.Forms.Label() - Me.Label21 = New System.Windows.Forms.Label() - Me.CheckSortOrderLock = New System.Windows.Forms.CheckBox() - Me.Label78 = New System.Windows.Forms.Label() - Me.CheckShowGrid = New System.Windows.Forms.CheckBox() - Me.Label75 = New System.Windows.Forms.Label() - Me.CheckMonospace = New System.Windows.Forms.CheckBox() - Me.Label73 = New System.Windows.Forms.Label() - Me.chkReadOwnPost = New System.Windows.Forms.CheckBox() - Me.ReplyIconStateCombo = New System.Windows.Forms.ComboBox() - Me.Label72 = New System.Windows.Forms.Label() - Me.Label43 = New System.Windows.Forms.Label() - Me.Label48 = New System.Windows.Forms.Label() - Me.ChkNewMentionsBlink = New System.Windows.Forms.CheckBox() - Me.chkTabIconDisp = New System.Windows.Forms.CheckBox() - Me.Label68 = New System.Windows.Forms.Label() - Me.CheckBalloonLimit = New System.Windows.Forms.CheckBox() - Me.LabelDateTimeFormatApplied = New System.Windows.Forms.Label() - Me.Label62 = New System.Windows.Forms.Label() - Me.Label17 = New System.Windows.Forms.Label() - Me.chkUnreadStyle = New System.Windows.Forms.CheckBox() - Me.TabPage4 = New System.Windows.Forms.TabPage() - Me.TabPage5 = New System.Windows.Forms.TabPage() - Me.CheckEnableBasicAuth = New System.Windows.Forms.CheckBox() - Me.TwitterSearchAPIText = New System.Windows.Forms.TextBox() - Me.Label31 = New System.Windows.Forms.Label() - Me.TwitterAPIText = New System.Windows.Forms.TextBox() - Me.Label8 = New System.Windows.Forms.Label() - Me.CheckUseSsl = New System.Windows.Forms.CheckBox() - Me.Label64 = New System.Windows.Forms.Label() - Me.ConnectionTimeOut = New System.Windows.Forms.TextBox() - Me.Label63 = New System.Windows.Forms.Label() - Me.GroupBox2 = New System.Windows.Forms.GroupBox() - Me.Label55 = New System.Windows.Forms.Label() - Me.TextProxyPassword = New System.Windows.Forms.TextBox() - Me.LabelProxyPassword = New System.Windows.Forms.Label() - Me.TextProxyUser = New System.Windows.Forms.TextBox() - Me.LabelProxyUser = New System.Windows.Forms.Label() - Me.TextProxyPort = New System.Windows.Forms.TextBox() - Me.LabelProxyPort = New System.Windows.Forms.Label() - Me.TextProxyAddress = New System.Windows.Forms.TextBox() - Me.LabelProxyAddress = New System.Windows.Forms.Label() - Me.RadioProxySpecified = New System.Windows.Forms.RadioButton() - Me.RadioProxyIE = New System.Windows.Forms.RadioButton() - Me.RadioProxyNone = New System.Windows.Forms.RadioButton() - Me.TabPage6 = New System.Windows.Forms.TabPage() - Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() - Me.SearchTextCountApi = New System.Windows.Forms.TextBox() - Me.Label66 = New System.Windows.Forms.Label() - Me.FirstTextCountApi = New System.Windows.Forms.TextBox() - Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() - Me.Label53 = New System.Windows.Forms.Label() - Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() - Me.CheckNicoms = New System.Windows.Forms.CheckBox() - Me.Label60 = New System.Windows.Forms.Label() - Me.ComboBoxOutputzUrlmode = New System.Windows.Forms.ComboBox() - Me.Label59 = New System.Windows.Forms.Label() - Me.TextBoxOutputzKey = New System.Windows.Forms.TextBox() - Me.CheckOutputz = New System.Windows.Forms.CheckBox() - Me.GroupBox1.SuspendLayout() - Me.TabControl1.SuspendLayout() - Me.TabPage1.SuspendLayout() - Me.GroupBox4.SuspendLayout() - Me.TabPage2.SuspendLayout() - Me.GroupBox3.SuspendLayout() - Me.TabPage3.SuspendLayout() - Me.TabPage4.SuspendLayout() - Me.TabPage5.SuspendLayout() - Me.GroupBox2.SuspendLayout() - Me.TabPage6.SuspendLayout() - Me.SuspendLayout() - ' - 'Label1 - ' - resources.ApplyResources(Me.Label1, "Label1") - Me.Label1.Name = "Label1" - ' - 'Label2 - ' - resources.ApplyResources(Me.Label2, "Label2") - Me.Label2.Name = "Label2" - ' - 'Username - ' - resources.ApplyResources(Me.Username, "Username") - Me.Username.Name = "Username" - ' - 'Password - ' - resources.ApplyResources(Me.Password, "Password") - Me.Password.Name = "Password" - Me.Password.UseSystemPasswordChar = True - ' - 'Save - ' - resources.ApplyResources(Me.Save, "Save") - Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK - Me.Save.Name = "Save" - Me.Save.UseVisualStyleBackColor = True - ' - 'Cancel - ' - resources.ApplyResources(Me.Cancel, "Cancel") - Me.Cancel.CausesValidation = False - Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel - Me.Cancel.Name = "Cancel" - Me.Cancel.UseVisualStyleBackColor = True - ' - 'Label3 - ' - resources.ApplyResources(Me.Label3, "Label3") - Me.Label3.Name = "Label3" - ' - 'TimelinePeriod - ' - resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") - Me.TimelinePeriod.Name = "TimelinePeriod" - ' - 'DMPeriod - ' - resources.ApplyResources(Me.DMPeriod, "DMPeriod") - Me.DMPeriod.Name = "DMPeriod" - ' - 'Label5 - ' - resources.ApplyResources(Me.Label5, "Label5") - Me.Label5.Name = "Label5" - ' - 'Label9 - ' - resources.ApplyResources(Me.Label9, "Label9") - Me.Label9.Name = "Label9" - ' - 'StartupReaded - ' - resources.ApplyResources(Me.StartupReaded, "StartupReaded") - Me.StartupReaded.Name = "StartupReaded" - Me.StartupReaded.UseVisualStyleBackColor = True - ' - 'Label11 - ' - resources.ApplyResources(Me.Label11, "Label11") - Me.Label11.Name = "Label11" - ' - 'Label12 - ' - resources.ApplyResources(Me.Label12, "Label12") - Me.Label12.Name = "Label12" - ' - 'StatusText - ' - resources.ApplyResources(Me.StatusText, "StatusText") - Me.StatusText.Name = "StatusText" - ' - 'PlaySnd - ' - resources.ApplyResources(Me.PlaySnd, "PlaySnd") - Me.PlaySnd.Name = "PlaySnd" - Me.PlaySnd.UseVisualStyleBackColor = True - ' - 'Label14 - ' - resources.ApplyResources(Me.Label14, "Label14") - Me.Label14.Name = "Label14" - ' - 'Label15 - ' - resources.ApplyResources(Me.Label15, "Label15") - Me.Label15.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label15.Name = "Label15" - ' - 'OneWayLv - ' - resources.ApplyResources(Me.OneWayLv, "OneWayLv") - Me.OneWayLv.Name = "OneWayLv" - Me.OneWayLv.UseVisualStyleBackColor = True - ' - 'Label16 - ' - resources.ApplyResources(Me.Label16, "Label16") - Me.Label16.Name = "Label16" - ' - 'GroupBox1 - ' - resources.ApplyResources(Me.GroupBox1, "GroupBox1") - Me.GroupBox1.Controls.Add(Me.btnRetweet) - Me.GroupBox1.Controls.Add(Me.lblRetweet) - Me.GroupBox1.Controls.Add(Me.Label80) - Me.GroupBox1.Controls.Add(Me.ButtonBackToDefaultFontColor) - Me.GroupBox1.Controls.Add(Me.btnDetailLink) - Me.GroupBox1.Controls.Add(Me.lblDetailLink) - Me.GroupBox1.Controls.Add(Me.Label18) - Me.GroupBox1.Controls.Add(Me.btnInputFont) - Me.GroupBox1.Controls.Add(Me.lblInputFont) - Me.GroupBox1.Controls.Add(Me.Label65) - Me.GroupBox1.Controls.Add(Me.btnInputBackcolor) - Me.GroupBox1.Controls.Add(Me.lblInputBackcolor) - Me.GroupBox1.Controls.Add(Me.Label52) - Me.GroupBox1.Controls.Add(Me.btnUnread) - Me.GroupBox1.Controls.Add(Me.lblUnread) - Me.GroupBox1.Controls.Add(Me.Label20) - Me.GroupBox1.Controls.Add(Me.btnAtTo) - Me.GroupBox1.Controls.Add(Me.lblAtTo) - Me.GroupBox1.Controls.Add(Me.Label49) - Me.GroupBox1.Controls.Add(Me.btnDetailBack) - Me.GroupBox1.Controls.Add(Me.lblDetailBackcolor) - Me.GroupBox1.Controls.Add(Me.Label37) - Me.GroupBox1.Controls.Add(Me.btnListBack) - Me.GroupBox1.Controls.Add(Me.lblListBackcolor) - Me.GroupBox1.Controls.Add(Me.Label19) - Me.GroupBox1.Controls.Add(Me.btnAtFromTarget) - Me.GroupBox1.Controls.Add(Me.lblAtFromTarget) - Me.GroupBox1.Controls.Add(Me.Label28) - Me.GroupBox1.Controls.Add(Me.btnAtTarget) - Me.GroupBox1.Controls.Add(Me.lblAtTarget) - Me.GroupBox1.Controls.Add(Me.Label30) - Me.GroupBox1.Controls.Add(Me.btnTarget) - Me.GroupBox1.Controls.Add(Me.lblTarget) - Me.GroupBox1.Controls.Add(Me.Label32) - Me.GroupBox1.Controls.Add(Me.btnAtSelf) - Me.GroupBox1.Controls.Add(Me.lblAtSelf) - Me.GroupBox1.Controls.Add(Me.Label34) - Me.GroupBox1.Controls.Add(Me.btnSelf) - Me.GroupBox1.Controls.Add(Me.lblSelf) - Me.GroupBox1.Controls.Add(Me.Label36) - Me.GroupBox1.Controls.Add(Me.btnDetail) - Me.GroupBox1.Controls.Add(Me.lblDetail) - Me.GroupBox1.Controls.Add(Me.Label26) - Me.GroupBox1.Controls.Add(Me.btnOWL) - Me.GroupBox1.Controls.Add(Me.lblOWL) - Me.GroupBox1.Controls.Add(Me.Label24) - Me.GroupBox1.Controls.Add(Me.btnFav) - Me.GroupBox1.Controls.Add(Me.lblFav) - Me.GroupBox1.Controls.Add(Me.Label22) - Me.GroupBox1.Controls.Add(Me.btnListFont) - Me.GroupBox1.Controls.Add(Me.lblListFont) - Me.GroupBox1.Controls.Add(Me.Label61) - Me.GroupBox1.Name = "GroupBox1" - Me.GroupBox1.TabStop = False - ' - 'btnRetweet - ' - resources.ApplyResources(Me.btnRetweet, "btnRetweet") - Me.btnRetweet.Name = "btnRetweet" - Me.btnRetweet.UseVisualStyleBackColor = True - ' - 'lblRetweet - ' - resources.ApplyResources(Me.lblRetweet, "lblRetweet") - Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblRetweet.Name = "lblRetweet" - ' - 'Label80 - ' - resources.ApplyResources(Me.Label80, "Label80") - Me.Label80.Name = "Label80" - ' - 'ButtonBackToDefaultFontColor - ' - resources.ApplyResources(Me.ButtonBackToDefaultFontColor, "ButtonBackToDefaultFontColor") - Me.ButtonBackToDefaultFontColor.Name = "ButtonBackToDefaultFontColor" - Me.ButtonBackToDefaultFontColor.UseVisualStyleBackColor = True - ' - 'btnDetailLink - ' - resources.ApplyResources(Me.btnDetailLink, "btnDetailLink") - Me.btnDetailLink.Name = "btnDetailLink" - Me.btnDetailLink.UseVisualStyleBackColor = True - ' - 'lblDetailLink - ' - resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") - Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblDetailLink.Name = "lblDetailLink" - ' - 'Label18 - ' - resources.ApplyResources(Me.Label18, "Label18") - Me.Label18.Name = "Label18" - ' - 'btnInputFont - ' - resources.ApplyResources(Me.btnInputFont, "btnInputFont") - Me.btnInputFont.Name = "btnInputFont" - Me.btnInputFont.UseVisualStyleBackColor = True - ' - 'lblInputFont - ' - resources.ApplyResources(Me.lblInputFont, "lblInputFont") - Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblInputFont.Name = "lblInputFont" - ' - 'Label65 - ' - resources.ApplyResources(Me.Label65, "Label65") - Me.Label65.Name = "Label65" - ' - 'btnInputBackcolor - ' - resources.ApplyResources(Me.btnInputBackcolor, "btnInputBackcolor") - Me.btnInputBackcolor.Name = "btnInputBackcolor" - Me.btnInputBackcolor.UseVisualStyleBackColor = True - ' - 'lblInputBackcolor - ' - resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") - Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblInputBackcolor.Name = "lblInputBackcolor" - ' - 'Label52 - ' - resources.ApplyResources(Me.Label52, "Label52") - Me.Label52.Name = "Label52" - ' - 'btnUnread - ' - resources.ApplyResources(Me.btnUnread, "btnUnread") - Me.btnUnread.Name = "btnUnread" - Me.btnUnread.UseVisualStyleBackColor = True - ' - 'lblUnread - ' - resources.ApplyResources(Me.lblUnread, "lblUnread") - Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblUnread.Name = "lblUnread" - ' - 'Label20 - ' - resources.ApplyResources(Me.Label20, "Label20") - Me.Label20.Name = "Label20" - ' - 'btnAtTo - ' - resources.ApplyResources(Me.btnAtTo, "btnAtTo") - Me.btnAtTo.Name = "btnAtTo" - Me.btnAtTo.UseVisualStyleBackColor = True - ' - 'lblAtTo - ' - resources.ApplyResources(Me.lblAtTo, "lblAtTo") - Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtTo.Name = "lblAtTo" - ' - 'Label49 - ' - resources.ApplyResources(Me.Label49, "Label49") - Me.Label49.Name = "Label49" - ' - 'btnDetailBack - ' - resources.ApplyResources(Me.btnDetailBack, "btnDetailBack") - Me.btnDetailBack.Name = "btnDetailBack" - Me.btnDetailBack.UseVisualStyleBackColor = True - ' - 'lblDetailBackcolor - ' - resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") - Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblDetailBackcolor.Name = "lblDetailBackcolor" - ' - 'Label37 - ' - resources.ApplyResources(Me.Label37, "Label37") - Me.Label37.Name = "Label37" - ' - 'btnListBack - ' - resources.ApplyResources(Me.btnListBack, "btnListBack") - Me.btnListBack.Name = "btnListBack" - Me.btnListBack.UseVisualStyleBackColor = True - ' - 'lblListBackcolor - ' - resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") - Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblListBackcolor.Name = "lblListBackcolor" - ' - 'Label19 - ' - resources.ApplyResources(Me.Label19, "Label19") - Me.Label19.Name = "Label19" - ' - 'btnAtFromTarget - ' - resources.ApplyResources(Me.btnAtFromTarget, "btnAtFromTarget") - Me.btnAtFromTarget.Name = "btnAtFromTarget" - Me.btnAtFromTarget.UseVisualStyleBackColor = True - ' - 'lblAtFromTarget - ' - resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") - Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtFromTarget.Name = "lblAtFromTarget" - ' - 'Label28 - ' - resources.ApplyResources(Me.Label28, "Label28") - Me.Label28.Name = "Label28" - ' - 'btnAtTarget - ' - resources.ApplyResources(Me.btnAtTarget, "btnAtTarget") - Me.btnAtTarget.Name = "btnAtTarget" - Me.btnAtTarget.UseVisualStyleBackColor = True - ' - 'lblAtTarget - ' - resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") - Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtTarget.Name = "lblAtTarget" - ' - 'Label30 - ' - resources.ApplyResources(Me.Label30, "Label30") - Me.Label30.Name = "Label30" - ' - 'btnTarget - ' - resources.ApplyResources(Me.btnTarget, "btnTarget") - Me.btnTarget.Name = "btnTarget" - Me.btnTarget.UseVisualStyleBackColor = True - ' - 'lblTarget - ' - resources.ApplyResources(Me.lblTarget, "lblTarget") - Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblTarget.Name = "lblTarget" - ' - 'Label32 - ' - resources.ApplyResources(Me.Label32, "Label32") - Me.Label32.Name = "Label32" - ' - 'btnAtSelf - ' - resources.ApplyResources(Me.btnAtSelf, "btnAtSelf") - Me.btnAtSelf.Name = "btnAtSelf" - Me.btnAtSelf.UseVisualStyleBackColor = True - ' - 'lblAtSelf - ' - resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") - Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtSelf.Name = "lblAtSelf" - ' - 'Label34 - ' - resources.ApplyResources(Me.Label34, "Label34") - Me.Label34.Name = "Label34" - ' - 'btnSelf - ' - resources.ApplyResources(Me.btnSelf, "btnSelf") - Me.btnSelf.Name = "btnSelf" - Me.btnSelf.UseVisualStyleBackColor = True - ' - 'lblSelf - ' - resources.ApplyResources(Me.lblSelf, "lblSelf") - Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblSelf.Name = "lblSelf" - ' - 'Label36 - ' - resources.ApplyResources(Me.Label36, "Label36") - Me.Label36.Name = "Label36" - ' - 'btnDetail - ' - resources.ApplyResources(Me.btnDetail, "btnDetail") - Me.btnDetail.Name = "btnDetail" - Me.btnDetail.UseVisualStyleBackColor = True - ' - 'lblDetail - ' - resources.ApplyResources(Me.lblDetail, "lblDetail") - Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblDetail.Name = "lblDetail" - ' - 'Label26 - ' - resources.ApplyResources(Me.Label26, "Label26") - Me.Label26.Name = "Label26" - ' - 'btnOWL - ' - resources.ApplyResources(Me.btnOWL, "btnOWL") - Me.btnOWL.Name = "btnOWL" - Me.btnOWL.UseVisualStyleBackColor = True - ' - 'lblOWL - ' - resources.ApplyResources(Me.lblOWL, "lblOWL") - Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblOWL.Name = "lblOWL" - ' - 'Label24 - ' - resources.ApplyResources(Me.Label24, "Label24") - Me.Label24.Name = "Label24" - ' - 'btnFav - ' - resources.ApplyResources(Me.btnFav, "btnFav") - Me.btnFav.Name = "btnFav" - Me.btnFav.UseVisualStyleBackColor = True - ' - 'lblFav - ' - resources.ApplyResources(Me.lblFav, "lblFav") - Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblFav.Name = "lblFav" - ' - 'Label22 - ' - resources.ApplyResources(Me.Label22, "Label22") - Me.Label22.Name = "Label22" - ' - 'btnListFont - ' - resources.ApplyResources(Me.btnListFont, "btnListFont") - Me.btnListFont.Name = "btnListFont" - Me.btnListFont.UseVisualStyleBackColor = True - ' - 'lblListFont - ' - resources.ApplyResources(Me.lblListFont, "lblListFont") - Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblListFont.Name = "lblListFont" - ' - 'Label61 - ' - resources.ApplyResources(Me.Label61, "Label61") - Me.Label61.Name = "Label61" - ' - 'cmbNameBalloon - ' - resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") - Me.cmbNameBalloon.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.cmbNameBalloon.FormattingEnabled = True - Me.cmbNameBalloon.Items.AddRange(New Object() {resources.GetString("cmbNameBalloon.Items"), resources.GetString("cmbNameBalloon.Items1"), resources.GetString("cmbNameBalloon.Items2")}) - Me.cmbNameBalloon.Name = "cmbNameBalloon" - ' - 'Label10 - ' - resources.ApplyResources(Me.Label10, "Label10") - Me.Label10.Name = "Label10" - ' - 'CheckUseRecommendStatus - ' - resources.ApplyResources(Me.CheckUseRecommendStatus, "CheckUseRecommendStatus") - Me.CheckUseRecommendStatus.Name = "CheckUseRecommendStatus" - Me.CheckUseRecommendStatus.UseVisualStyleBackColor = True - ' - 'CmbDateTimeFormat - ' - resources.ApplyResources(Me.CmbDateTimeFormat, "CmbDateTimeFormat") - Me.CmbDateTimeFormat.Items.AddRange(New Object() {resources.GetString("CmbDateTimeFormat.Items"), resources.GetString("CmbDateTimeFormat.Items1"), resources.GetString("CmbDateTimeFormat.Items2"), resources.GetString("CmbDateTimeFormat.Items3"), resources.GetString("CmbDateTimeFormat.Items4"), resources.GetString("CmbDateTimeFormat.Items5"), resources.GetString("CmbDateTimeFormat.Items6"), resources.GetString("CmbDateTimeFormat.Items7"), resources.GetString("CmbDateTimeFormat.Items8"), resources.GetString("CmbDateTimeFormat.Items9"), resources.GetString("CmbDateTimeFormat.Items10")}) - Me.CmbDateTimeFormat.Name = "CmbDateTimeFormat" - ' - 'Label23 - ' - resources.ApplyResources(Me.Label23, "Label23") - Me.Label23.Name = "Label23" - ' - 'CheckBox3 - ' - resources.ApplyResources(Me.CheckBox3, "CheckBox3") - Me.CheckBox3.Name = "CheckBox3" - Me.CheckBox3.UseVisualStyleBackColor = True - ' - 'Label25 - ' - resources.ApplyResources(Me.Label25, "Label25") - Me.Label25.Name = "Label25" - ' - 'Label27 - ' - resources.ApplyResources(Me.Label27, "Label27") - Me.Label27.Name = "Label27" - ' - 'TextBox3 - ' - resources.ApplyResources(Me.TextBox3, "TextBox3") - Me.TextBox3.Name = "TextBox3" - ' - 'IconSize - ' - resources.ApplyResources(Me.IconSize, "IconSize") - Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.IconSize.FormattingEnabled = True - Me.IconSize.Items.AddRange(New Object() {resources.GetString("IconSize.Items"), resources.GetString("IconSize.Items1"), resources.GetString("IconSize.Items2"), resources.GetString("IconSize.Items3"), resources.GetString("IconSize.Items4")}) - Me.IconSize.Name = "IconSize" - ' - 'Label38 - ' - resources.ApplyResources(Me.Label38, "Label38") - Me.Label38.Name = "Label38" - ' - 'UReadMng - ' - resources.ApplyResources(Me.UReadMng, "UReadMng") - Me.UReadMng.Name = "UReadMng" - Me.UReadMng.UseVisualStyleBackColor = True - ' - 'Label39 - ' - resources.ApplyResources(Me.Label39, "Label39") - Me.Label39.Name = "Label39" - ' - 'CheckReadOldPosts - ' - resources.ApplyResources(Me.CheckReadOldPosts, "CheckReadOldPosts") - Me.CheckReadOldPosts.Name = "CheckReadOldPosts" - Me.CheckReadOldPosts.UseVisualStyleBackColor = True - ' - 'Label40 - ' - resources.ApplyResources(Me.Label40, "Label40") - Me.Label40.Name = "Label40" - ' - 'CheckCloseToExit - ' - resources.ApplyResources(Me.CheckCloseToExit, "CheckCloseToExit") - Me.CheckCloseToExit.Name = "CheckCloseToExit" - Me.CheckCloseToExit.UseVisualStyleBackColor = True - ' - 'Label41 - ' - resources.ApplyResources(Me.Label41, "Label41") - Me.Label41.Name = "Label41" - ' - 'CheckMinimizeToTray - ' - resources.ApplyResources(Me.CheckMinimizeToTray, "CheckMinimizeToTray") - Me.CheckMinimizeToTray.Name = "CheckMinimizeToTray" - Me.CheckMinimizeToTray.UseVisualStyleBackColor = True - ' - 'BrowserPathText - ' - resources.ApplyResources(Me.BrowserPathText, "BrowserPathText") - Me.BrowserPathText.Name = "BrowserPathText" - ' - 'Label44 - ' - resources.ApplyResources(Me.Label44, "Label44") - Me.Label44.Name = "Label44" - ' - 'CheckDispUsername - ' - resources.ApplyResources(Me.CheckDispUsername, "CheckDispUsername") - Me.CheckDispUsername.Name = "CheckDispUsername" - Me.CheckDispUsername.UseVisualStyleBackColor = True - ' - 'Label46 - ' - resources.ApplyResources(Me.Label46, "Label46") - Me.Label46.Name = "Label46" - ' - 'Label45 - ' - resources.ApplyResources(Me.Label45, "Label45") - Me.Label45.Name = "Label45" - ' - 'ComboDispTitle - ' - resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") - Me.ComboDispTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboDispTitle.FormattingEnabled = True - Me.ComboDispTitle.Items.AddRange(New Object() {resources.GetString("ComboDispTitle.Items"), resources.GetString("ComboDispTitle.Items1"), resources.GetString("ComboDispTitle.Items2"), resources.GetString("ComboDispTitle.Items3"), resources.GetString("ComboDispTitle.Items4"), resources.GetString("ComboDispTitle.Items5"), resources.GetString("ComboDispTitle.Items6"), resources.GetString("ComboDispTitle.Items7")}) - Me.ComboDispTitle.Name = "ComboDispTitle" - ' - 'Label47 - ' - resources.ApplyResources(Me.Label47, "Label47") - Me.Label47.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label47.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label47.Name = "Label47" - ' - 'TabControl1 - ' - resources.ApplyResources(Me.TabControl1, "TabControl1") - Me.TabControl1.Controls.Add(Me.TabPage1) - Me.TabControl1.Controls.Add(Me.TabPage2) - Me.TabControl1.Controls.Add(Me.TabPage3) - Me.TabControl1.Controls.Add(Me.TabPage4) - Me.TabControl1.Controls.Add(Me.TabPage5) - Me.TabControl1.Controls.Add(Me.TabPage6) - Me.TabControl1.Name = "TabControl1" - Me.TabControl1.SelectedIndex = 0 - ' - 'TabPage1 - ' - resources.ApplyResources(Me.TabPage1, "TabPage1") - Me.TabPage1.Controls.Add(Me.TimelinePeriod) - Me.TabPage1.Controls.Add(Me.Label9) - Me.TabPage1.Controls.Add(Me.Label3) - Me.TabPage1.Controls.Add(Me.StartupReaded) - Me.TabPage1.Controls.Add(Me.GroupBox4) - Me.TabPage1.Controls.Add(Me.ButtonApiCalc) - Me.TabPage1.Controls.Add(Me.LabelPostAndGet) - Me.TabPage1.Controls.Add(Me.LabelApiUsing) - Me.TabPage1.Controls.Add(Me.Label33) - Me.TabPage1.Controls.Add(Me.ListsPeriod) - Me.TabPage1.Controls.Add(Me.AuthBasicRadio) - Me.TabPage1.Controls.Add(Me.AuthOAuthRadio) - Me.TabPage1.Controls.Add(Me.Label6) - Me.TabPage1.Controls.Add(Me.AuthClearButton) - Me.TabPage1.Controls.Add(Me.AuthUserLabel) - Me.TabPage1.Controls.Add(Me.AuthStateLabel) - Me.TabPage1.Controls.Add(Me.Label4) - Me.TabPage1.Controls.Add(Me.AuthorizeButton) - Me.TabPage1.Controls.Add(Me.TextCountApiReply) - Me.TabPage1.Controls.Add(Me.Label7) - Me.TabPage1.Controls.Add(Me.PubSearchPeriod) - Me.TabPage1.Controls.Add(Me.Label69) - Me.TabPage1.Controls.Add(Me.ReplyPeriod) - Me.TabPage1.Controls.Add(Me.CheckPostAndGet) - Me.TabPage1.Controls.Add(Me.Label67) - Me.TabPage1.Controls.Add(Me.TextCountApi) - Me.TabPage1.Controls.Add(Me.Label54) - Me.TabPage1.Controls.Add(Me.CheckStartupFollowers) - Me.TabPage1.Controls.Add(Me.Label51) - Me.TabPage1.Controls.Add(Me.CheckStartupVersion) - Me.TabPage1.Controls.Add(Me.CheckPeriodAdjust) - Me.TabPage1.Controls.Add(Me.Label1) - Me.TabPage1.Controls.Add(Me.Label2) - Me.TabPage1.Controls.Add(Me.Username) - Me.TabPage1.Controls.Add(Me.Password) - Me.TabPage1.Controls.Add(Me.Label5) - Me.TabPage1.Controls.Add(Me.DMPeriod) - Me.TabPage1.Controls.Add(Me.Label74) - Me.TabPage1.Controls.Add(Me.chkGetFav) - Me.TabPage1.Name = "TabPage1" - Me.TabPage1.UseVisualStyleBackColor = True - ' - 'GroupBox4 - ' - resources.ApplyResources(Me.GroupBox4, "GroupBox4") - Me.GroupBox4.Controls.Add(Me.UserstreamPeriod) - Me.GroupBox4.Controls.Add(Me.Label83) - Me.GroupBox4.Controls.Add(Me.Label70) - Me.GroupBox4.Controls.Add(Me.StartupUserstreamCheck) - Me.GroupBox4.Name = "GroupBox4" - Me.GroupBox4.TabStop = False - ' - 'UserstreamPeriod - ' - resources.ApplyResources(Me.UserstreamPeriod, "UserstreamPeriod") - Me.UserstreamPeriod.Name = "UserstreamPeriod" - ' - 'Label83 - ' - resources.ApplyResources(Me.Label83, "Label83") - Me.Label83.Name = "Label83" - ' - 'Label70 - ' - resources.ApplyResources(Me.Label70, "Label70") - Me.Label70.Name = "Label70" - ' - 'StartupUserstreamCheck - ' - resources.ApplyResources(Me.StartupUserstreamCheck, "StartupUserstreamCheck") - Me.StartupUserstreamCheck.Name = "StartupUserstreamCheck" - Me.StartupUserstreamCheck.UseVisualStyleBackColor = True - ' - 'ButtonApiCalc - ' - resources.ApplyResources(Me.ButtonApiCalc, "ButtonApiCalc") - Me.ButtonApiCalc.Name = "ButtonApiCalc" - Me.ButtonApiCalc.UseVisualStyleBackColor = True - ' - 'LabelPostAndGet - ' - resources.ApplyResources(Me.LabelPostAndGet, "LabelPostAndGet") - Me.LabelPostAndGet.Name = "LabelPostAndGet" - ' - 'LabelApiUsing - ' - resources.ApplyResources(Me.LabelApiUsing, "LabelApiUsing") - Me.LabelApiUsing.Name = "LabelApiUsing" - ' - 'Label33 - ' - resources.ApplyResources(Me.Label33, "Label33") - Me.Label33.Name = "Label33" - ' - 'ListsPeriod - ' - resources.ApplyResources(Me.ListsPeriod, "ListsPeriod") - Me.ListsPeriod.Name = "ListsPeriod" - ' - 'AuthBasicRadio - ' - resources.ApplyResources(Me.AuthBasicRadio, "AuthBasicRadio") - Me.AuthBasicRadio.Name = "AuthBasicRadio" - Me.AuthBasicRadio.UseVisualStyleBackColor = True - ' - 'AuthOAuthRadio - ' - resources.ApplyResources(Me.AuthOAuthRadio, "AuthOAuthRadio") - Me.AuthOAuthRadio.Checked = True - Me.AuthOAuthRadio.Name = "AuthOAuthRadio" - Me.AuthOAuthRadio.TabStop = True - Me.AuthOAuthRadio.UseVisualStyleBackColor = True - ' - 'Label6 - ' - resources.ApplyResources(Me.Label6, "Label6") - Me.Label6.Name = "Label6" - ' - 'AuthClearButton - ' - resources.ApplyResources(Me.AuthClearButton, "AuthClearButton") - Me.AuthClearButton.Name = "AuthClearButton" - Me.AuthClearButton.UseVisualStyleBackColor = True - ' - 'AuthUserLabel - ' - resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") - Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.AuthUserLabel.Name = "AuthUserLabel" - ' - 'AuthStateLabel - ' - resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") - Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.AuthStateLabel.Name = "AuthStateLabel" - ' - 'Label4 - ' - resources.ApplyResources(Me.Label4, "Label4") - Me.Label4.Name = "Label4" - ' - 'AuthorizeButton - ' - resources.ApplyResources(Me.AuthorizeButton, "AuthorizeButton") - Me.AuthorizeButton.Name = "AuthorizeButton" - Me.AuthorizeButton.UseVisualStyleBackColor = True - ' - 'TextCountApiReply - ' - resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") - Me.TextCountApiReply.Name = "TextCountApiReply" - ' - 'Label7 - ' - resources.ApplyResources(Me.Label7, "Label7") - Me.Label7.Name = "Label7" - ' - 'PubSearchPeriod - ' - resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") - Me.PubSearchPeriod.Name = "PubSearchPeriod" - ' - 'Label69 - ' - resources.ApplyResources(Me.Label69, "Label69") - Me.Label69.Name = "Label69" - ' - 'ReplyPeriod - ' - resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") - Me.ReplyPeriod.Name = "ReplyPeriod" - ' - 'CheckPostAndGet - ' - resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") - Me.CheckPostAndGet.Name = "CheckPostAndGet" - Me.CheckPostAndGet.UseVisualStyleBackColor = True - ' - 'Label67 - ' - resources.ApplyResources(Me.Label67, "Label67") - Me.Label67.Name = "Label67" - ' - 'TextCountApi - ' - resources.ApplyResources(Me.TextCountApi, "TextCountApi") - Me.TextCountApi.Name = "TextCountApi" - ' - 'Label54 - ' - resources.ApplyResources(Me.Label54, "Label54") - Me.Label54.Name = "Label54" - ' - 'CheckStartupFollowers - ' - resources.ApplyResources(Me.CheckStartupFollowers, "CheckStartupFollowers") - Me.CheckStartupFollowers.Name = "CheckStartupFollowers" - Me.CheckStartupFollowers.UseVisualStyleBackColor = True - ' - 'Label51 - ' - resources.ApplyResources(Me.Label51, "Label51") - Me.Label51.Name = "Label51" - ' - 'CheckStartupVersion - ' - resources.ApplyResources(Me.CheckStartupVersion, "CheckStartupVersion") - Me.CheckStartupVersion.Name = "CheckStartupVersion" - Me.CheckStartupVersion.UseVisualStyleBackColor = True - ' - 'CheckPeriodAdjust - ' - resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") - Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" - Me.CheckPeriodAdjust.UseVisualStyleBackColor = True - ' - 'Label74 - ' - resources.ApplyResources(Me.Label74, "Label74") - Me.Label74.Name = "Label74" - ' - 'chkGetFav - ' - resources.ApplyResources(Me.chkGetFav, "chkGetFav") - Me.chkGetFav.Name = "chkGetFav" - Me.chkGetFav.UseVisualStyleBackColor = True - ' - 'TabPage2 - ' - resources.ApplyResources(Me.TabPage2, "TabPage2") - Me.TabPage2.Controls.Add(Me.ComboBoxPostKeySelect) - Me.TabPage2.Controls.Add(Me.CheckRetweetNoConfirm) - Me.TabPage2.Controls.Add(Me.Label42) - Me.TabPage2.Controls.Add(Me.GroupBox3) - Me.TabPage2.Controls.Add(Me.Label82) - Me.TabPage2.Controls.Add(Me.CheckHashSupple) - Me.TabPage2.Controls.Add(Me.Label79) - Me.TabPage2.Controls.Add(Me.CheckAtIdSupple) - Me.TabPage2.Controls.Add(Me.TextBitlyPw) - Me.TabPage2.Controls.Add(Me.Label77) - Me.TabPage2.Controls.Add(Me.TextBitlyId) - Me.TabPage2.Controls.Add(Me.Label76) - Me.TabPage2.Controls.Add(Me.ComboBoxAutoShortUrlFirst) - Me.TabPage2.Controls.Add(Me.Label71) - Me.TabPage2.Controls.Add(Me.CheckAutoConvertUrl) - Me.TabPage2.Controls.Add(Me.Label29) - Me.TabPage2.Controls.Add(Me.Label57) - Me.TabPage2.Controls.Add(Me.Label56) - Me.TabPage2.Controls.Add(Me.CheckFavRestrict) - Me.TabPage2.Controls.Add(Me.CheckTinyURL) - Me.TabPage2.Controls.Add(Me.Label50) - Me.TabPage2.Controls.Add(Me.Button3) - Me.TabPage2.Controls.Add(Me.PlaySnd) - Me.TabPage2.Controls.Add(Me.Label14) - Me.TabPage2.Controls.Add(Me.Label15) - Me.TabPage2.Controls.Add(Me.Label38) - Me.TabPage2.Controls.Add(Me.BrowserPathText) - Me.TabPage2.Controls.Add(Me.UReadMng) - Me.TabPage2.Controls.Add(Me.Label44) - Me.TabPage2.Controls.Add(Me.CheckCloseToExit) - Me.TabPage2.Controls.Add(Me.Label40) - Me.TabPage2.Controls.Add(Me.CheckMinimizeToTray) - Me.TabPage2.Controls.Add(Me.Label41) - Me.TabPage2.Controls.Add(Me.Label27) - Me.TabPage2.Controls.Add(Me.Label39) - Me.TabPage2.Controls.Add(Me.CheckReadOldPosts) - Me.TabPage2.Controls.Add(Me.Label12) - Me.TabPage2.Controls.Add(Me.StatusText) - Me.TabPage2.Controls.Add(Me.CheckUseRecommendStatus) - Me.TabPage2.Name = "TabPage2" - Me.TabPage2.UseVisualStyleBackColor = True - ' - 'ComboBoxPostKeySelect - ' - resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") - Me.ComboBoxPostKeySelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxPostKeySelect.FormattingEnabled = True - Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {resources.GetString("ComboBoxPostKeySelect.Items"), resources.GetString("ComboBoxPostKeySelect.Items1"), resources.GetString("ComboBoxPostKeySelect.Items2")}) - Me.ComboBoxPostKeySelect.Name = "ComboBoxPostKeySelect" - ' - 'CheckRetweetNoConfirm - ' - resources.ApplyResources(Me.CheckRetweetNoConfirm, "CheckRetweetNoConfirm") - Me.CheckRetweetNoConfirm.Name = "CheckRetweetNoConfirm" - Me.CheckRetweetNoConfirm.UseVisualStyleBackColor = True - ' - 'Label42 - ' - resources.ApplyResources(Me.Label42, "Label42") - Me.Label42.Name = "Label42" - ' - 'GroupBox3 - ' - resources.ApplyResources(Me.GroupBox3, "GroupBox3") - Me.GroupBox3.Controls.Add(Me.HotkeyCheck) - Me.GroupBox3.Controls.Add(Me.HotkeyCode) - Me.GroupBox3.Controls.Add(Me.HotkeyText) - Me.GroupBox3.Controls.Add(Me.HotkeyWin) - Me.GroupBox3.Controls.Add(Me.HotkeyAlt) - Me.GroupBox3.Controls.Add(Me.HotkeyShift) - Me.GroupBox3.Controls.Add(Me.HotkeyCtrl) - Me.GroupBox3.Name = "GroupBox3" - Me.GroupBox3.TabStop = False - ' - 'HotkeyCheck - ' - resources.ApplyResources(Me.HotkeyCheck, "HotkeyCheck") - Me.HotkeyCheck.Name = "HotkeyCheck" - Me.HotkeyCheck.UseVisualStyleBackColor = True - ' - 'HotkeyCode - ' - resources.ApplyResources(Me.HotkeyCode, "HotkeyCode") - Me.HotkeyCode.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.HotkeyCode.Name = "HotkeyCode" - ' - 'HotkeyText - ' - resources.ApplyResources(Me.HotkeyText, "HotkeyText") - Me.HotkeyText.Name = "HotkeyText" - Me.HotkeyText.ReadOnly = True - ' - 'HotkeyWin - ' - resources.ApplyResources(Me.HotkeyWin, "HotkeyWin") - Me.HotkeyWin.Name = "HotkeyWin" - Me.HotkeyWin.UseVisualStyleBackColor = True - ' - 'HotkeyAlt - ' - resources.ApplyResources(Me.HotkeyAlt, "HotkeyAlt") - Me.HotkeyAlt.Name = "HotkeyAlt" - Me.HotkeyAlt.UseVisualStyleBackColor = True - ' - 'HotkeyShift - ' - resources.ApplyResources(Me.HotkeyShift, "HotkeyShift") - Me.HotkeyShift.Name = "HotkeyShift" - Me.HotkeyShift.UseVisualStyleBackColor = True - ' - 'HotkeyCtrl - ' - resources.ApplyResources(Me.HotkeyCtrl, "HotkeyCtrl") - Me.HotkeyCtrl.Name = "HotkeyCtrl" - Me.HotkeyCtrl.UseVisualStyleBackColor = True - ' - 'Label82 - ' - resources.ApplyResources(Me.Label82, "Label82") - Me.Label82.Name = "Label82" - ' - 'CheckHashSupple - ' - resources.ApplyResources(Me.CheckHashSupple, "CheckHashSupple") - Me.CheckHashSupple.Name = "CheckHashSupple" - Me.CheckHashSupple.UseVisualStyleBackColor = True - ' - 'Label79 - ' - resources.ApplyResources(Me.Label79, "Label79") - Me.Label79.Name = "Label79" - ' - 'CheckAtIdSupple - ' - resources.ApplyResources(Me.CheckAtIdSupple, "CheckAtIdSupple") - Me.CheckAtIdSupple.Name = "CheckAtIdSupple" - Me.CheckAtIdSupple.UseVisualStyleBackColor = True - ' - 'TextBitlyPw - ' - resources.ApplyResources(Me.TextBitlyPw, "TextBitlyPw") - Me.TextBitlyPw.Name = "TextBitlyPw" - ' - 'Label77 - ' - resources.ApplyResources(Me.Label77, "Label77") - Me.Label77.Name = "Label77" - ' - 'TextBitlyId - ' - resources.ApplyResources(Me.TextBitlyId, "TextBitlyId") - Me.TextBitlyId.Name = "TextBitlyId" - ' - 'Label76 - ' - resources.ApplyResources(Me.Label76, "Label76") - Me.Label76.Name = "Label76" - ' - 'ComboBoxAutoShortUrlFirst - ' - resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") - Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True - Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4")}) - Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" - ' - 'Label71 - ' - resources.ApplyResources(Me.Label71, "Label71") - Me.Label71.Name = "Label71" - ' - 'CheckAutoConvertUrl - ' - resources.ApplyResources(Me.CheckAutoConvertUrl, "CheckAutoConvertUrl") - Me.CheckAutoConvertUrl.Name = "CheckAutoConvertUrl" - Me.CheckAutoConvertUrl.UseVisualStyleBackColor = True - ' - 'Label29 - ' - resources.ApplyResources(Me.Label29, "Label29") - Me.Label29.Name = "Label29" - ' - 'Label57 - ' - resources.ApplyResources(Me.Label57, "Label57") - Me.Label57.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label57.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label57.Name = "Label57" - ' - 'Label56 - ' - resources.ApplyResources(Me.Label56, "Label56") - Me.Label56.Name = "Label56" - ' - 'CheckFavRestrict - ' - resources.ApplyResources(Me.CheckFavRestrict, "CheckFavRestrict") - Me.CheckFavRestrict.Name = "CheckFavRestrict" - Me.CheckFavRestrict.UseVisualStyleBackColor = True - ' - 'CheckTinyURL - ' - resources.ApplyResources(Me.CheckTinyURL, "CheckTinyURL") - Me.CheckTinyURL.Name = "CheckTinyURL" - Me.CheckTinyURL.UseVisualStyleBackColor = True - ' - 'Label50 - ' - resources.ApplyResources(Me.Label50, "Label50") - Me.Label50.Name = "Label50" - ' - 'Button3 - ' - resources.ApplyResources(Me.Button3, "Button3") - Me.Button3.Name = "Button3" - Me.Button3.UseVisualStyleBackColor = True - ' - 'TabPage3 - ' - resources.ApplyResources(Me.TabPage3, "TabPage3") - Me.TabPage3.Controls.Add(Me.Label35) - Me.TabPage3.Controls.Add(Me.CheckPreviewEnable) - Me.TabPage3.Controls.Add(Me.Label81) - Me.TabPage3.Controls.Add(Me.LanguageCombo) - Me.TabPage3.Controls.Add(Me.Label13) - Me.TabPage3.Controls.Add(Me.CheckAlwaysTop) - Me.TabPage3.Controls.Add(Me.Label58) - Me.TabPage3.Controls.Add(Me.Label21) - Me.TabPage3.Controls.Add(Me.CheckSortOrderLock) - Me.TabPage3.Controls.Add(Me.Label78) - Me.TabPage3.Controls.Add(Me.CheckShowGrid) - Me.TabPage3.Controls.Add(Me.Label75) - Me.TabPage3.Controls.Add(Me.CheckMonospace) - Me.TabPage3.Controls.Add(Me.Label73) - Me.TabPage3.Controls.Add(Me.chkReadOwnPost) - Me.TabPage3.Controls.Add(Me.ReplyIconStateCombo) - Me.TabPage3.Controls.Add(Me.Label72) - Me.TabPage3.Controls.Add(Me.Label43) - Me.TabPage3.Controls.Add(Me.Label48) - Me.TabPage3.Controls.Add(Me.ChkNewMentionsBlink) - Me.TabPage3.Controls.Add(Me.chkTabIconDisp) - Me.TabPage3.Controls.Add(Me.Label68) - Me.TabPage3.Controls.Add(Me.CheckBalloonLimit) - Me.TabPage3.Controls.Add(Me.LabelDateTimeFormatApplied) - Me.TabPage3.Controls.Add(Me.Label62) - Me.TabPage3.Controls.Add(Me.Label17) - Me.TabPage3.Controls.Add(Me.chkUnreadStyle) - Me.TabPage3.Controls.Add(Me.Label10) - Me.TabPage3.Controls.Add(Me.ComboDispTitle) - Me.TabPage3.Controls.Add(Me.Label47) - Me.TabPage3.Controls.Add(Me.CmbDateTimeFormat) - Me.TabPage3.Controls.Add(Me.Label45) - Me.TabPage3.Controls.Add(Me.Label23) - Me.TabPage3.Controls.Add(Me.cmbNameBalloon) - Me.TabPage3.Controls.Add(Me.Label46) - Me.TabPage3.Controls.Add(Me.CheckDispUsername) - Me.TabPage3.Controls.Add(Me.Label11) - Me.TabPage3.Controls.Add(Me.Label16) - Me.TabPage3.Controls.Add(Me.OneWayLv) - Me.TabPage3.Controls.Add(Me.Label25) - Me.TabPage3.Controls.Add(Me.IconSize) - Me.TabPage3.Controls.Add(Me.CheckBox3) - Me.TabPage3.Controls.Add(Me.TextBox3) - Me.TabPage3.Name = "TabPage3" - Me.TabPage3.UseVisualStyleBackColor = True - ' - 'Label35 - ' - resources.ApplyResources(Me.Label35, "Label35") - Me.Label35.Name = "Label35" - ' - 'CheckPreviewEnable - ' - resources.ApplyResources(Me.CheckPreviewEnable, "CheckPreviewEnable") - Me.CheckPreviewEnable.Name = "CheckPreviewEnable" - Me.CheckPreviewEnable.UseVisualStyleBackColor = True - ' - 'Label81 - ' - resources.ApplyResources(Me.Label81, "Label81") - Me.Label81.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label81.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label81.Name = "Label81" - ' - 'LanguageCombo - ' - resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") - Me.LanguageCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.LanguageCombo.FormattingEnabled = True - Me.LanguageCombo.Items.AddRange(New Object() {resources.GetString("LanguageCombo.Items"), resources.GetString("LanguageCombo.Items1"), resources.GetString("LanguageCombo.Items2"), resources.GetString("LanguageCombo.Items3")}) - Me.LanguageCombo.Name = "LanguageCombo" - ' - 'Label13 - ' - resources.ApplyResources(Me.Label13, "Label13") - Me.Label13.Name = "Label13" - ' - 'CheckAlwaysTop - ' - resources.ApplyResources(Me.CheckAlwaysTop, "CheckAlwaysTop") - Me.CheckAlwaysTop.Name = "CheckAlwaysTop" - Me.CheckAlwaysTop.UseVisualStyleBackColor = True - ' - 'Label58 - ' - resources.ApplyResources(Me.Label58, "Label58") - Me.Label58.Name = "Label58" - ' - 'Label21 - ' - resources.ApplyResources(Me.Label21, "Label21") - Me.Label21.Name = "Label21" - ' - 'CheckSortOrderLock - ' - resources.ApplyResources(Me.CheckSortOrderLock, "CheckSortOrderLock") - Me.CheckSortOrderLock.Name = "CheckSortOrderLock" - Me.CheckSortOrderLock.UseVisualStyleBackColor = True - ' - 'Label78 - ' - resources.ApplyResources(Me.Label78, "Label78") - Me.Label78.Name = "Label78" - ' - 'CheckShowGrid - ' - resources.ApplyResources(Me.CheckShowGrid, "CheckShowGrid") - Me.CheckShowGrid.Name = "CheckShowGrid" - Me.CheckShowGrid.UseVisualStyleBackColor = True - ' - 'Label75 - ' - resources.ApplyResources(Me.Label75, "Label75") - Me.Label75.Name = "Label75" - ' - 'CheckMonospace - ' - resources.ApplyResources(Me.CheckMonospace, "CheckMonospace") - Me.CheckMonospace.Name = "CheckMonospace" - Me.CheckMonospace.UseVisualStyleBackColor = True - ' - 'Label73 - ' - resources.ApplyResources(Me.Label73, "Label73") - Me.Label73.Name = "Label73" - ' - 'chkReadOwnPost - ' - resources.ApplyResources(Me.chkReadOwnPost, "chkReadOwnPost") - Me.chkReadOwnPost.Name = "chkReadOwnPost" - Me.chkReadOwnPost.UseVisualStyleBackColor = True - ' - 'ReplyIconStateCombo - ' - resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") - Me.ReplyIconStateCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ReplyIconStateCombo.FormattingEnabled = True - Me.ReplyIconStateCombo.Items.AddRange(New Object() {resources.GetString("ReplyIconStateCombo.Items"), resources.GetString("ReplyIconStateCombo.Items1"), resources.GetString("ReplyIconStateCombo.Items2")}) - Me.ReplyIconStateCombo.Name = "ReplyIconStateCombo" - ' - 'Label72 - ' - resources.ApplyResources(Me.Label72, "Label72") - Me.Label72.Name = "Label72" - ' - 'Label43 - ' - resources.ApplyResources(Me.Label43, "Label43") - Me.Label43.Name = "Label43" - ' - 'Label48 - ' - resources.ApplyResources(Me.Label48, "Label48") - Me.Label48.Name = "Label48" - ' - 'ChkNewMentionsBlink - ' - resources.ApplyResources(Me.ChkNewMentionsBlink, "ChkNewMentionsBlink") - Me.ChkNewMentionsBlink.Name = "ChkNewMentionsBlink" - Me.ChkNewMentionsBlink.UseVisualStyleBackColor = True - ' - 'chkTabIconDisp - ' - resources.ApplyResources(Me.chkTabIconDisp, "chkTabIconDisp") - Me.chkTabIconDisp.Name = "chkTabIconDisp" - Me.chkTabIconDisp.UseVisualStyleBackColor = True - ' - 'Label68 - ' - resources.ApplyResources(Me.Label68, "Label68") - Me.Label68.Name = "Label68" - ' - 'CheckBalloonLimit - ' - resources.ApplyResources(Me.CheckBalloonLimit, "CheckBalloonLimit") - Me.CheckBalloonLimit.Name = "CheckBalloonLimit" - Me.CheckBalloonLimit.UseVisualStyleBackColor = True - ' - 'LabelDateTimeFormatApplied - ' - resources.ApplyResources(Me.LabelDateTimeFormatApplied, "LabelDateTimeFormatApplied") - Me.LabelDateTimeFormatApplied.Name = "LabelDateTimeFormatApplied" - ' - 'Label62 - ' - resources.ApplyResources(Me.Label62, "Label62") - Me.Label62.Name = "Label62" - ' - 'Label17 - ' - resources.ApplyResources(Me.Label17, "Label17") - Me.Label17.Name = "Label17" - ' - 'chkUnreadStyle - ' - resources.ApplyResources(Me.chkUnreadStyle, "chkUnreadStyle") - Me.chkUnreadStyle.Name = "chkUnreadStyle" - Me.chkUnreadStyle.UseVisualStyleBackColor = True - ' - 'TabPage4 - ' - resources.ApplyResources(Me.TabPage4, "TabPage4") - Me.TabPage4.Controls.Add(Me.GroupBox1) - Me.TabPage4.Name = "TabPage4" - Me.TabPage4.UseVisualStyleBackColor = True - ' - 'TabPage5 - ' - resources.ApplyResources(Me.TabPage5, "TabPage5") - Me.TabPage5.Controls.Add(Me.CheckEnableBasicAuth) - Me.TabPage5.Controls.Add(Me.TwitterSearchAPIText) - Me.TabPage5.Controls.Add(Me.Label31) - Me.TabPage5.Controls.Add(Me.TwitterAPIText) - Me.TabPage5.Controls.Add(Me.Label8) - Me.TabPage5.Controls.Add(Me.CheckUseSsl) - Me.TabPage5.Controls.Add(Me.Label64) - Me.TabPage5.Controls.Add(Me.ConnectionTimeOut) - Me.TabPage5.Controls.Add(Me.Label63) - Me.TabPage5.Controls.Add(Me.GroupBox2) - Me.TabPage5.Name = "TabPage5" - Me.TabPage5.UseVisualStyleBackColor = True - ' - 'CheckEnableBasicAuth - ' - resources.ApplyResources(Me.CheckEnableBasicAuth, "CheckEnableBasicAuth") - Me.CheckEnableBasicAuth.Name = "CheckEnableBasicAuth" - Me.CheckEnableBasicAuth.UseVisualStyleBackColor = True - ' - 'TwitterSearchAPIText - ' - resources.ApplyResources(Me.TwitterSearchAPIText, "TwitterSearchAPIText") - Me.TwitterSearchAPIText.Name = "TwitterSearchAPIText" - ' - 'Label31 - ' - resources.ApplyResources(Me.Label31, "Label31") - Me.Label31.Name = "Label31" - ' - 'TwitterAPIText - ' - resources.ApplyResources(Me.TwitterAPIText, "TwitterAPIText") - Me.TwitterAPIText.Name = "TwitterAPIText" - ' - 'Label8 - ' - resources.ApplyResources(Me.Label8, "Label8") - Me.Label8.Name = "Label8" - ' - 'CheckUseSsl - ' - resources.ApplyResources(Me.CheckUseSsl, "CheckUseSsl") - Me.CheckUseSsl.Name = "CheckUseSsl" - Me.CheckUseSsl.UseVisualStyleBackColor = True - ' - 'Label64 - ' - resources.ApplyResources(Me.Label64, "Label64") - Me.Label64.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label64.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label64.Name = "Label64" - ' - 'ConnectionTimeOut - ' - resources.ApplyResources(Me.ConnectionTimeOut, "ConnectionTimeOut") - Me.ConnectionTimeOut.Name = "ConnectionTimeOut" - ' - 'Label63 - ' - resources.ApplyResources(Me.Label63, "Label63") - Me.Label63.Name = "Label63" - ' - 'GroupBox2 - ' - resources.ApplyResources(Me.GroupBox2, "GroupBox2") - Me.GroupBox2.Controls.Add(Me.Label55) - Me.GroupBox2.Controls.Add(Me.TextProxyPassword) - Me.GroupBox2.Controls.Add(Me.LabelProxyPassword) - Me.GroupBox2.Controls.Add(Me.TextProxyUser) - Me.GroupBox2.Controls.Add(Me.LabelProxyUser) - Me.GroupBox2.Controls.Add(Me.TextProxyPort) - Me.GroupBox2.Controls.Add(Me.LabelProxyPort) - Me.GroupBox2.Controls.Add(Me.TextProxyAddress) - Me.GroupBox2.Controls.Add(Me.LabelProxyAddress) - Me.GroupBox2.Controls.Add(Me.RadioProxySpecified) - Me.GroupBox2.Controls.Add(Me.RadioProxyIE) - Me.GroupBox2.Controls.Add(Me.RadioProxyNone) - Me.GroupBox2.Name = "GroupBox2" - Me.GroupBox2.TabStop = False - ' - 'Label55 - ' - resources.ApplyResources(Me.Label55, "Label55") - Me.Label55.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label55.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label55.Name = "Label55" - ' - 'TextProxyPassword - ' - resources.ApplyResources(Me.TextProxyPassword, "TextProxyPassword") - Me.TextProxyPassword.Name = "TextProxyPassword" - Me.TextProxyPassword.UseSystemPasswordChar = True - ' - 'LabelProxyPassword - ' - resources.ApplyResources(Me.LabelProxyPassword, "LabelProxyPassword") - Me.LabelProxyPassword.Name = "LabelProxyPassword" - ' - 'TextProxyUser - ' - resources.ApplyResources(Me.TextProxyUser, "TextProxyUser") - Me.TextProxyUser.Name = "TextProxyUser" - ' - 'LabelProxyUser - ' - resources.ApplyResources(Me.LabelProxyUser, "LabelProxyUser") - Me.LabelProxyUser.Name = "LabelProxyUser" - ' - 'TextProxyPort - ' - resources.ApplyResources(Me.TextProxyPort, "TextProxyPort") - Me.TextProxyPort.Name = "TextProxyPort" - ' - 'LabelProxyPort - ' - resources.ApplyResources(Me.LabelProxyPort, "LabelProxyPort") - Me.LabelProxyPort.Name = "LabelProxyPort" - ' - 'TextProxyAddress - ' - resources.ApplyResources(Me.TextProxyAddress, "TextProxyAddress") - Me.TextProxyAddress.Name = "TextProxyAddress" - ' - 'LabelProxyAddress - ' - resources.ApplyResources(Me.LabelProxyAddress, "LabelProxyAddress") - Me.LabelProxyAddress.Name = "LabelProxyAddress" - ' - 'RadioProxySpecified - ' - resources.ApplyResources(Me.RadioProxySpecified, "RadioProxySpecified") - Me.RadioProxySpecified.Name = "RadioProxySpecified" - Me.RadioProxySpecified.UseVisualStyleBackColor = True - ' - 'RadioProxyIE - ' - resources.ApplyResources(Me.RadioProxyIE, "RadioProxyIE") - Me.RadioProxyIE.Checked = True - Me.RadioProxyIE.Name = "RadioProxyIE" - Me.RadioProxyIE.TabStop = True - Me.RadioProxyIE.UseVisualStyleBackColor = True - ' - 'RadioProxyNone - ' - resources.ApplyResources(Me.RadioProxyNone, "RadioProxyNone") - Me.RadioProxyNone.Name = "RadioProxyNone" - Me.RadioProxyNone.UseVisualStyleBackColor = True - ' - 'TabPage6 - ' - resources.ApplyResources(Me.TabPage6, "TabPage6") - Me.TabPage6.Controls.Add(Me.FavoritesTextCountApi) - Me.TabPage6.Controls.Add(Me.SearchTextCountApi) - Me.TabPage6.Controls.Add(Me.Label66) - Me.TabPage6.Controls.Add(Me.FirstTextCountApi) - Me.TabPage6.Controls.Add(Me.GetMoreTextCountApi) - Me.TabPage6.Controls.Add(Me.Label53) - Me.TabPage6.Controls.Add(Me.UseChangeGetCount) - Me.TabPage6.Controls.Add(Me.CheckNicoms) - Me.TabPage6.Controls.Add(Me.Label60) - Me.TabPage6.Controls.Add(Me.ComboBoxOutputzUrlmode) - Me.TabPage6.Controls.Add(Me.Label59) - Me.TabPage6.Controls.Add(Me.TextBoxOutputzKey) - Me.TabPage6.Controls.Add(Me.CheckOutputz) - Me.TabPage6.Name = "TabPage6" - Me.TabPage6.UseVisualStyleBackColor = True - ' - 'FavoritesTextCountApi - ' - resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") - Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" - ' - 'SearchTextCountApi - ' - resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") - Me.SearchTextCountApi.Name = "SearchTextCountApi" - ' - 'Label66 - ' - resources.ApplyResources(Me.Label66, "Label66") - Me.Label66.Name = "Label66" - ' - 'FirstTextCountApi - ' - resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") - Me.FirstTextCountApi.Name = "FirstTextCountApi" - ' - 'GetMoreTextCountApi - ' - resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") - Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" - ' - 'Label53 - ' - resources.ApplyResources(Me.Label53, "Label53") - Me.Label53.Name = "Label53" - ' - 'UseChangeGetCount - ' - resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") - Me.UseChangeGetCount.Name = "UseChangeGetCount" - Me.UseChangeGetCount.UseVisualStyleBackColor = True - ' - 'CheckNicoms - ' - resources.ApplyResources(Me.CheckNicoms, "CheckNicoms") - Me.CheckNicoms.Name = "CheckNicoms" - Me.CheckNicoms.UseVisualStyleBackColor = True - ' - 'Label60 - ' - resources.ApplyResources(Me.Label60, "Label60") - Me.Label60.Name = "Label60" - ' - 'ComboBoxOutputzUrlmode - ' - resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") - Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxOutputzUrlmode.FormattingEnabled = True - Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {resources.GetString("ComboBoxOutputzUrlmode.Items"), resources.GetString("ComboBoxOutputzUrlmode.Items1")}) - Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" - ' - 'Label59 - ' - resources.ApplyResources(Me.Label59, "Label59") - Me.Label59.Name = "Label59" - ' - 'TextBoxOutputzKey - ' - resources.ApplyResources(Me.TextBoxOutputzKey, "TextBoxOutputzKey") - Me.TextBoxOutputzKey.Name = "TextBoxOutputzKey" - ' - 'CheckOutputz - ' - resources.ApplyResources(Me.CheckOutputz, "CheckOutputz") - Me.CheckOutputz.Name = "CheckOutputz" - Me.CheckOutputz.UseVisualStyleBackColor = True - ' - 'Setting - ' - Me.AcceptButton = Me.Save - resources.ApplyResources(Me, "$this") - Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font - Me.CancelButton = Me.Cancel - Me.Controls.Add(Me.TabControl1) - Me.Controls.Add(Me.Cancel) - Me.Controls.Add(Me.Save) - Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog - Me.MaximizeBox = False - Me.MinimizeBox = False - Me.Name = "Setting" - Me.ShowInTaskbar = False - Me.TopMost = True - Me.GroupBox1.ResumeLayout(False) - Me.GroupBox1.PerformLayout() - Me.TabControl1.ResumeLayout(False) - Me.TabPage1.ResumeLayout(False) - Me.TabPage1.PerformLayout() - Me.GroupBox4.ResumeLayout(False) - Me.GroupBox4.PerformLayout() - Me.TabPage2.ResumeLayout(False) - Me.TabPage2.PerformLayout() - Me.GroupBox3.ResumeLayout(False) - Me.GroupBox3.PerformLayout() - Me.TabPage3.ResumeLayout(False) - Me.TabPage3.PerformLayout() - Me.TabPage4.ResumeLayout(False) - Me.TabPage5.ResumeLayout(False) - Me.TabPage5.PerformLayout() - Me.GroupBox2.ResumeLayout(False) - Me.GroupBox2.PerformLayout() - Me.TabPage6.ResumeLayout(False) - Me.TabPage6.PerformLayout() - Me.ResumeLayout(False) - - End Sub - Friend WithEvents Label1 As System.Windows.Forms.Label - Friend WithEvents Label2 As System.Windows.Forms.Label - Friend WithEvents Username As System.Windows.Forms.TextBox - Friend WithEvents Password As System.Windows.Forms.TextBox - Friend WithEvents Save As System.Windows.Forms.Button - Friend WithEvents Cancel As System.Windows.Forms.Button - Friend WithEvents Label3 As System.Windows.Forms.Label - Friend WithEvents TimelinePeriod As System.Windows.Forms.TextBox - Friend WithEvents DMPeriod As System.Windows.Forms.TextBox - Friend WithEvents Label5 As System.Windows.Forms.Label - Friend WithEvents Label9 As System.Windows.Forms.Label - Friend WithEvents StartupReaded As System.Windows.Forms.CheckBox - Friend WithEvents Label11 As System.Windows.Forms.Label - Friend WithEvents Label12 As System.Windows.Forms.Label - Friend WithEvents StatusText As System.Windows.Forms.TextBox - Friend WithEvents PlaySnd As System.Windows.Forms.CheckBox - Friend WithEvents Label14 As System.Windows.Forms.Label - Friend WithEvents Label15 As System.Windows.Forms.Label - Friend WithEvents OneWayLv As System.Windows.Forms.CheckBox - Friend WithEvents Label16 As System.Windows.Forms.Label - Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox - Friend WithEvents btnDetail As System.Windows.Forms.Button - Friend WithEvents lblDetail As System.Windows.Forms.Label - Friend WithEvents Label26 As System.Windows.Forms.Label - Friend WithEvents btnOWL As System.Windows.Forms.Button - Friend WithEvents lblOWL As System.Windows.Forms.Label - Friend WithEvents Label24 As System.Windows.Forms.Label - Friend WithEvents btnFav As System.Windows.Forms.Button - Friend WithEvents lblFav As System.Windows.Forms.Label - Friend WithEvents Label22 As System.Windows.Forms.Label - Friend WithEvents FontDialog1 As System.Windows.Forms.FontDialog - Friend WithEvents ColorDialog1 As System.Windows.Forms.ColorDialog - Friend WithEvents btnAtFromTarget As System.Windows.Forms.Button - Friend WithEvents lblAtFromTarget As System.Windows.Forms.Label - Friend WithEvents Label28 As System.Windows.Forms.Label - Friend WithEvents btnAtTarget As System.Windows.Forms.Button - Friend WithEvents lblAtTarget As System.Windows.Forms.Label - Friend WithEvents Label30 As System.Windows.Forms.Label - Friend WithEvents btnTarget As System.Windows.Forms.Button - Friend WithEvents lblTarget As System.Windows.Forms.Label - Friend WithEvents Label32 As System.Windows.Forms.Label - Friend WithEvents btnAtSelf As System.Windows.Forms.Button - Friend WithEvents lblAtSelf As System.Windows.Forms.Label - Friend WithEvents Label34 As System.Windows.Forms.Label - Friend WithEvents btnSelf As System.Windows.Forms.Button - Friend WithEvents lblSelf As System.Windows.Forms.Label - Friend WithEvents Label36 As System.Windows.Forms.Label - Friend WithEvents cmbNameBalloon As System.Windows.Forms.ComboBox - Friend WithEvents Label10 As System.Windows.Forms.Label - Friend WithEvents btnListBack As System.Windows.Forms.Button - Friend WithEvents lblListBackcolor As System.Windows.Forms.Label - Friend WithEvents Label19 As System.Windows.Forms.Label - Friend WithEvents CheckUseRecommendStatus As System.Windows.Forms.CheckBox - Friend WithEvents CmbDateTimeFormat As System.Windows.Forms.ComboBox - Friend WithEvents Label23 As System.Windows.Forms.Label - Friend WithEvents CheckBox3 As System.Windows.Forms.CheckBox - Friend WithEvents Label25 As System.Windows.Forms.Label - Friend WithEvents Label27 As System.Windows.Forms.Label - Friend WithEvents TextBox3 As System.Windows.Forms.TextBox - Friend WithEvents IconSize As System.Windows.Forms.ComboBox - Friend WithEvents btnDetailBack As System.Windows.Forms.Button - Friend WithEvents lblDetailBackcolor As System.Windows.Forms.Label - Friend WithEvents Label37 As System.Windows.Forms.Label - Friend WithEvents Label38 As System.Windows.Forms.Label - Friend WithEvents UReadMng As System.Windows.Forms.CheckBox - Friend WithEvents Label39 As System.Windows.Forms.Label - Friend WithEvents CheckReadOldPosts As System.Windows.Forms.CheckBox - Friend WithEvents Label40 As System.Windows.Forms.Label - Friend WithEvents CheckCloseToExit As System.Windows.Forms.CheckBox - Friend WithEvents Label41 As System.Windows.Forms.Label - Friend WithEvents CheckMinimizeToTray As System.Windows.Forms.CheckBox - Friend WithEvents BrowserPathText As System.Windows.Forms.TextBox - Friend WithEvents Label44 As System.Windows.Forms.Label - Friend WithEvents CheckDispUsername As System.Windows.Forms.CheckBox - Friend WithEvents Label46 As System.Windows.Forms.Label - Friend WithEvents Label45 As System.Windows.Forms.Label - Friend WithEvents ComboDispTitle As System.Windows.Forms.ComboBox - Friend WithEvents Label47 As System.Windows.Forms.Label - Friend WithEvents TabControl1 As System.Windows.Forms.TabControl - Friend WithEvents TabPage1 As System.Windows.Forms.TabPage - Friend WithEvents TabPage2 As System.Windows.Forms.TabPage - Friend WithEvents TabPage3 As System.Windows.Forms.TabPage - Friend WithEvents TabPage4 As System.Windows.Forms.TabPage - Friend WithEvents Button3 As System.Windows.Forms.Button - Friend WithEvents btnAtTo As System.Windows.Forms.Button - Friend WithEvents lblAtTo As System.Windows.Forms.Label - Friend WithEvents Label49 As System.Windows.Forms.Label - Friend WithEvents CheckTinyURL As System.Windows.Forms.CheckBox - Friend WithEvents Label50 As System.Windows.Forms.Label - Friend WithEvents TabPage5 As System.Windows.Forms.TabPage - Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox - Friend WithEvents RadioProxySpecified As System.Windows.Forms.RadioButton - Friend WithEvents RadioProxyIE As System.Windows.Forms.RadioButton - Friend WithEvents RadioProxyNone As System.Windows.Forms.RadioButton - Friend WithEvents TextProxyPort As System.Windows.Forms.TextBox - Friend WithEvents LabelProxyPort As System.Windows.Forms.Label - Friend WithEvents TextProxyAddress As System.Windows.Forms.TextBox - Friend WithEvents LabelProxyAddress As System.Windows.Forms.Label - Friend WithEvents TextProxyPassword As System.Windows.Forms.TextBox - Friend WithEvents LabelProxyPassword As System.Windows.Forms.Label - Friend WithEvents TextProxyUser As System.Windows.Forms.TextBox - Friend WithEvents LabelProxyUser As System.Windows.Forms.Label - Friend WithEvents Label55 As System.Windows.Forms.Label - Friend WithEvents CheckPeriodAdjust As System.Windows.Forms.CheckBox - Friend WithEvents Label51 As System.Windows.Forms.Label - Friend WithEvents CheckStartupVersion As System.Windows.Forms.CheckBox - Friend WithEvents Label54 As System.Windows.Forms.Label - Friend WithEvents CheckStartupFollowers As System.Windows.Forms.CheckBox - Friend WithEvents Label56 As System.Windows.Forms.Label - Friend WithEvents CheckFavRestrict As System.Windows.Forms.CheckBox - Friend WithEvents Label57 As System.Windows.Forms.Label - Friend WithEvents CheckAutoConvertUrl As System.Windows.Forms.CheckBox - Friend WithEvents Label29 As System.Windows.Forms.Label - Friend WithEvents TabPage6 As System.Windows.Forms.TabPage - Friend WithEvents Label59 As System.Windows.Forms.Label - Friend WithEvents TextBoxOutputzKey As System.Windows.Forms.TextBox - Friend WithEvents CheckOutputz As System.Windows.Forms.CheckBox - Friend WithEvents Label60 As System.Windows.Forms.Label - Friend WithEvents ComboBoxOutputzUrlmode As System.Windows.Forms.ComboBox - Friend WithEvents btnListFont As System.Windows.Forms.Button - Friend WithEvents lblListFont As System.Windows.Forms.Label - Friend WithEvents Label61 As System.Windows.Forms.Label - Friend WithEvents btnUnread As System.Windows.Forms.Button - Friend WithEvents lblUnread As System.Windows.Forms.Label - Friend WithEvents Label20 As System.Windows.Forms.Label - Friend WithEvents Label17 As System.Windows.Forms.Label - Friend WithEvents chkUnreadStyle As System.Windows.Forms.CheckBox - Friend WithEvents LabelDateTimeFormatApplied As System.Windows.Forms.Label - Friend WithEvents Label62 As System.Windows.Forms.Label - Friend WithEvents Label63 As System.Windows.Forms.Label - Friend WithEvents Label64 As System.Windows.Forms.Label - Friend WithEvents ConnectionTimeOut As System.Windows.Forms.TextBox - Friend WithEvents btnInputBackcolor As System.Windows.Forms.Button - Friend WithEvents lblInputBackcolor As System.Windows.Forms.Label - Friend WithEvents Label52 As System.Windows.Forms.Label - Friend WithEvents btnInputFont As System.Windows.Forms.Button - Friend WithEvents lblInputFont As System.Windows.Forms.Label - Friend WithEvents Label65 As System.Windows.Forms.Label - Friend WithEvents Label67 As System.Windows.Forms.Label - Friend WithEvents TextCountApi As System.Windows.Forms.TextBox - Friend WithEvents Label68 As System.Windows.Forms.Label - Friend WithEvents CheckBalloonLimit As System.Windows.Forms.CheckBox - Friend WithEvents CheckPostAndGet As System.Windows.Forms.CheckBox - Friend WithEvents Label69 As System.Windows.Forms.Label - Friend WithEvents ReplyPeriod As System.Windows.Forms.TextBox - Friend WithEvents ComboBoxAutoShortUrlFirst As System.Windows.Forms.ComboBox - Friend WithEvents Label71 As System.Windows.Forms.Label - Friend WithEvents Label48 As System.Windows.Forms.Label - Friend WithEvents chkTabIconDisp As System.Windows.Forms.CheckBox - Friend WithEvents ReplyIconStateCombo As System.Windows.Forms.ComboBox - Friend WithEvents Label72 As System.Windows.Forms.Label - Friend WithEvents Label73 As System.Windows.Forms.Label - Friend WithEvents chkReadOwnPost As System.Windows.Forms.CheckBox - Friend WithEvents Label74 As System.Windows.Forms.Label - Friend WithEvents chkGetFav As System.Windows.Forms.CheckBox - Friend WithEvents Label75 As System.Windows.Forms.Label - Friend WithEvents CheckMonospace As System.Windows.Forms.CheckBox - Friend WithEvents CheckUseSsl As System.Windows.Forms.CheckBox - Friend WithEvents Label76 As System.Windows.Forms.Label - Friend WithEvents TextBitlyPw As System.Windows.Forms.TextBox - Friend WithEvents Label77 As System.Windows.Forms.Label - Friend WithEvents TextBitlyId As System.Windows.Forms.TextBox - Friend WithEvents Label78 As System.Windows.Forms.Label - Friend WithEvents CheckShowGrid As System.Windows.Forms.CheckBox - Friend WithEvents Label21 As System.Windows.Forms.Label - Friend WithEvents CheckSortOrderLock As System.Windows.Forms.CheckBox - Friend WithEvents Label79 As System.Windows.Forms.Label - Friend WithEvents CheckAtIdSupple As System.Windows.Forms.CheckBox - Friend WithEvents CheckAlwaysTop As System.Windows.Forms.CheckBox - Friend WithEvents Label58 As System.Windows.Forms.Label - Friend WithEvents btnDetailLink As System.Windows.Forms.Button - Friend WithEvents lblDetailLink As System.Windows.Forms.Label - Friend WithEvents Label18 As System.Windows.Forms.Label - Friend WithEvents ButtonBackToDefaultFontColor As System.Windows.Forms.Button - Friend WithEvents btnRetweet As System.Windows.Forms.Button - Friend WithEvents lblRetweet As System.Windows.Forms.Label - Friend WithEvents Label80 As System.Windows.Forms.Label - Friend WithEvents LanguageCombo As System.Windows.Forms.ComboBox - Friend WithEvents Label13 As System.Windows.Forms.Label - Friend WithEvents Label81 As System.Windows.Forms.Label - Friend WithEvents TextCountApiReply As System.Windows.Forms.TextBox - Friend WithEvents PubSearchPeriod As System.Windows.Forms.TextBox - Friend WithEvents Label7 As System.Windows.Forms.Label - Friend WithEvents CheckNicoms As System.Windows.Forms.CheckBox - Friend WithEvents Label82 As System.Windows.Forms.Label - Friend WithEvents CheckHashSupple As System.Windows.Forms.CheckBox - Friend WithEvents AuthorizeButton As System.Windows.Forms.Button - Friend WithEvents AuthStateLabel As System.Windows.Forms.Label - Friend WithEvents Label4 As System.Windows.Forms.Label - Friend WithEvents AuthUserLabel As System.Windows.Forms.Label - Friend WithEvents AuthClearButton As System.Windows.Forms.Button - Friend WithEvents AuthBasicRadio As System.Windows.Forms.RadioButton - Friend WithEvents AuthOAuthRadio As System.Windows.Forms.RadioButton - Friend WithEvents Label6 As System.Windows.Forms.Label - Friend WithEvents TwitterSearchAPIText As System.Windows.Forms.TextBox - Friend WithEvents Label31 As System.Windows.Forms.Label - Friend WithEvents TwitterAPIText As System.Windows.Forms.TextBox - Friend WithEvents Label8 As System.Windows.Forms.Label - Friend WithEvents Label33 As System.Windows.Forms.Label - Friend WithEvents ListsPeriod As System.Windows.Forms.TextBox - Friend WithEvents Label35 As System.Windows.Forms.Label - Friend WithEvents CheckPreviewEnable As System.Windows.Forms.CheckBox - Friend WithEvents LabelApiUsing As System.Windows.Forms.Label - Friend WithEvents LabelPostAndGet As System.Windows.Forms.Label - Friend WithEvents ButtonApiCalc As System.Windows.Forms.Button - Friend WithEvents GroupBox3 As System.Windows.Forms.GroupBox - Friend WithEvents HotkeyText As System.Windows.Forms.TextBox - Friend WithEvents HotkeyWin As System.Windows.Forms.CheckBox - Friend WithEvents HotkeyAlt As System.Windows.Forms.CheckBox - Friend WithEvents HotkeyShift As System.Windows.Forms.CheckBox - Friend WithEvents HotkeyCtrl As System.Windows.Forms.CheckBox - Friend WithEvents HotkeyCheck As System.Windows.Forms.CheckBox - Friend WithEvents HotkeyCode As System.Windows.Forms.Label - Friend WithEvents Label43 As System.Windows.Forms.Label - Friend WithEvents ChkNewMentionsBlink As System.Windows.Forms.CheckBox - Friend WithEvents UseChangeGetCount As System.Windows.Forms.CheckBox - Friend WithEvents GetMoreTextCountApi As System.Windows.Forms.TextBox - Friend WithEvents Label53 As System.Windows.Forms.Label - Friend WithEvents FirstTextCountApi As System.Windows.Forms.TextBox - Friend WithEvents CheckEnableBasicAuth As System.Windows.Forms.CheckBox - Friend WithEvents SearchTextCountApi As System.Windows.Forms.TextBox - Friend WithEvents Label66 As System.Windows.Forms.Label - Friend WithEvents FavoritesTextCountApi As System.Windows.Forms.TextBox - Friend WithEvents CheckRetweetNoConfirm As System.Windows.Forms.CheckBox - Friend WithEvents Label42 As System.Windows.Forms.Label - Friend WithEvents ComboBoxPostKeySelect As System.Windows.Forms.ComboBox - Friend WithEvents GroupBox4 As System.Windows.Forms.GroupBox - Friend WithEvents UserstreamPeriod As System.Windows.Forms.TextBox - Friend WithEvents Label83 As System.Windows.Forms.Label - Friend WithEvents Label70 As System.Windows.Forms.Label - Friend WithEvents StartupUserstreamCheck As System.Windows.Forms.CheckBox -End Class Deleted: branches/SettingDialog/Tween/Setting.en.resx =================================================================== --- branches/SettingDialog/Tween/Setting.en.resx 2010-12-19 12:30:57 UTC (rev 1226) +++ branches/SettingDialog/Tween/Setting.en.resx 2010-12-19 23:26:16 UTC (rev 1227) @@ -1,1008 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - 56, 12 - - - Username - - - 54, 12 - - - Password - - - Cancel - - - 170, 12 - - - Timeline Fetching Interval (sec.) - - - 144, 12 - - - DM Fetching Interval (sec.) - - - 135, 12 - - - First-time Reading Posts - - - 81, 16 - - - Make Read - - - 162, 12 - - - Icon size in List (16 in default) - - - 38, 12 - - - Footer - - - 58, 16 - - - Enable - - - 42, 12 - - - Sounds - - - Sounds will play when you enable this option and set sound file for each tabs. - - - 58, 16 - - - Enable - - - 145, 12 - - - Colorize One-way following - - - Fore... - - - 96, 22 - - - Back to Default - - - Fore... - - - 119, 12 - - - Details of Tweet(Link) - - - Font... - - - 97, 12 - - - Font of input field - - - Back... - - - 169, 12 - - - Backcolor of focused input field - - - Font&&Fore... - - - 76, 12 - - - Unread Tweet - - - Back... - - - 78, 12 - - - Replied Tweet - - - Back... - - - 110, 12 - - - Backcolor of Details - - - Back... - - - 90, 12 - - - Backcolor of list - - - Back... - - - 114, 12 - - - Replied User's Tweet - - - Back... - - - 137, 12 - - - Replies for Selected User - - - Back... - - - 120, 12 - - - Selected User's Tweet - - - Back... - - - 84, 12 - - - Replies for You - - - Back... - - - 89, 12 - - - Your Own Tweet - - - Font&&Fore... - - - 90, 12 - - - Details of Tweet - - - Fore... - - - 100, 12 - - - One-way following - - - Fore... - - - 53, 12 - - - Favorited - - - Font&&Fore... - - - 94, 12 - - - Font of tweet list - - - Font && Color - - - None - - - User ID - - - Nickname - - - 103, 12 - - - Username in popup - - - 188, 16 - - - Use Recommended [TWNvNNN] - - - 105, 12 - - - Date Format in List - - - 58, 16 - - - Enable - - - 139, 12 - - - Show Icon in Details Pane - - - 117, 12 - - - Tweet with Ctrl-Enter - - - None - - - 89, 12 - - - Manage Reading - - - 58, 16 - - - Enable - - - 136, 12 - - - Make Read when updated - - - 58, 16 - - - Enable - - - 136, 12 - - - Exit when Closed Window - - - 58, 16 - - - Enable - - - 118, 12 - - - Iconize when Minimize - - - 58, 16 - - - Enable - - - 88, 12 - - - Path to Browser - - - 58, 16 - - - Enable - - - 141, 12 - - - Show Username in Popups - - - 65, 12 - - - Title format - - - None - - - Program Version - - - Latest your post - - - unread @reply items - - - unread items - - - unread items(unread @reply items) - - - unread items/all items - - - Count of Status/Follow/Follower - - - 115, 12 - - - Apply after restarting - - - 117, 12 - - - Refresh Interval (sec) - - - 130, 12 - - - Auto connect in Starting - - - 58, 16 - - - Enable - - - Recalculation - - - 358, 12 - - - Because "Post && fetch" is enabled, the API for each post consumed. - - - 150, 12 - - - Lists Fetching Interval (sec) - - - 70, 12 - - - Auth method - - - Clear - - - 65, 12 - - - Auth status - - - Auth - - - 149, 12 - - - Public Search Interval (sec.) - - - 156, 12 - - - Reply Fetching Interval (sec.) - - - 88, 16 - - - Post && fetch - - - 226, 12 - - - Getting number of tweets/mentions in API - - - 131, 12 - - - Get User List in Starting - - - 58, 16 - - - Enable - - - 158, 12 - - - Check for Updates in Starting - - - 58, 16 - - - Enable - - - 150, 16 - - - Enable Auto-Adjustment - - - 106, 12 - - - Get favs in Starting - - - 58, 16 - - - Enable - - - Basic - - - 62, 16 - - - Disable - - - 89, 12 - - - Retweet confirm - - - 58, 16 - - - Enable - - - Hotkey - - - 11, 439 - - - 142, 12 - - - Use Input #tag supplement - - - 173, 438 - - - 58, 16 - - - Enable - - - 11, 421 - - - 139, 12 - - - Use Input @ID supplement - - - 173, 420 - - - 58, 16 - - - Enable - - - 149, 12 - - - Primary URLshorten service - - - 58, 16 - - - Enable - - - 103, 12 - - - Auto shorten URLs - - - - False - - - - NoControl - - - 382, 28 - - - Refetch tweets and verify whether marked favorites. This option causes traffic incleasement. - - - 138, 12 - - - Marking Favorites Strictly - - - 58, 16 - - - Enable - - - 58, 16 - - - Enable - - - 136, 12 - - - Resolve Shortening URLs - - - Open... - - - Behavior - - - 124, 12 - - - Disp Picture Thumbnail - - - 58, 16 - - - Enable - - - 58, 16 - - - Enable - - - 81, 12 - - - Always on Top - - - 101, 12 - - - Lock Sorting Order - - - 58, 16 - - - Enable - - - 57, 12 - - - Show Grid - - - 51, 16 - - - Show - - - 150, 12 - - - Font in Detail Pane(for AA) - - - 81, 16 - - - Monospace - - - 81, 12 - - - Read own post - - - 58, 16 - - - Enable - - - Don't notify - - - Change icon - - - Change icon&blink - - - 188, 12 - - - Tasktray icon with unread mentions - - - 130, 12 - - - Blink with new mentions - - - 90, 12 - - - Show icon in tab - - - 58, 16 - - - Enable - - - 51, 16 - - - Show - - - 148, 12 - - - Limit the condition of popup - - - 193, 16 - - - only at the minimization and icon - - - 162, 12 - - - Unread styles(Font&&Forecolor) - - - 58, 16 - - - Enable - - - View - - - Fonts & Colors - - - 241, 16 - - - Enable to select BASIC auth in 'Basic' tab - - - 130, 16 - - - Use HTTPS Protocol - - - 371, 12 - - - ※Adjust Connection timeout if the error of timeout happens frequently. - - - 130, 12 - - - Connection timeout(sec) - - - 320, 12 - - - Keep credential empty if the proxy server don't need to log in - - - 54, 12 - - - Pass&word - - - 56, 12 - - - &Username - - - 26, 12 - - - &Port - - - 62, 12 - - - Pro&xy Host - - - 80, 16 - - - Use Below: - - - 200, 16 - - - Refer Settings of Internet Explorer - - - 73, 16 - - - Don't Use - - - Proxy Server - - - Connection - - - 125, 12 - - - Favorites/PublicSearch - - - 98, 12 - - - Get more/Starting - - - 188, 16 - - - Enable to edit 'Count' parameter - - - 196, 16 - - - Shorten nicovideo urls by nico.ms - - - 107, 12 - - - URI of your Outputz - - - 86, 12 - - - Your secret key - - - 87, 16 - - - Use Outputz - - - Settings - - \ No newline at end of file Deleted: branches/SettingDialog/Tween/Setting.resx =================================================================== --- branches/SettingDialog/Tween/Setting.resx 2010-12-19 12:30:57 UTC (rev 1226) +++ branches/SettingDialog/Tween/Setting.resx 2010-12-19 23:26:16 UTC (rev 1227) @@ -1,6462 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - 11, 81 - - - search.twitter.com - - - 197, 108 - - - - True - - - 12, 12 - - - none - - - - NoControl - - - 51 - - - 25 - - - 43, 16 - - - 90, 22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - OK - - - 16*16 - - - True - - - 3 - - - 背景色 - - - TabPage3 - - - GroupBox4 - - - 6, 337 - - - 14 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage1 - - - LabelApiUsing - - - 163, 12 - - - 76, 451 - - - 11, 392 - - - 23 - - - 67, 16 - - - 5 - - - True - - - 67, 16 - - - 24 - - - 7 - - - 9, 248 - - - TabPage1 - - - 背景色 - - - 28 - - - This is sample. - - - TabPage1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 18 - - - LanguageCombo - - - 43 - - - 67, 16 - - - 2 - - - ConnectionTimeOut - - - 3 - - - True - - - 170, 20 - - - cmbNameBalloon - - - 104, 19 - - - TabPage3 - - - Twitter API URL (api.twitter.com) - - - 173, 6 - - - 40 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 21 - - - 28 - - - 7 - - - 8 - - - 247, 385 - - - 自動調整する - - - 104, 19 - - - 13 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 163, 12 - - - 10 - - - CheckMinimizeToTray - - - True - - - 7 - - - 306, 368 - - - tinyurl - - - 38 - - - 65, 19 - - - 109, 16 - - - lblOWL - - - 53, 12 - - - 28 - - - 154, 12 - - - 11 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - CheckMonospace - - - 4, 22 - - - 146, 440 - - - 9 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - 48*48 - - - HotkeyCtrl - - - 14, 430 - - - 30 - - - GroupBox1 - - - True - - - Label79 - - - GroupBox1 - - - 9 - - - True - - - 18 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 197, 54 - - - True - - - 173, 146 - - - Label44 - - - TabPage3 - - - 10 - - - Label6 - - - 0 - - - Win - - - True - - - 8 - - - 306, 418 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 22 - - - TabPage2 - - - 19 - - - 31 - - - MiddleLeft - - - Label45 - - - tt h:mm - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - 13, 14 - - - chkGetFav - - - StatusText - - - Label8 - - - lblUnread - - - 既読にする - - - 通知なし - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - GroupBox3 - - - TabPage2 - - - 9, 198 - - - StartupUserstreamCheck - - - 5 - - - True - - - 81, 12 - - - TabPage1 - - - api.twitter.com - - - NoControl - - - 29 - - - 31 - - - Username - - - TabPage2 - - - ComboBoxAutoShortUrlFirst - - - MiddleLeft - - - 22 - - - 186, 19 - - - 16 - - - 取得する - - - 63, 12 - - - 新着Mentions時画面点滅 - - - True - - - Alt - - - True - - - 252, 268 - - - TabPage1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 297, 451 - - - GroupBox2 - - - True - - - 45 - - - する - - - 13 - - - 270, 216 - - - Fav結果厳密チェック - - - 247, 429 - - - TabPage2 - - - 4, 22 - - - LabelProxyPort - - - AuthStateLabel - - - 30 - - - 94, 12 - - - 104, 42 - - - 171, 216 - - - OAuth(xAuth) - - - RT確認しない - - - 64, 189 - - - 36 - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 67, 16 - - - True - - - 219, 7 - - - 発言詳細背景色 - - - 認証済み - - - 4 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9 - - - 100, 20 - - - Label29 - - - 149, 14 - - - Label41 - - - 27 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 116, 15 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 195, 163 - - - TabPage1 - - - 185, 245 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ChkNewMentionsBlink - - - 6, 108 - - - 11, 59 - - - English - - - TabPage3 - - - 6 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This is sample. - - - H:mm:ss - - - GroupBox1 - - - 324, 234 - - - 247, 261 - - - 70, 12 - - - 14, 288 - - - 349, 12 - - - 28, 134 - - - TabPage3 - - - 発言一覧への反映間隔(秒) - - - NoControl - - - TabPage6 - - - TextCountApiReply - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 25 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage5 - - - 1 - - - NoControl - - - Label47 - - - 44, 12 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 4 - - - NoControl - - - 58, 12 - - - 23 - - - TabPage3 - - - GroupBox2 - - - 6, 9 - - - GroupBox1 - - - TabPage2 - - - 174, 12 - - - GroupBox3 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 推奨フッターを使用する[TWNv○○] - - - True - - - 2 - - - 6, 105 - - - yyyy/MM/dd H:mm:ss - - - 9 - - - CmbDateTimeFormat - - - 185, 345 - - - CheckSortOrderLock - - - 表示 - - - TabPage6 - - - btnTarget - - - 34, 19 - - - 3 - - - This is sample. - - - 50 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 30 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 185, 170 - - - 75, 22 - - - その発言の@先の人の発言 - - - 片思い色分け表示 - - - 自分の発言 - - - 5 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - 37 - - - ReplyIconStateCombo - - - Label42 - - - TabPage5 - - - TabPage3 - - - 2 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 131, 12 - - - True - - - OneWayLv - - - ユーザー名を表示 - - - Label67 - - - True - - - 20 - - - 13, 322 - - - 34 - - - CheckNicoms - - - 20 - - - H:mm:ss yy/M/d - - - 104, 28 - - - MiddleLeft - - - True - - - Label34 - - - 自分への@返信 - - - 起動時片思いユーザーリスト取得 - - - 67, 16 - - - 58, 19 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - (なし) - - - OS Default - - - 4 - - - LabelProxyPassword - - - 28 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - TabPage2 - - - ButtonBackToDefaultFontColor - - - 8 - - - TabPage6 - - - True - - - 背景色 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 276, 30 - - - 114, 20 - - - 5 - - - 9 - - - 115, 16 - - - 105, 7 - - - 186, 19 - - - Label49 - - - 75, 22 - - - 31 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9 - - - NoControl - - - 3, 3, 3, 3 - - - フッター(文末に付加) - - - バルーン表示制限 - - - 11 - - - 27 - - - 入力欄アクティブ時背景色 - - - 102, 12 - - - True - - - Label62 - - - 297, 82 - - - False - - - サウンド再生 - - - True - - - TabPage3 - - - TabPage1 - - - 60, 12 - - - 5 - - - NoControl - - - 15 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox3 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 57, 12 - - - True - - - 4 - - - True - - - UserstreamPeriod - - - MiddleLeft - - - TabPage2 - - - TabPage5 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 16 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 70, 19 - - - 1 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - TabPage3 - - - 74, 16 - - - 9 - - - True - - - 30 - - - GroupBox4 - - - 22 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - btnAtSelf - - - GroupBox1 - - - 32 - - - chkTabIconDisp - - - 0 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 20 - - - 認証する - - - 7 - - - 1 - - - 32 - - - 48, 16 - - - LabelPostAndGet - - - 未読Mentions通知アイコン - - - GroupBox1 - - - CheckShowGrid - - - TabPage3 - - - GroupBox1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lblDetail - - - 35 - - - NoControl - - - 88, 12 - - - 6 - - - キャンセル - - - NoControl - - - TabPage1 - - - 取得する - - - NoControl - - - UseChangeGetCount - - - btnAtTo - - - 背景色 - - - 4, 15 - - - TextProxyPassword - - - GroupBox1 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label63 - - - 2 - - - 11 - - - 短縮URLを解決 - - - 29 - - - 4 - - - 26 - - - 5 - - - 0 - - - 44, 12 - - - TabPage1 - - - NoControl - - - TabPage3 - - - 0 - - - TabPage3 - - - System.Windows.Forms.FontDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 文字色 - - - 認証状態 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 296, 38 - - - TabPage3 - - - ユーザー名 - - - 104, 19 - - - System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 有効 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3, 3, 3, 3 - - - 431, 553 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage1 - - - 48, 16 - - - 185, 145 - - - Disable - - - CheckAtIdSupple - - - 197, 426 - - - 3 - - - 75, 22 - - - GroupBox1 - - - 26 - - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 4 - - - FirstTextCountApi - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 84, 12 - - - 67, 16 - - - btnAtTarget - - - True - - - 1 - - - 185, 220 - - - TabPage3 - - - 2 - - - 53, 12 - - - 26 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 197, 141 - - - 13 - - - GroupBox1 - - - 15 - - - 318, 213 - - - 17 - - - lblRetweet - - - 3 - - - CheckFavRestrict - - - 14, 240 - - - AuthBasicRadio - - - True - - - True - - - 1 - - - 0 - - - 0 - - - 173, 168 - - - 2 - - - 340, 518 - - - 75, 22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 62, 106 - - - 306, 168 - - - TabPage3 - - - 19 - - - 9 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Twitter検索更新間隔(秒) - - - 3 - - - 173, 310 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label40 - - - Label39 - - - GroupBox1 - - - 18 - - - True - - - GroupBox1 - - - GroupBox1 - - - 36 - - - 2 - - - GroupBox3 - - - 65, 19 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - 134, 12 - - - 173, 283 - - - 8 - - - 20 - - - 241, 193 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - GroupBox1 - - - 18 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MiddleRight - - - True - - - CheckPostAndGet - - - True - - - 5 - - - 91, 16 - - - 185, 20 - - - 145, 16 - - - リストフォント - - - TabPage2 - - - 33 - - - 3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 6 - - - 17 - - - タイトルバーとツールチップ - - - 306, 343 - - - 20 - - - 26 - - - 投稿時取得が有効のため、投稿のたびにAPIを消費します。 - - - NoControl - - - 399, 474 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 42 - - - LabelProxyUser - - - NoControl - - - GroupBox1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 75, 23 - - - 6, 361 - - - Password - - - 10 - - - 158, 12 - - - 41 - - - 104, 19 - - - 28 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 起動時読み込みポスト - - - ブラウザパス - - - 65, 19 - - - 11 - - - TabPage3 - - - 37 - - - 12 - - - 31 - - - TabPage5 - - - 185, 70 - - - 39 - - - 0 - - - 999 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 17 - - - M/d H:mm - - - GroupBox1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 33 - - - lblInputBackcolor - - - NoControl - - - MiddleLeft - - - CheckRetweetNoConfirm - - - 2 - - - TabPage3 - - - 197, 382 - - - 16 - - - True - - - 39 - - - 14 - - - 15 - - - TabPage2 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 再生する - - - 32 - - - GroupBox4 - - - 6, 6 - - - 99, 12 - - - 13 - - - 75, 22 - - - TabPage6 - - - NoControl - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 75, 22 - - - 7, 7 - - - True - - - 53, 12 - - - 10 - - - 42, 12 - - - 9, 148 - - - Label43 - - - 11 - - - 267, 233 - - - 38 - - - ColorDialog1 - - - フォント&&色 - - - 使用する - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - MiddleLeft - - - 15, 161 - - - TabControl1 - - - 8 - - - 27 - - - TabPage1 - - - TabControl1 - - - 12 - - - True - - - 259, 518 - - - GroupBox1 - - - 197, 244 - - - 13, 234 - - - 15, 183 - - - Label57 - - - 5 - - - RadioProxyIE - - - #タグ入力補助 - - - TabPage6 - - - 171, 16 - - - IconSize - - - 6 - - - TabPage3 - - - TabPage2 - - - Label75 - - - CheckPeriodAdjust - - - 27 - - - True - - - 6 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabControl1 - - - 197, 448 - - - 7 - - - 125, 19 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 121, 12 - - - 6 - - - 14 - - - 87, 12 - - - その人への@返信 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 11, 260 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label35 - - - 入力欄フォント - - - True - - - NoControl - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - 10 - - - TabPage6 - - - 197, 102 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - TabPage2 - - - True - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - Simplified Chinese - - - 0 - - - 6, 55 - - - 35 - - - Label80 - - - True - - - M/d tt h:mm:ss - - - 5 - - - TabPage6 - - - 起動時Fav取得 - - - 197, 288 - - - NoControl - - - Label14 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 50, 19 - - - 14 - - - True - - - 247, 364 - - - ID - - - 58, 19 - - - Label81 - - - 6, 405 - - - 9 - - - lblDetailLink - - - 100, 12 - - - 185, 270 - - - 19 - - - 26 - - - TabPage5 - - - 53, 12 - - - Label30 - - - 47 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Ctrl - - - 起動時自動接続 - - - 84, 16 - - - 173, 391 - - - 点滅する - - - 45 - - - 197, 404 - - - 197, 76 - - - Label31 - - - 11, 147 - - - 9, 23 - - - 37 - - - 76, 16 - - - 11, 271 - - - $this - - - 75, 22 - - - 104, 19 - - - 6, 12 - - - This is sample. - - - 8 - - - 44 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label36 - - - 11, 239 - - - 6, 179 - - - GroupBox1 - - - This is sample. - - - 22 - - - TabPage5 - - - Lists更新間隔(秒) - - - True - - - TabPage1 - - - 3, 3, 3, 3 - - - 5 - - - TabPage2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 399, 474 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 195, 16 - - - 168, 15 - - - M/d tt h:mm - - - CheckHashSupple - - - Label37 - - - H:mm:ss M/d - - - 131, 103 - - - lblAtTarget - - - 130, 12 - - - True - - - 76, 16 - - - 11 - - - 306, 93 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - chkReadOwnPost - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 67, 16 - - - 文字色 - - - Label82 - - - 31, 316 - - - 31 - - - 5 - - - GroupBox1 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 173, 58 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11, 169 - - - 15 - - - SearchTextCountApi - - - True - - - 26 - - - 43, 16 - - - NoControl - - - 130, 12 - - - 19 - - - 113, 12 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label83 - - - TabPage4 - - - NoControl - - - 23 - - - 6, 289 - - - True - - - Label32 - - - 7 - - - NoControl - - - 適用する - - - GroupBox2 - - - 197, 178 - - - True - - - 4 - - - 75, 22 - - - 46 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 247, 451 - - - 14, 216 - - - True - - - 10 - - - 36 - - - Label15 - - - Mentions更新間隔(秒) - - - 42 - - - 14, 174 - - - 11, 358 - - - Label33 - - - GroupBox1 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 新着バルーンのユーザー名 - - - 266, 209 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9, 98 - - - True - - - 104, 19 - - - する - - - 36 - - - 24 - - - 33 - - - Label46 - - - Label38 - - - 38 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MiddleLeft - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 投稿時取得 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 41 - - - True - - - TabPage1 - - - NoControl - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage1 - - - 0 - - - 77, 19 - - - Label12 - - - True - - - 6, 245 - - - btnListFont - - - HotkeyShift - - - True - - - True - - - True - - - True - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9, 273 - - - 16 - - - True - - - 11, 219 - - - 6, 62 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - 15 - - - 1 - - - 9, 123 - - - 274, 103 - - - 247, 171 - - - 247, 407 - - - TabPage1 - - - Label10 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This is sample. - - - CheckStartupFollowers - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - TabPage3 - - - 20 - - - 86, 12 - - - True - - - Label11 - - - InternetExplorerの設定を使用する - - - 6, 313 - - - 48 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 12 - - - 11, 103 - - - 29 - - - 43 - - - True - - - $this - - - True - - - 30 - - - PlaySnd - - - TimelinePeriod - - - Label16 - - - TabPage1 - - - 32 - - - 6, 435 - - - TabPage3 - - - 38 - - - 8, 173 - - - NoControl - - - 15 - - - True - - - 認証方法 - - - 9 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - 5 - - - 1 - - - Label17 - - - TextBitlyPw - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ×ボタンを押したとき - - - 27 - - - True - - - 25 - - - 14, 386 - - - AuthorizeButton - - - 197, 6 - - - 12 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 38 - - - TabPage2 - - - True - - - 0 - - - ListsPeriod - - - PubSearchPeriod - - - 306, 68 - - - 18 - - - 4 - - - 173, 332 - - - 6 - - - 15 - - - 接続する - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 12 - - - True - - - 21 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 最終発言 - - - 未読数(@未読数) - - - 未読数 - - - 発言数/フォロー数/フォロワー数 - - - TabPage1 - - - 1 - - - 77, 12 - - - 4 - - - 60, 12 - - - 399, 474 - - - Label1 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 14, 454 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This is sample. - - - True - - - True - - - 29 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 29 - - - 0 - - - 105, 86 - - - 3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 145, 12 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label5 - - - Label13 - - - ReTweet - - - True - - - StartupReaded - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - HotkeyAlt - - - Label54 - - - ソート順 - - - 66, 12 - - - GroupBox1 - - - 38 - - - TabPage1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - Label18 - - - GetMoreTextCountApi - - - NoControl - - - This is sample. - - - 33 - - - TabPage1 - - - 6 - - - True - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - Label55 - - - TabPage3 - - - NoControl - - - 247, 237 - - - TabPage1 - - - 93, 16 - - - Label9 - - - Label19 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - POSTキー(デフォルトEnter) - - - 6 - - - 4, 22 - - - 13 - - - 252, 293 - - - ButtonApiCalc - - - 28, 65 - - - 67, 16 - - - 6, 79 - - - 306, 218 - - - 197, 222 - - - 32 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 40 - - - 1 - - - twitter.com - - - 13 - - - 16 - - - 1 - - - TabPage2 - - - 22 - - - True - - - btnInputBackcolor - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 296, 309 - - - NoControl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 発言詳細部のアイコン表示 - - - 25 - - - lblFav - - - TabPage1 - - - 75, 22 - - - ホットキー - - - 17 - - - 306, 193 - - - lblSelf - - - TabPage3 - - - 指定する - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 32 - - - GroupBox1 - - - 9, 373 - - - TabPage6 - - - 399, 474 - - - 30 - - - 17 - - - This is sample. - - - TabPage2 - - - 34 - - - True - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label50 - - - 11 - - - 84, 12 - - - 2 - - - 50 - - - TabPage1 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 65, 23 - - - 125, 19 - - - True - - - 3, 3, 3, 3 - - - 52, 12 - - - NoControl - - - NoControl - - - 228, 12 - - - btnDetail - - - Label51 - - - NoControl - - - リストの日時フォーマット - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 標準取得件数/Mentions取得件数 - - - NoControl - - - True - - - 再計算 - - - TabPage2 - - - 112, 19 - - - GroupBox1 - - - TabPage1 - - - TabPage6 - - - 34 - - - TabPage2 - - - 197, 360 - - - NoControl - - - 104, 19 - - - Label56 - - - TabPage1 - - - 3 - - - 11, 7 - - - 30 - - - TabPage1 - - - True - - - 399, 474 - - - 9, 298 - - - 2 - - - 8 - - - 0 - - - TabPage3 - - - GroupBox3 - - - GroupBox1 - - - 27 - - - GroupBox2 - - - 発言詳細リンク - - - GroupBox3 - - - 未読管理 - - - 常に最前面表示 - - - NoControl - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 36 - - - TabPage2 - - - TabPage3 - - - 28 - - - CheckDispUsername - - - True - - - True - - - 43, 16 - - - True - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 68, 19 - - - GroupBox1 - - - 185, 45 - - - 8, 15 - - - is.gd - - - アイコン化する - - - 117, 12 - - - True - - - 25 - - - フォント&色設定 - - - 14 - - - 65, 19 - - - TabPage6 - - - タイムアウトまでの時間(秒) - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 185, 395 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 399, 474 - - - 14 - - - プロキシの設定 - - - 文字色 - - - TabPage3 - - - 69, 12 - - - True - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - TextBoxOutputzKey - - - 49 - - - 195, 125 - - - Label52 - - - 115, 12 - - - 入力欄URLの自動短縮 - - - 1 - - - TabPage3 - - - 6, 451 - - - フォント&&色 - - - なし - - - CheckAlwaysTop - - - NoControl - - - Label2 - - - 211, 15 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11, 376 - - - 66, 16 - - - TabPage2 - - - リスト区切り線 - - - GroupBox1 - - - MiddleLeft - - - Label53 - - - True - - - 104, 19 - - - GroupBox1 - - - リストのアイコンサイズ(初期値16) - - - 21 - - - Twitter SearchAPI URL (search.twitter.com) - - - 65, 19 - - - Userstream - - - 起動時バージョンチェック - - - Label74 - - - TabPage3 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - btnListBack - - - Label58 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This is sample. - - - 245, 125 - - - NoControl - - - CheckAutoConvertUrl - - - 24 - - - FontDialog1 - - - 6, 267 - - - NoControl - - - True - - - TabPage3 - - - 104, 19 - - - lblDetailBackcolor - - - 107, 12 - - - 63, 12 - - - TabPage1 - - - 75, 22 - - - 75, 23 - - - 91, 16 - - - 197, 336 - - - 14, 9 - - - TabPage2 - - - 6 - - - TabPage2 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 表示する - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 90, 16 - - - 162, 12 - - - 65, 19 - - - 12 - - - Save - - - True - - - 8 - - - 114, 12 - - - btnFav - - - CheckCloseToExit - - - TabPage2 - - - 185, 370 - - - GroupBox1 - - - 6, 427 - - - 285, 12 - - - 67, 16 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - URL自動短縮で優先的に使用 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - Label70 - - - 4, 22 - - - 168, 20 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - 6, 223 - - - This is sample. - - - 19 - - - NoControl - - - 18 - - - GroupBox1 - - - 44, 12 - - - Label71 - - - Label24 - - - TabControl1 - - - 使用しない - - - 23 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 6, 143 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label48 - - - True - - - CheckUseRecommendStatus - - - lblAtSelf - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 62, 12 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label25 - - - TabPage3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This is sample. - - - True - - - 34 - - - 使用する - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 24 - - - 104, 19 - - - 8 - - - TabPage3 - - - 26 - - - 6, 40 - - - 185, 320 - - - 2 - - - GroupBox3 - - - 340, 16 - - - 2 - - - 43, 16 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - クリア - - - TabPage3 - - - TabPage1 - - - Label77 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - chkUnreadStyle - - - 75, 22 - - - 8 - - - 42 - - - TabPage1 - - - GroupBox1 - - - 7 - - - Label3 - - - 171, 12 - - - 50, 12 - - - True - - - 28 - - - 173, 124 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage3 - - - 173, 80 - - - 42 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 2 - - - AuthClearButton - - - 背景色 - - - GroupBox1 - - - 17 - - - ComboDispTitle - - - TabPage5 - - - 173, 259 - - - 6, 18 - - - lblTarget - - - True - - - TabPage3 - - - Label20 - - - 3 - - - 0 - - - True - - - 306, 243 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - 4 - - - Label7 - - - 27 - - - 3 - - - 34 - - - 72, 12 - - - NoControl - - - NoControl - - - 104, 19 - - - 1 - - - 39 - - - Label66 - - - 39 - - - Label21 - - - TabPage2 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label72 - - - 185, 420 - - - 75, 22 - - - 77, 12 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 104, 19 - - - 121, 20 - - - 104, 19 - - - LabelDateTimeFormatApplied - - - 0 - - - j.mp - - - 36 - - - TextProxyPort - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage3 - - - 105, 65 - - - 12 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 126, 12 - - - 243, 81 - - - 0 - - - Label73 - - - BASIC - - - 32 - - - ロックする - - - 70, 19 - - - TabPage2 - - - 37 - - - Setting - - - 画面最小化・アイコン時のみ表示 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TextBox3 - - - 14 - - - Label78 - - - True - - - 73, 19 - - - タブの未読アイコン表示 - - - ReplyPeriod - - - MiddleLeft - - - 17 - - - TabPage2 - - - ComboBoxOutputzUrlmode - - - 35 - - - 407, 500 - - - True - - - GroupBox1 - - - 67, 16 - - - 13 - - - TabPage3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ユーザ名(&U) - - - 20 - - - 0 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage3 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox2 - - - 34 - - - ComboBoxPostKeySelect - - - 76, 12 - - - CheckPreviewEnable - - - 6 - - - GroupBox1 - - - 18 - - - GroupBox1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 48, 12 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 12 - - - MiddleLeft - - - This is sample. - - - btnOWL - - - NoControl - - - 387, 466 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 解決する - - - TabPage5 - - - 10 - - - GroupBox1 - - - NoControl - - - TabPage2 - - - 314, 12 - - - 112, 16 - - - 39, 16 - - - TabPage6 - - - Label22 - - - TabPage5 - - - 197, 62 - - - 6, 383 - - - 7 - - - TabPage1 - - - 178, 16 - - - True - - - 97, 12 - - - NoControl - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 26 - - - CheckOutputz - - - NoControl - - - 197, 266 - - - 36 - - - TextCountApi - - - True - - - 3 - - - GroupBox1 - - - 14, 68 - - - CheckUseSsl - - - Label23 - - - 48, 12 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 185, 95 - - - 3 - - - 2 - - - lblListBackcolor - - - 4 - - - True - - - 最小化したとき - - - GroupBox1 - - - 14, 365 - - - Label69 - - - Label28 - - - True - - - Ctrl+Enter - - - GroupBox1 - - - 発言詳細文字 - - - NoControl - - - ユーザーID - - - 69, 15 - - - ニックネーム - - - btnSelf - - - 67, 16 - - - 387, 60 - - - 7 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 306, 18 - - - twurl.nl - - - タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 - - - NoControl - - - 6 - - - 画像リンクサムネイル表示 - - - ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox4 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - HotkeyText - - - 114, 20 - - - True - - - 67, 16 - - - 5 - - - True - - - CheckBox3 - - - H:mm - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 片思い発言 - - - This is sample. - - - 306, 293 - - - 241, 14 - - - タイムライン更新間隔(秒) - - - 29 - - - 24 - - - 14, 408 - - - RadioProxyNone - - - AuthOAuthRadio - - - 4 - - - NoControl - - - NoControl - - - TabPage6 - - - 24, 193 - - - 22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 52, 19 - - - BrowserPathText - - - True - - - GroupBox2 - - - MiddleLeft - - - 基本 - - - 4, 22 - - - する - - - True - - - TabPage6 - - - True - - - GroupBox1 - - - CheckBalloonLimit - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage1 - - - This is sample. - - - TextBitlyId - - - HotkeyWin - - - Apply after restarting - - - 306, 268 - - - TabPage3 - - - NoControl - - - Fav発言 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 自動短縮する - - - Favorites/PublicSearchの取得数 - - - 89, 12 - - - NoControl - - - 37 - - - 75, 23 - - - 再起動後有効になります。 - - - 36 - - - 15 - - - 背景色 - - - 0 - - - 170, 20 - - - 390, 39 - - - True - - - 41 - - - Shift - - - 134, 12 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 63, 12 - - - 設定 - - - 115, 12 - - - True - - - NoControl - - - 8 - - - TabPage2 - - - 12 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11 - - - 背景色 - - - 122, 12 - - - 103, 12 - - - DM更新間隔(秒) - - - 19 - - - CheckEnableBasicAuth - - - 10 - - - 137, 12 - - - 104, 19 - - - True - - - CheckTinyURL - - - NoControl - - - FavoritesTextCountApi - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 23 - - - TabPage2 - - - TabPage3 - - - 27 - - - 49 - - - 35 - - - True - - - 74, 12 - - - 6 - - - 10 - - - TextProxyUser - - - 134, 20 - - - 9 - - - TabPage1 - - - NoControl - - - True - - - Sample: - - - CheckStartupVersion - - - 63, 12 - - - 6 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 31 - - - GroupBox2 - - - True - - - TabPage3 - - - 62, 12 - - - NoControl - - - NoControl - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - アイコン変更&点滅 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 7 - - - 9 - - - False - - - 89, 12 - - - 46 - - - 5 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 40 - - - 44 - - - 35 - - - 75, 22 - - - True - - - TabPage5 - - - 2 - - - 16 - - - 34 - - - 10 - - - NoControl - - - True - - - 1 - - - NoControl - - - True - - - 306, 118 - - - 一般発言 - - - パスワード - - - 新着時未読クリア - - - TabPage2 - - - 復活の呪文 - - - 21 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 15, 28 - - - 306, 43 - - - 386, 161 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - twitter.com/username - - - ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This is sample. - - - 32 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 104, 19 - - - 25 - - - Additional - - - 23 - - - GroupBox2 - - - 4 - - - True - - - 1 - - - True - - - 33 - - - TabPage2 - - - TabPage3 - - - 75, 23 - - - TabPage1 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 44, 19 - - - 75, 22 - - - 340, 12 - - - 306, 143 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage5 - - - 51 - - - NoControl - - - 発言詳細表示フォント(AA対応) - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 7 - - - 257, 13 - - - 76, 16 - - - 173, 236 - - - 0 - - - 5 - - - NoControl - - - TabPage3 - - - 42, 16 - - - 28, 111 - - - Japanese - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9, 73 - - - 35 - - - 2 - - - TabControl1 - - - 40 - - - 通信 - - - 通信にHTTPSを使用する - - - GroupBox1 - - - Cancel - - - @ID入力補助 - - - lblInputFont - - - TabPage1 - - - 6, 201 - - - 75, 22 - - - Button3 - - - 22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 137, 12 - - - TabPage1 - - - 197, 310 - - - 0 - - - MiddleLeft - - - 102, 78 - - - 14, 28 - - - 7 - - - 16 - - - 75, 22 - - - btnRetweet - - - TabPage6 - - - 190, 16 - - - 4 - - - 文字色 - - - 37 - - - NoControl - - - 143, 12 - - - 1 - - - 123, 12 - - - 9, 423 - - - MiddleLeft - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 53, 12 - - - 使用する - - - 13, 212 - - - 14, 89 - - - 185, 195 - - - 22 - - - lblListFont - - - True - - - 241, 36 - - - 67, 16 - - - 3 - - - タイトルバー - - - TabPage2 - - - 19 - - - 37 - - - Label26 - - - btnAtFromTarget - - - 5 - - - Not Authenticated - - - 等幅(フォント適用不具合あり) - - - 24 - - - True - - - False - - - GroupBox2 - - - デフォルトに戻す - - - 31 - - - 1 - - - 168, 19 - - - 29 - - - 11, 125 - - - btnDetailBack - - - Label27 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 237, 16 - - - 8 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - フォント&&色 - - - 324, 209 - - - True - - - True - - - TabPage1 - - - 47 - - - LabelProxyAddress - - - 173, 357 - - - 247, 213 - - - 102, 12 - - - NoControl - - - 29 - - - 75, 23 - - - 動作 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - UReadMng - - - 2 - - - 297, 78 - - - btnInputFont - - - 21 - - - MiddleLeft - - - 最前面に表示する - - - GroupBox1 - - - 38, 81 - - - 35 - - - MiddleLeft - - - True - - - True - - - GroupBox1 - - - プロキシ(&X) - - - Label64 - - - NoControl - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 4 - - - 89, 12 - - - Outputzに対応する - - - BASIC認証への変更を許可する - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 23 - - - 173, 102 - - - 2 - - - 16, 12 - - - 21 - - - True - - - btnDetailLink - - - GroupBox2 - - - 177, 12 - - - Label65 - - - bit.ly - - - TabPage1 - - - NoControl - - - 11, 25 - - - Label4 - - - 4 - - - True - - - True - - - 44, 19 - - - True - - - btnUnread - - - 4, 22 - - - 21 - - - 14, 264 - - - 11 - - - True - - - $this - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage3 - - - パスワード(&W) - - - True - - - 8 - - - 96, 19 - - - TabPage1 - - - 173, 413 - - - 23 - - - 34 - - - NoControl - - - True - - - lblAtFromTarget - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - M/d H:mm:ss - - - 終了する - - - 表示する - - - 4 - - - 背景色 - - - 23, 12 - - - GroupBox1 - - - True - - - 11 - - - その人の発言 - - - True - - - 9, 348 - - - 41 - - - 24*24 - - - 0 - - - 9, 223 - - - 5 - - - True - - - GroupBox1 - - - Label60 - - - ポート(&P) - - - 13 - - - lblAtTo - - - 背景色 - - - 33 - - - 205, 106 - - - NoControl - - - TabPage3 - - - 9 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 未読フォント - - - 1 - - - Label61 - - - TextProxyAddress - - - 9 - - - True - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - チェックする - - - 未読スタイル(フォント&色)適用 - - - RadioProxySpecified - - - 25 - - - CheckReadOldPosts - - - 185, 295 - - - HotkeyCheck - - - TwitterAPIText - - - 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 - - - 0 - - - ニコニコ動画のURLをnico.msで短縮して送信 - - - 301, 281 - - - 35 - - - 48 - - - 11, 286 - - - 76, 12 - - - 38 - - - AuthUserLabel - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 73, 12 - - - MiddleLeft - - - その発言の@先発言 - - - 19 - - - 135, 19 - - - TwitterSearchAPIText - - - 92, 16 - - - TabPage1 - - - True - - - True - - - 24 - - - 次の項目の更新時の取得数を個別に設定する - - - TabPage2 - - - 20 - - - TabPage1 - - - 8 - - - GroupBox4 - - - 0 - - - 9, 398 - - - 6 - - - TabPage2 - - - 104, 19 - - - 247, 16 - - - 11, 414 - - - 9, 48 - - - 25 - - - 4 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 185, 120 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 104, 19 - - - yy/M/d H:mm:ss - - - 194, 213 - - - バージョン - - - @未読数 - - - 21 - - - 3 - - - MiddleLeft - - - 18 - - - 全未読/全発言数 - - - 131, 12 - - - 131, 12 - - - アウトプット先のURL - - - 92, 12 - - - NoControl - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 112, 14 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Top, Bottom, Left, Right - - - True - - - True - - - フォント&色 - - - 11, 310 - - - Language - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox2 - - - 33 - - - 前データの更新/初回の更新 - - - APIKey - - - 31 - - - 234, 186 - - - TabControl1 - - - NoControl - - - 173, 190 - - - 67, 16 - - - True - - - 7 - - - Shift+Enter - - - 3 - - - 11 - - - 参照 - - - 11, 296 - - - 24 - - - True - - - 10 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - フォント&&色 - - - Enter - - - True - - - 100, 19 - - - DMPeriod - - - True - - - 13, 246 - - - 38 - - - Label63 - - - 17 - - - CenterParent - - - 75, 22 - - - TabPage4 - - - 33 - - - 12 - - - 表示する - - - アイコン変更 - - - 16 - - - 5 - - - Label68 - - - 57, 16 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11, 193 - - - 3, 3, 3, 3 - - - True - - - 135, 12 - - - TabPage3 - - - 197, 32 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - HotkeyCode - - - TabPage2 - - - 247, 285 - - - 28 - - - GroupBox1 - - - 30 - - - False - - - 2 - - - 6 - - - GroupBox1 - - - GroupBox2 - - - 6, 33 - - - 306, 393 - - - 自発言の既読化 - - - 182, 16 - - - 既読にする - - - 29, 334 - - - TabControl1 - - - NoControl - - - 197, 200 - - - 1 - - - 1 - - - True - - - GroupBox1 - - - 10 - - - 306, 318 - - - 2 - - - NoControl - - - 48*48(2Column) - - - 100, 19 - - - 44, 12 - - - GroupBox2 - - - 121, 20 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 67, 16 - - - チェックする - - - 233, 140 - - - This is sample. - - - TabPage1 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label59 - - - 14 - - - 134, 12 - - - 7 - - - 37 - - - Label76 - - - GroupBox1 - - - 9, 323 - - - 74, 16 - - - 8, 39 - - - GroupBox3 - - - 公式RT - - - NoControl - - - True - - - 17, 17 - - - 40 - - - 135, 17 - - \ No newline at end of file Deleted: branches/SettingDialog/Tween/Setting.vb =================================================================== --- branches/SettingDialog/Tween/Setting.vb 2010-12-19 12:30:57 UTC (rev 1226) +++ branches/SettingDialog/Tween/Setting.vb 2010-12-19 23:26:16 UTC (rev 1227) @@ -1,2193 +0,0 @@ -?Imports System.ComponentModel -Imports System.Threading - -' Tween - Client of Twitter -' Copyright (c) 2007-2010 kiri_feather (@kiri_feather) -' (c) 2008-2010 Moz (@syo68k) -' (c) 2008-2010 takeshik (@takeshik) -' All rights reserved. -' -' This file is part of Tween. -' -' This program is free software; you can redistribute it and/or modify it -' under the terms of the GNU General Public License as published by the Free -' Software Foundation; either version 3 of the License, or (at your option) -' any later version. -' -' This program is distributed in the hope that it will be useful, but -' WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -' or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -' for more details. -' -' You should have received a copy of the GNU General Public License along -' with this program. If not, see , or write to -' the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, -' Boston, MA 02110-1301, USA. - -Public Class Setting - Private Shared _instance As New Setting - Private tw As Twitter - 'Private _MyuserID As String - 'Private _Mypassword As String - Private _MytimelinePeriod As Integer - Private _MyDMPeriod As Integer - Private _MyPubSearchPeriod As Integer - Private _MyListsPeriod As Integer - Private _MyLogDays As Integer - Private _MyLogUnit As LogUnitEnum - Private _MyReaded As Boolean - Private _MyIconSize As IconSizes - Private _MyStatusText As String - Private _MyRecommendStatusText As String - Private _MyUnreadManage As Boolean - Private _MyPlaySound As Boolean - Private _MyOneWayLove As Boolean - Private _fntUnread As Font - Private _clUnread As Color - Private _fntReaded As Font - Private _clReaded As Color - Private _clFav As Color - Private _clOWL As Color - Private _clRetweet As Color - Private _fntDetail As Font - Private _clSelf As Color - Private _clAtSelf As Color - Private _clTarget As Color - Private _clAtTarget As Color - Private _clAtFromTarget As Color - Private _clAtTo As Color - Private _clInputBackcolor As Color - Private _clInputFont As Color - Private _fntInputFont As Font - Private _clListBackcolor As Color - Private _clDetailBackcolor As Color - Private _clDetail As Color - Private _clDetailLink As Color - Private _MyNameBalloon As NameBalloonEnum - Private _MyPostCtrlEnter As Boolean - Private _MyPostShiftEnter As Boolean - Private _usePostMethod As Boolean - Private _countApi As Integer - Private _countApiReply As Integer - Private _browserpath As String - 'Private _MyCheckReply As Boolean - Private _MyUseRecommendStatus As Boolean - Private _MyDispUsername As Boolean - Private _MyDispLatestPost As DispTitleEnum - Private _MySortOrderLock As Boolean - Private _MyMinimizeToTray As Boolean - Private _MyCloseToExit As Boolean - Private _MyTinyUrlResolve As Boolean - Private _MyProxyType As HttpConnection.ProxyType - Private _MyProxyAddress As String - Private _MyProxyPort As Integer - Private _MyProxyUser As String - Private _MyProxyPassword As String - Private _MyMaxPostNum As Integer - Private _MyPeriodAdjust As Boolean - Private _MyStartupVersion As Boolean - Private _MyStartupFollowers As Boolean - Private _MyRestrictFavCheck As Boolean - Private _MyAlwaysTop As Boolean - Private _MyUrlConvertAuto As Boolean - Private _MyOutputz As Boolean - Private _MyOutputzKey As String - Private _MyOutputzUrlmode As OutputzUrlmode - Private _MyNicoms As Boolean - Private _MyUnreadStyle As Boolean - Private _MyDateTimeFormat As String - Private _MyDefaultTimeOut As Integer - 'Private _MyProtectNotInclude As Boolean - Private _MyLimitBalloon As Boolean - Private _MyPostAndGet As Boolean - Private _MyReplyPeriod As Integer - Private _MyAutoShortUrlFirst As UrlConverter - Private _MyTabIconDisp As Boolean - Private _MyReplyIconState As REPLY_ICONSTATE - Private _MyReadOwnPost As Boolean - Private _MyGetFav As Boolean - Private _MyMonoSpace As Boolean - Private _MyReadOldPosts As Boolean - Private _MyUseSsl As Boolean - Private _MyBitlyId As String - Private _MyBitlyPw As String - Private _MyShowGrid As Boolean - Private _MyUseAtIdSupplement As Boolean - Private _MyUseHashSupplement As Boolean - Private _MyLanguage As String - Private _MyIsOAuth As Boolean - Private _MyTwitterApiUrl As String - Private _MyTwitterSearchApiUrl As String - Private _MyPreviewEnable As Boolean - Private _MoreCountApi As Integer - Private _FirstCountApi As Integer - Private _MyUseAdditonalCount As Boolean - Private _SearchCountApi As Integer - Private _FavoritesCountApi As Integer - Private _MyRetweetNoConfirm As Boolean - Private _MyUserstreamStartup As Boolean - Private _MyUserstreamPeriod As Integer - - Private _ValidationError As Boolean = False - - Private Sub Save_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Save.Click - If TweenMain.IsNetworkAvailable() AndAlso _ - (ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Bitly OrElse ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Jmp) AndAlso _ - (Not String.IsNullOrEmpty(TextBitlyId.Text) OrElse Not String.IsNullOrEmpty(TextBitlyPw.Text)) Then - If Not BitlyValidation(TextBitlyId.Text, TextBitlyPw.Text) Then - MessageBox.Show(My.Resources.SettingSave_ClickText1) - _ValidationError = True - TabControl1.SelectTab(1) ' 動作タブを選択 - TextBitlyId.Focus() - Exit Sub - Else - _ValidationError = False - End If - Else - _ValidationError = False - End If - Try - _MyUserstreamPeriod = CType(Me.UserstreamPeriod.Text, Integer) - _MyUserstreamStartup = Me.StartupUserstreamCheck.Checked - _MyIsOAuth = AuthOAuthRadio.Checked - _MytimelinePeriod = CType(TimelinePeriod.Text, Integer) - _MyDMPeriod = CType(DMPeriod.Text, Integer) - _MyPubSearchPeriod = CType(PubSearchPeriod.Text, Integer) - _MyListsPeriod = CType(ListsPeriod.Text, Integer) - _MyReplyPeriod = CType(ReplyPeriod.Text, Integer) - _MyMaxPostNum = 125 - - _MyReaded = StartupReaded.Checked - Select Case IconSize.SelectedIndex - Case 0 - _MyIconSize = IconSizes.IconNone - Case 1 - _MyIconSize = IconSizes.Icon16 - Case 2 - _MyIconSize = IconSizes.Icon24 - Case 3 - _MyIconSize = IconSizes.Icon48 - Case 4 - _MyIconSize = IconSizes.Icon48_2 - End Select - _MyStatusText = StatusText.Text - _MyPlaySound = PlaySnd.Checked - _MyUnreadManage = UReadMng.Checked - _MyOneWayLove = OneWayLv.Checked - - _fntUnread = lblUnread.Font '未使用 - _clUnread = lblUnread.ForeColor - _fntReaded = lblListFont.Font 'リストフォントとして使用 - _clReaded = lblListFont.ForeColor - _clFav = lblFav.ForeColor - _clOWL = lblOWL.ForeColor - _clRetweet = lblRetweet.ForeColor - _fntDetail = lblDetail.Font - _clSelf = lblSelf.BackColor - _clAtSelf = lblAtSelf.BackColor - _clTarget = lblTarget.BackColor - _clAtTarget = lblAtTarget.BackColor - _clAtFromTarget = lblAtFromTarget.BackColor - _clAtTo = lblAtTo.BackColor - _clInputBackcolor = lblInputBackcolor.BackColor - _clInputFont = lblInputFont.ForeColor - _clListBackcolor = lblListBackcolor.BackColor - _clDetailBackcolor = lblDetailBackcolor.BackColor - _clDetail = lblDetail.ForeColor - _clDetailLink = lblDetailLink.ForeColor - _fntInputFont = lblInputFont.Font - Select Case cmbNameBalloon.SelectedIndex - Case 0 - _MyNameBalloon = NameBalloonEnum.None - Case 1 - _MyNameBalloon = NameBalloonEnum.UserID - Case 2 - _MyNameBalloon = NameBalloonEnum.NickName - End Select - '_MyPostCtrlEnter = CheckPostCtrlEnter.Checked - '_MyPostShiftEnter = CheckPostShiftEnter.Checked - If ComboBoxPostKeySelect.SelectedIndex = 2 Then - _MyPostShiftEnter = True - _MyPostCtrlEnter = False - ElseIf ComboBoxPostKeySelect.SelectedIndex = 1 Then - _MyPostCtrlEnter = True - _MyPostShiftEnter = False - Else - _MyPostCtrlEnter = False - _MyPostShiftEnter = False - End If - _usePostMethod = False - _countApi = CType(TextCountApi.Text, Integer) - _countApiReply = CType(TextCountApiReply.Text, Integer) - _browserpath = BrowserPathText.Text.Trim - '_MyCheckReply = CheckboxReply.Checked - _MyPostAndGet = CheckPostAndGet.Checked - _MyUseRecommendStatus = CheckUseRecommendStatus.Checked - _MyDispUsername = CheckDispUsername.Checked - _MyCloseToExit = CheckCloseToExit.Checked - _MyMinimizeToTray = CheckMinimizeToTray.Checked - Select Case ComboDispTitle.SelectedIndex - Case 0 'None - _MyDispLatestPost = DispTitleEnum.None - Case 1 'Ver - _MyDispLatestPost = DispTitleEnum.Ver - Case 2 'Post - _MyDispLatestPost = DispTitleEnum.Post - Case 3 'RepCount - _MyDispLatestPost = DispTitleEnum.UnreadRepCount - Case 4 'AllCount - _MyDispLatestPost = DispTitleEnum.UnreadAllCount - Case 5 'Rep+All - _MyDispLatestPost = DispTitleEnum.UnreadAllRepCount - Case 6 'Unread/All - _MyDispLatestPost = DispTitleEnum.UnreadCountAllCount - Case 7 'Count of Status/Follow/Follower - _MyDispLatestPost = DispTitleEnum.OwnStatus - End Select - _MySortOrderLock = CheckSortOrderLock.Checked - _MyTinyUrlResolve = CheckTinyURL.Checked - ShortUrl.IsResolve = _MyTinyUrlResolve - If RadioProxyNone.Checked Then - _MyProxyType = HttpConnection.ProxyType.None - ElseIf RadioProxyIE.Checked Then - _MyProxyType = HttpConnection.ProxyType.IE - Else - _MyProxyType = HttpConnection.ProxyType.Specified - End If - _MyProxyAddress = TextProxyAddress.Text.Trim() - _MyProxyPort = Integer.Parse(TextProxyPort.Text.Trim()) - _MyProxyUser = TextProxyUser.Text.Trim() - _MyProxyPassword = TextProxyPassword.Text.Trim() - _MyPeriodAdjust = CheckPeriodAdjust.Checked - _MyStartupVersion = CheckStartupVersion.Checked - _MyStartupFollowers = CheckStartupFollowers.Checked - _MyRestrictFavCheck = CheckFavRestrict.Checked - _MyAlwaysTop = CheckAlwaysTop.Checked - _MyUrlConvertAuto = CheckAutoConvertUrl.Checked - _MyOutputz = CheckOutputz.Checked - _MyOutputzKey = TextBoxOutputzKey.Text.Trim() - - Select Case ComboBoxOutputzUrlmode.SelectedIndex - Case 0 - _MyOutputzUrlmode = OutputzUrlmode.twittercom - Case 1 - _MyOutputzUrlmode = OutputzUrlmode.twittercomWithUsername - End Select - - _MyNicoms = CheckNicoms.Checked - _MyUnreadStyle = chkUnreadStyle.Checked - _MyDateTimeFormat = CmbDateTimeFormat.Text - _MyDefaultTimeOut = CType(ConnectionTimeOut.Text, Integer) - '_MyProtectNotInclude = CheckProtectNotInclude.Checked - _MyRetweetNoConfirm = CheckRetweetNoConfirm.Checked - _MyLimitBalloon = CheckBalloonLimit.Checked - _MyAutoShortUrlFirst = CType(ComboBoxAutoShortUrlFirst.SelectedIndex, UrlConverter) - _MyTabIconDisp = chkTabIconDisp.Checked - _MyReadOwnPost = chkReadOwnPost.Checked - _MyGetFav = chkGetFav.Checked - _MyMonoSpace = CheckMonospace.Checked - _MyReadOldPosts = CheckReadOldPosts.Checked - _MyUseSsl = CheckUseSsl.Checked - _MyBitlyId = TextBitlyId.Text - _MyBitlyPw = TextBitlyPw.Text - _MyShowGrid = CheckShowGrid.Checked - _MyUseAtIdSupplement = CheckAtIdSupple.Checked - _MyUseHashSupplement = CheckHashSupple.Checked - _MyPreviewEnable = CheckPreviewEnable.Checked - _MyTwitterApiUrl = TwitterAPIText.Text.Trim - _MyTwitterSearchApiUrl = TwitterSearchAPIText.Text.Trim - Select Case ReplyIconStateCombo.SelectedIndex - Case 0 - _MyReplyIconState = REPLY_ICONSTATE.None - Case 1 - _MyReplyIconState = REPLY_ICONSTATE.StaticIcon - Case 2 - _MyReplyIconState = REPLY_ICONSTATE.BlinkIcon - End Select - Select Case LanguageCombo.SelectedIndex - Case 0 - _MyLanguage = "OS" - Case 1 - _MyLanguage = "ja" - Case 2 - _MyLanguage = "en" - Case 3 - _MyLanguage = "zh-CN" - Case Else - _MyLanguage = "en" - End Select - _HotkeyEnabled = Me.HotkeyCheck.Checked - _HotkeyMod = Keys.None - If Me.HotkeyAlt.Checked Then _HotkeyMod = _HotkeyMod Or Keys.Alt - If Me.HotkeyShift.Checked Then _HotkeyMod = _HotkeyMod Or Keys.Shift - If Me.HotkeyCtrl.Checked Then _HotkeyMod = _HotkeyMod Or Keys.Control - If Me.HotkeyWin.Checked Then _HotkeyMod = _HotkeyMod Or Keys.LWin - If IsNumeric(HotkeyCode.Text) Then _HotkeyValue = CInt(HotkeyCode.Text) - _HotkeyKey = DirectCast(HotkeyText.Tag, Keys) - _BlinkNewMentions = ChkNewMentionsBlink.Checked - _MyUseAdditonalCount = UseChangeGetCount.Checked - _MoreCountApi = CType(GetMoreTextCountApi.Text, Integer) - _FirstCountApi = CType(FirstTextCountApi.Text, Integer) - _SearchCountApi = CType(SearchTextCountApi.Text, Integer) - _FavoritesCountApi = CType(FavoritesTextCountApi.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.Save_ClickText3) - Me.DialogResult = Windows.Forms.DialogResult.Cancel - Exit Sub - End Try - End Sub - - Private Sub Setting_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing - If tw IsNot Nothing AndAlso tw.Username = "" AndAlso e.CloseReason = CloseReason.None Then - If MessageBox.Show(My.Resources.Setting_FormClosing1, "Confirm", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) = Windows.Forms.DialogResult.Cancel Then - e.Cancel = True - End If - End If - If _ValidationError Then - e.Cancel = True - End If - End Sub - - Private Sub Setting_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load - tw = DirectCast(Me.Owner, TweenMain).TwitterInstance - Dim uname As String = tw.Username - Dim pw As String = tw.Password - Dim tk As String = tw.AccessToken - Dim tks As String = tw.AccessTokenSecret - If Not Me._MyIsOAuth Then - 'BASIC認証時のみ表示 - Me.AuthStateLabel.Enabled = False - Me.AuthUserLabel.Enabled = False - Me.AuthClearButton.Enabled = False - Me.AuthOAuthRadio.Checked = False - Me.AuthBasicRadio.Checked = True - Me.CheckEnableBasicAuth.Checked = True - Me.AuthBasicRadio.Enabled = True - tw.Initialize(uname, pw) - Else - Me.AuthStateLabel.Enabled = True - Me.AuthUserLabel.Enabled = True - Me.AuthClearButton.Enabled = True - Me.AuthOAuthRadio.Checked = True - Me.AuthBasicRadio.Checked = False - tw.Initialize(tk, tks, uname) - End If - - Username.Text = uname - Password.Text = pw - If tw.Username = "" Then - Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 - Me.AuthUserLabel.Text = "" - Else - Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click3 - Me.AuthUserLabel.Text = tw.Username - End If - - Me.StartupUserstreamCheck.Checked = _MyUserstreamStartup - Me.UserstreamPeriod.Text = _MyUserstreamPeriod.ToString() - TimelinePeriod.Text = _MytimelinePeriod.ToString() - ReplyPeriod.Text = _MyReplyPeriod.ToString() - DMPeriod.Text = _MyDMPeriod.ToString() - PubSearchPeriod.Text = _MyPubSearchPeriod.ToString() - ListsPeriod.Text = _MyListsPeriod.ToString() - - StartupReaded.Checked = _MyReaded - Select Case _MyIconSize - Case IconSizes.IconNone - IconSize.SelectedIndex = 0 - Case IconSizes.Icon16 - IconSize.SelectedIndex = 1 - Case IconSizes.Icon24 - IconSize.SelectedIndex = 2 - Case IconSizes.Icon48 - IconSize.SelectedIndex = 3 - Case IconSizes.Icon48_2 - IconSize.SelectedIndex = 4 - End Select - StatusText.Text = _MyStatusText - UReadMng.Checked = _MyUnreadManage - If _MyUnreadManage = False Then - StartupReaded.Enabled = False - Else - StartupReaded.Enabled = True - End If - PlaySnd.Checked = _MyPlaySound - OneWayLv.Checked = _MyOneWayLove - - lblListFont.Font = _fntReaded - lblUnread.Font = _fntUnread - lblUnread.ForeColor = _clUnread - lblListFont.ForeColor = _clReaded - lblFav.ForeColor = _clFav - lblOWL.ForeColor = _clOWL - lblRetweet.ForeColor = _clRetweet - lblDetail.Font = _fntDetail - lblSelf.BackColor = _clSelf - lblAtSelf.BackColor = _clAtSelf - lblTarget.BackColor = _clTarget - lblAtTarget.BackColor = _clAtTarget - lblAtFromTarget.BackColor = _clAtFromTarget - lblAtTo.BackColor = _clAtTo - lblInputBackcolor.BackColor = _clInputBackcolor - lblInputFont.ForeColor = _clInputFont - lblInputFont.Font = _fntInputFont - lblListBackcolor.BackColor = _clListBackcolor - lblDetailBackcolor.BackColor = _clDetailBackcolor - lblDetail.ForeColor = _clDetail - lblDetailLink.ForeColor = _clDetailLink - - Select Case _MyNameBalloon - Case NameBalloonEnum.None - cmbNameBalloon.SelectedIndex = 0 - Case NameBalloonEnum.UserID - cmbNameBalloon.SelectedIndex = 1 - Case NameBalloonEnum.NickName - cmbNameBalloon.SelectedIndex = 2 - End Select - - If _MyPostCtrlEnter Then - ComboBoxPostKeySelect.SelectedIndex = 1 - Else - If _MyPostShiftEnter Then - ComboBoxPostKeySelect.SelectedIndex = 2 - Else - ComboBoxPostKeySelect.SelectedIndex = 0 - End If - End If - - TextCountApi.Text = _countApi.ToString - TextCountApiReply.Text = _countApiReply.ToString - BrowserPathText.Text = _browserpath - 'CheckboxReply.Checked = _MyCheckReply - CheckPostAndGet.Checked = _MyPostAndGet - CheckUseRecommendStatus.Checked = _MyUseRecommendStatus - CheckDispUsername.Checked = _MyDispUsername - CheckCloseToExit.Checked = _MyCloseToExit - CheckMinimizeToTray.Checked = _MyMinimizeToTray - Select Case _MyDispLatestPost - Case DispTitleEnum.None - ComboDispTitle.SelectedIndex = 0 - Case DispTitleEnum.Ver - ComboDispTitle.SelectedIndex = 1 - Case DispTitleEnum.Post - ComboDispTitle.SelectedIndex = 2 - Case DispTitleEnum.UnreadRepCount - ComboDispTitle.SelectedIndex = 3 - Case DispTitleEnum.UnreadAllCount - ComboDispTitle.SelectedIndex = 4 - Case DispTitleEnum.UnreadAllRepCount - ComboDispTitle.SelectedIndex = 5 - Case DispTitleEnum.UnreadCountAllCount - ComboDispTitle.SelectedIndex = 6 - Case DispTitleEnum.OwnStatus - ComboDispTitle.SelectedIndex = 7 - End Select - CheckSortOrderLock.Checked = _MySortOrderLock - CheckTinyURL.Checked = _MyTinyUrlResolve - Select Case _MyProxyType - Case HttpConnection.ProxyType.None - RadioProxyNone.Checked = True - Case HttpConnection.ProxyType.IE - RadioProxyIE.Checked = True - Case Else - RadioProxySpecified.Checked = True - End Select - Dim chk As Boolean = RadioProxySpecified.Checked - LabelProxyAddress.Enabled = chk - TextProxyAddress.Enabled = chk - LabelProxyPort.Enabled = chk - TextProxyPort.Enabled = chk - LabelProxyUser.Enabled = chk - TextProxyUser.Enabled = chk - LabelProxyPassword.Enabled = chk - TextProxyPassword.Enabled = chk - - TextProxyAddress.Text = _MyProxyAddress - TextProxyPort.Text = _MyProxyPort.ToString - TextProxyUser.Text = _MyProxyUser - TextProxyPassword.Text = _MyProxyPassword - - CheckPeriodAdjust.Checked = _MyPeriodAdjust - CheckStartupVersion.Checked = _MyStartupVersion - CheckStartupFollowers.Checked = _MyStartupFollowers - CheckFavRestrict.Checked = _MyRestrictFavCheck - CheckAlwaysTop.Checked = _MyAlwaysTop - CheckAutoConvertUrl.Checked = _MyUrlConvertAuto - CheckOutputz.Checked = _MyOutputz - TextBoxOutputzKey.Text = _MyOutputzKey - - Select Case _MyOutputzUrlmode - Case OutputzUrlmode.twittercom - ComboBoxOutputzUrlmode.SelectedIndex = 0 - Case OutputzUrlmode.twittercomWithUsername - ComboBoxOutputzUrlmode.SelectedIndex = 1 - End Select - - CheckNicoms.Checked = _MyNicoms - chkUnreadStyle.Checked = _MyUnreadStyle - CmbDateTimeFormat.Text = _MyDateTimeFormat - ConnectionTimeOut.Text = _MyDefaultTimeOut.ToString - 'CheckProtectNotInclude.Checked = _MyProtectNotInclude - CheckRetweetNoConfirm.Checked = _MyRetweetNoConfirm - CheckBalloonLimit.Checked = _MyLimitBalloon - ComboBoxAutoShortUrlFirst.SelectedIndex = _MyAutoShortUrlFirst - chkTabIconDisp.Checked = _MyTabIconDisp - chkReadOwnPost.Checked = _MyReadOwnPost - chkGetFav.Checked = _MyGetFav - CheckMonospace.Checked = _MyMonoSpace - CheckReadOldPosts.Checked = _MyReadOldPosts - CheckUseSsl.Checked = _MyUseSsl - TextBitlyId.Text = _MyBitlyId - TextBitlyPw.Text = _MyBitlyPw - TextBitlyId.Modified = False - TextBitlyPw.Modified = False - CheckShowGrid.Checked = _MyShowGrid - CheckAtIdSupple.Checked = _MyUseAtIdSupplement - CheckHashSupple.Checked = _MyUseHashSupplement - CheckPreviewEnable.Checked = _MyPreviewEnable - TwitterAPIText.Text = _MyTwitterApiUrl - TwitterSearchAPIText.Text = _MyTwitterSearchApiUrl - Select Case _MyReplyIconState - Case REPLY_ICONSTATE.None - ReplyIconStateCombo.SelectedIndex = 0 - Case REPLY_ICONSTATE.StaticIcon - ReplyIconStateCombo.SelectedIndex = 1 - Case REPLY_ICONSTATE.BlinkIcon - ReplyIconStateCombo.SelectedIndex = 2 - End Select - Select Case _MyLanguage - Case "OS" - LanguageCombo.SelectedIndex = 0 - Case "ja" - LanguageCombo.SelectedIndex = 1 - Case "en" - LanguageCombo.SelectedIndex = 2 - Case "zh-CN" - LanguageCombo.SelectedIndex = 3 - Case Else - LanguageCombo.SelectedIndex = 0 - End Select - HotkeyCheck.Checked = _HotkeyEnabled - HotkeyAlt.Checked = ((_HotkeyMod And Keys.Alt) = Keys.Alt) - HotkeyCtrl.Checked = ((_HotkeyMod And Keys.Control) = Keys.Control) - HotkeyShift.Checked = ((_HotkeyMod And Keys.Shift) = Keys.Shift) - HotkeyWin.Checked = ((_HotkeyMod And Keys.LWin) = Keys.LWin) - HotkeyCode.Text = _HotkeyValue.ToString - HotkeyText.Text = _HotkeyKey.ToString - HotkeyText.Tag = _HotkeyKey - HotkeyAlt.Enabled = HotkeyEnabled - HotkeyShift.Enabled = HotkeyEnabled - HotkeyCtrl.Enabled = HotkeyEnabled - HotkeyWin.Enabled = HotkeyEnabled - HotkeyText.Enabled = HotkeyEnabled - HotkeyCode.Enabled = HotkeyEnabled - ChkNewMentionsBlink.Checked = _BlinkNewMentions - - TabControl1.SelectedIndex = 0 - ActiveControl = Username - - CheckOutputz_CheckedChanged(sender, e) - - GetMoreTextCountApi.Text = _MoreCountApi.ToString - FirstTextCountApi.Text = _FirstCountApi.ToString - SearchTextCountApi.Text = _SearchCountApi.ToString - FavoritesTextCountApi.Text = _FavoritesCountApi.ToString - UseChangeGetCount.Checked = _MyUseAdditonalCount - Label53.Enabled = UseChangeGetCount.Checked - Label66.Enabled = UseChangeGetCount.Checked - GetMoreTextCountApi.Enabled = UseChangeGetCount.Checked - FirstTextCountApi.Enabled = UseChangeGetCount.Checked - SearchTextCountApi.Enabled = UseChangeGetCount.Checked - FavoritesTextCountApi.Enabled = UseChangeGetCount.Checked - End Sub - - Private Sub UserstreamPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles UserstreamPeriod.Validating - Dim prd As Integer - Try - prd = CType(UserstreamPeriod.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.UserstreamPeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If prd < 0 OrElse prd > 60 Then - MessageBox.Show(My.Resources.UserstreamPeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End If - CalcApiUsing() - End Sub - - Private Sub TimelinePeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TimelinePeriod.Validating - Dim prd As Integer - Try - prd = CType(TimelinePeriod.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then - MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText2) - e.Cancel = True - Exit Sub - End If - CalcApiUsing() - End Sub - - Private Sub ReplyPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ReplyPeriod.Validating - Dim prd As Integer - Try - prd = CType(ReplyPeriod.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then - MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText2) - e.Cancel = True - Exit Sub - End If - CalcApiUsing() - End Sub - - Private Sub DMPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles DMPeriod.Validating - Dim prd As Integer - Try - prd = CType(DMPeriod.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.DMPeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then - MessageBox.Show(My.Resources.DMPeriod_ValidatingText2) - e.Cancel = True - Exit Sub - End If - CalcApiUsing() - End Sub - - Private Sub PubSearchPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles PubSearchPeriod.Validating - Dim prd As Integer - Try - prd = CType(PubSearchPeriod.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.PubSearchPeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If prd <> 0 AndAlso (prd < 30 OrElse prd > 6000) Then - MessageBox.Show(My.Resources.PubSearchPeriod_ValidatingText2) - e.Cancel = True - End If - End Sub - - Private Sub ListsPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ListsPeriod.Validating - Dim prd As Integer - Try - prd = CType(ListsPeriod.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.DMPeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then - MessageBox.Show(My.Resources.DMPeriod_ValidatingText2) - e.Cancel = True - Exit Sub - End If - CalcApiUsing() - End Sub - - Private Sub UReadMng_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) - If UReadMng.Checked = True Then - StartupReaded.Enabled = True - Else - StartupReaded.Enabled = False - End If - End Sub - - Private Sub btnFontAndColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDetail.Click, btnListFont.Click, btnUnread.Click, btnInputFont.Click - Dim Btn As Button = CType(sender, Button) - Dim rtn As DialogResult - - FontDialog1.AllowVerticalFonts = False - FontDialog1.AllowScriptChange = True - FontDialog1.AllowSimulations = True - FontDialog1.AllowVectorFonts = True - FontDialog1.FixedPitchOnly = False - FontDialog1.FontMustExist = True - FontDialog1.ScriptsOnly = False - FontDialog1.ShowApply = False - FontDialog1.ShowEffects = True - FontDialog1.ShowColor = True - - Select Case Btn.Name - Case "btnUnread" - FontDialog1.Color = lblUnread.ForeColor - FontDialog1.Font = lblUnread.Font - Case "btnDetail" - FontDialog1.Color = lblDetail.ForeColor - FontDialog1.Font = lblDetail.Font - Case "btnListFont" - FontDialog1.Color = lblListFont.ForeColor - FontDialog1.Font = lblListFont.Font - Case "btnInputFont" - FontDialog1.Color = lblInputFont.ForeColor - FontDialog1.Font = lblInputFont.Font - End Select - - Try - rtn = FontDialog1.ShowDialog - Catch ex As ArgumentException - MessageBox.Show(ex.Message) - Exit Sub - End Try - - If rtn = Windows.Forms.DialogResult.Cancel Then Exit Sub - - Select Case Btn.Name - Case "btnUnread" - lblUnread.ForeColor = FontDialog1.Color - lblUnread.Font = FontDialog1.Font - Case "btnDetail" - lblDetail.ForeColor = FontDialog1.Color - lblDetail.Font = FontDialog1.Font - Case "btnListFont" - lblListFont.ForeColor = FontDialog1.Color - lblListFont.Font = FontDialog1.Font - Case "btnInputFont" - lblInputFont.ForeColor = FontDialog1.Color - lblInputFont.Font = FontDialog1.Font - End Select - - End Sub - - Private Sub btnColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSelf.Click, btnAtSelf.Click, btnTarget.Click, btnAtTarget.Click, btnAtFromTarget.Click, btnFav.Click, btnOWL.Click, btnInputBackcolor.Click, btnAtTo.Click, btnListBack.Click, btnDetailBack.Click, btnDetailLink.Click, btnRetweet.Click - Dim Btn As Button = CType(sender, Button) - Dim rtn As DialogResult - - ColorDialog1.AllowFullOpen = True - ColorDialog1.AnyColor = True - ColorDialog1.FullOpen = False - ColorDialog1.SolidColorOnly = False - - Select Case Btn.Name - Case "btnSelf" - ColorDialog1.Color = lblSelf.BackColor - Case "btnAtSelf" - ColorDialog1.Color = lblAtSelf.BackColor - Case "btnTarget" - ColorDialog1.Color = lblTarget.BackColor - Case "btnAtTarget" - ColorDialog1.Color = lblAtTarget.BackColor - Case "btnAtFromTarget" - ColorDialog1.Color = lblAtFromTarget.BackColor - Case "btnFav" - ColorDialog1.Color = lblFav.ForeColor - Case "btnOWL" - ColorDialog1.Color = lblOWL.ForeColor - Case "btnRetweet" - ColorDialog1.Color = lblRetweet.ForeColor - Case "btnInputBackcolor" - ColorDialog1.Color = lblInputBackcolor.BackColor - Case "btnAtTo" - ColorDialog1.Color = lblAtTo.BackColor - Case "btnListBack" - ColorDialog1.Color = lblListBackcolor.BackColor - Case "btnDetailBack" - ColorDialog1.Color = lblDetailBackcolor.BackColor - Case "btnDetailLink" - ColorDialog1.Color = lblDetailLink.ForeColor - End Select - - rtn = ColorDialog1.ShowDialog - - If rtn = Windows.Forms.DialogResult.Cancel Then Exit Sub - - Select Case Btn.Name - Case "btnSelf" - lblSelf.BackColor = ColorDialog1.Color - Case "btnAtSelf" - lblAtSelf.BackColor = ColorDialog1.Color - Case "btnTarget" - lblTarget.BackColor = ColorDialog1.Color - Case "btnAtTarget" - lblAtTarget.BackColor = ColorDialog1.Color - Case "btnAtFromTarget" - lblAtFromTarget.BackColor = ColorDialog1.Color - Case "btnFav" - lblFav.ForeColor = ColorDialog1.Color - Case "btnOWL" - lblOWL.ForeColor = ColorDialog1.Color - Case "btnRetweet" - lblRetweet.ForeColor = ColorDialog1.Color - Case "btnInputBackcolor" - lblInputBackcolor.BackColor = ColorDialog1.Color - Case "btnAtTo" - lblAtTo.BackColor = ColorDialog1.Color - Case "btnListBack" - lblListBackcolor.BackColor = ColorDialog1.Color - Case "btnDetailBack" - lblDetailBackcolor.BackColor = ColorDialog1.Color - Case "btnDetailLink" - lblDetailLink.ForeColor = ColorDialog1.Color - End Select - End Sub - - Public Property UserstreamPeriodInt() As Integer - Get - Return _MyUserstreamPeriod - End Get - Set(ByVal value As Integer) - _MyUserstreamPeriod = value - End Set - End Property - - Public Property UserstreamStartup() As Boolean - Get - Return Me._MyUserstreamStartup - End Get - Set(ByVal value As Boolean) - Me._MyUserstreamStartup = value - End Set - End Property - - Public Property TimelinePeriodInt() As Integer - Get - Return _MytimelinePeriod - End Get - Set(ByVal value As Integer) - _MytimelinePeriod = value - End Set - End Property - - Public Property ReplyPeriodInt() As Integer - Get - Return _MyReplyPeriod - End Get - Set(ByVal value As Integer) - _MyReplyPeriod = value - End Set - End Property - - Public Property DMPeriodInt() As Integer - Get - Return _MyDMPeriod - End Get - Set(ByVal value As Integer) - _MyDMPeriod = value - End Set - End Property - - Public Property PubSearchPeriodInt() As Integer - Get - Return _MyPubSearchPeriod - End Get - Set(ByVal value As Integer) - _MyPubSearchPeriod = value - End Set - End Property - - Public Property ListsPeriodInt() As Integer - Get - Return _MyListsPeriod - End Get - Set(ByVal value As Integer) - _MyListsPeriod = value - End Set - End Property - - Public Property Readed() As Boolean - Get - Return _MyReaded - End Get - Set(ByVal value As Boolean) - _MyReaded = value - End Set - End Property - - Public Property IconSz() As IconSizes - Get - Return _MyIconSize - End Get - Set(ByVal value As IconSizes) - _MyIconSize = value - End Set - End Property - - Public Property Status() As String - Get - Return _MyStatusText - End Get - Set(ByVal value As String) - _MyStatusText = value - End Set - End Property - - Public Property UnreadManage() As Boolean - Get - Return _MyUnreadManage - End Get - Set(ByVal value As Boolean) - _MyUnreadManage = value - End Set - End Property - - Public Property PlaySound() As Boolean - Get - Return _MyPlaySound - End Get - Set(ByVal value As Boolean) - _MyPlaySound = value - End Set - End Property - - Public Property OneWayLove() As Boolean - Get - Return _MyOneWayLove - End Get - Set(ByVal value As Boolean) - _MyOneWayLove = value - End Set - End Property - - '''''未使用 - Public Property FontUnread() As Font - Get - Return _fntUnread - End Get - Set(ByVal value As Font) - _fntUnread = value - '無視 - End Set - End Property - - Public Property ColorUnread() As Color - Get - Return _clUnread - End Get - Set(ByVal value As Color) - _clUnread = value - End Set - End Property - - '''''リストフォントとして使用 - Public Property FontReaded() As Font - Get - Return _fntReaded - End Get - Set(ByVal value As Font) - _fntReaded = value - End Set - End Property - - Public Property ColorReaded() As Color - Get - Return _clReaded - End Get - Set(ByVal value As Color) - _clReaded = value - End Set - End Property - - Public Property ColorFav() As Color - Get - Return _clFav - End Get - Set(ByVal value As Color) - _clFav = value - End Set - End Property - - Public Property ColorOWL() As Color - Get - Return _clOWL - End Get - Set(ByVal value As Color) - _clOWL = value - End Set - End Property - - Public Property ColorRetweet() As Color - Get - Return _clRetweet - End Get - Set(ByVal value As Color) - _clRetweet = value - End Set - End Property - - Public Property FontDetail() As Font - Get - Return _fntDetail - End Get - Set(ByVal value As Font) - _fntDetail = value - End Set - End Property - - Public Property ColorDetail() As Color - Get - Return _clDetail - End Get - Set(ByVal value As Color) - _clDetail = value - End Set - End Property - - Public Property ColorDetailLink() As Color - Get - Return _clDetailLink - End Get - Set(ByVal value As Color) - _clDetailLink = value - End Set - End Property - - Public Property ColorSelf() As Color - Get - Return _clSelf - End Get - Set(ByVal value As Color) - _clSelf = value - End Set - End Property - - Public Property ColorAtSelf() As Color - Get - Return _clAtSelf - End Get - Set(ByVal value As Color) - _clAtSelf = value - End Set - End Property - - Public Property ColorTarget() As Color - Get - Return _clTarget - End Get - Set(ByVal value As Color) - _clTarget = value - End Set - End Property - - Public Property ColorAtTarget() As Color - Get - Return _clAtTarget - End Get - Set(ByVal value As Color) - _clAtTarget = value - End Set - End Property - - Public Property ColorAtFromTarget() As Color - Get - Return _clAtFromTarget - End Get - Set(ByVal value As Color) - _clAtFromTarget = value - End Set - End Property - - Public Property ColorAtTo() As Color - Get - Return _clAtTo - End Get - Set(ByVal value As Color) - _clAtTo = value - End Set - End Property - - Public Property ColorInputBackcolor() As Color - Get - Return _clInputBackcolor - End Get - Set(ByVal value As Color) - _clInputBackcolor = value - End Set - End Property - - Public Property ColorInputFont() As Color - Get - Return _clInputFont - End Get - Set(ByVal value As Color) - _clInputFont = value - End Set - End Property - - Public Property FontInputFont() As Font - Get - Return _fntInputFont - End Get - Set(ByVal value As Font) - _fntInputFont = value - End Set - End Property - - Public Property ColorListBackcolor() As Color - Get - Return _clListBackcolor - End Get - Set(ByVal value As Color) - _clListBackcolor = value - End Set - End Property - - Public Property ColorDetailBackcolor() As Color - Get - Return _clDetailBackcolor - End Get - Set(ByVal value As Color) - _clDetailBackcolor = value - End Set - End Property - - Public Property NameBalloon() As NameBalloonEnum - Get - Return _MyNameBalloon - End Get - Set(ByVal value As NameBalloonEnum) - _MyNameBalloon = value - End Set - End Property - - Public Property PostCtrlEnter() As Boolean - Get - Return _MyPostCtrlEnter - End Get - Set(ByVal value As Boolean) - _MyPostCtrlEnter = value - End Set - End Property - - Public Property PostShiftEnter() As Boolean - Get - Return _MyPostShiftEnter - End Get - Set(ByVal value As Boolean) - _MyPostShiftEnter = value - End Set - End Property - - Public Property CountApi() As Integer - Get - Return _countApi - End Get - Set(ByVal value As Integer) - _countApi = value - End Set - End Property - - Public Property CountApiReply() As Integer - Get - Return _countApiReply - End Get - Set(ByVal value As Integer) - _countApiReply = value - End Set - End Property - - Public Property MoreCountApi() As Integer - Get - Return _MoreCountApi - End Get - Set(ByVal value As Integer) - _MoreCountApi = value - End Set - End Property - - Public Property FirstCountApi() As Integer - Get - Return _FirstCountApi - End Get - Set(ByVal value As Integer) - _FirstCountApi = value - End Set - End Property - - Public Property SearchCountApi() As Integer - Get - Return _SearchCountApi - End Get - Set(ByVal value As Integer) - _SearchCountApi = value - End Set - End Property - - Public Property FavoritesCountApi() As Integer - Get - Return _FavoritesCountApi - End Get - Set(ByVal value As Integer) - _FavoritesCountApi = value - End Set - End Property - - Public Property PostAndGet() As Boolean - Get - Return _MyPostAndGet - End Get - Set(ByVal value As Boolean) - _MyPostAndGet = value - End Set - End Property - - Public Property UseRecommendStatus() As Boolean - Get - Return _MyUseRecommendStatus - End Get - Set(ByVal value As Boolean) - _MyUseRecommendStatus = value - End Set - End Property - - Public Property RecommendStatusText() As String - Get - Return _MyRecommendStatusText - End Get - Set(ByVal value As String) - _MyRecommendStatusText = value - End Set - End Property - - Public Property DispUsername() As Boolean - Get - Return _MyDispUsername - End Get - Set(ByVal value As Boolean) - _MyDispUsername = value - End Set - End Property - - Public Property CloseToExit() As Boolean - Get - Return _MyCloseToExit - End Get - Set(ByVal value As Boolean) - _MyCloseToExit = value - End Set - End Property - - Public Property MinimizeToTray() As Boolean - Get - Return _MyMinimizeToTray - End Get - Set(ByVal value As Boolean) - _MyMinimizeToTray = value - End Set - End Property - - Public Property DispLatestPost() As DispTitleEnum - Get - Return _MyDispLatestPost - End Get - Set(ByVal value As DispTitleEnum) - _MyDispLatestPost = value - End Set - End Property - - Public Property BrowserPath() As String - Get - Return _browserpath - End Get - Set(ByVal value As String) - _browserpath = value - End Set - End Property - - Public Property TinyUrlResolve() As Boolean - Get - Return _MyTinyUrlResolve - End Get - Set(ByVal value As Boolean) - _MyTinyUrlResolve = value - End Set - End Property - - Private Sub CheckUseRecommendStatus_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckUseRecommendStatus.CheckedChanged - If CheckUseRecommendStatus.Checked = True Then - StatusText.Enabled = False - Else - StatusText.Enabled = True - End If - End Sub - - Public Property SortOrderLock() As Boolean - Get - Return _MySortOrderLock - End Get - Set(ByVal value As Boolean) - _MySortOrderLock = value - End Set - End Property - - Public Property SelectedProxyType() As HttpConnection.ProxyType - Get - Return _MyProxyType - End Get - Set(ByVal value As HttpConnection.ProxyType) - _MyProxyType = value - End Set - End Property - - Public Property ProxyAddress() As String - Get - Return _MyProxyAddress - End Get - Set(ByVal value As String) - _MyProxyAddress = value - End Set - End Property - - Public Property ProxyPort() As Integer - Get - Return _MyProxyPort - End Get - Set(ByVal value As Integer) - _MyProxyPort = value - End Set - End Property - - Public Property ProxyUser() As String - Get - Return _MyProxyUser - End Get - Set(ByVal value As String) - _MyProxyUser = value - End Set - End Property - - Public Property ProxyPassword() As String - Get - Return _MyProxyPassword - End Get - Set(ByVal value As String) - _MyProxyPassword = value - End Set - End Property - - Public Property PeriodAdjust() As Boolean - Get - Return _MyPeriodAdjust - End Get - Set(ByVal value As Boolean) - _MyPeriodAdjust = value - End Set - End Property - - Public Property StartupVersion() As Boolean - Get - Return _MyStartupVersion - End Get - Set(ByVal value As Boolean) - _MyStartupVersion = value - End Set - End Property - - Public Property StartupFollowers() As Boolean - Get - Return _MyStartupFollowers - End Get - Set(ByVal value As Boolean) - _MyStartupFollowers = value - End Set - End Property - - Public Property RestrictFavCheck() As Boolean - Get - Return _MyRestrictFavCheck - End Get - Set(ByVal value As Boolean) - _MyRestrictFavCheck = value - End Set - End Property - - Public Property AlwaysTop() As Boolean - Get - Return _MyAlwaysTop - End Get - Set(ByVal value As Boolean) - _MyAlwaysTop = value - End Set - End Property - - Public Property UrlConvertAuto() As Boolean - Get - Return _MyUrlConvertAuto - End Get - Set(ByVal value As Boolean) - _MyUrlConvertAuto = value - End Set - End Property - Public Property OutputzEnabled() As Boolean - Get - Return _MyOutputz - End Get - Set(ByVal value As Boolean) - _MyOutputz = value - End Set - End Property - Public Property OutputzKey() As String - Get - Return _MyOutputzKey - End Get - Set(ByVal value As String) - _MyOutputzKey = value - End Set - End Property - Public Property OutputzUrlmode() As OutputzUrlmode - Get - Return _MyOutputzUrlmode - End Get - Set(ByVal value As OutputzUrlmode) - _MyOutputzUrlmode = value - End Set - End Property - - Public Property Nicoms() As Boolean - Get - Return _MyNicoms - End Get - Set(ByVal value As Boolean) - _MyNicoms = value - End Set - End Property - Public Property AutoShortUrlFirst() As UrlConverter - Get - Return _MyAutoShortUrlFirst - End Get - Set(ByVal value As UrlConverter) - _MyAutoShortUrlFirst = value - End Set - End Property - - Public Property UseUnreadStyle() As Boolean - Get - Return _MyUnreadStyle - End Get - Set(ByVal value As Boolean) - _MyUnreadStyle = value - End Set - End Property - - Public Property DateTimeFormat() As String - Get - Return _MyDateTimeFormat - End Get - Set(ByVal value As String) - _MyDateTimeFormat = value - End Set - End Property - - Public Property DefaultTimeOut() As Integer - Get - Return _MyDefaultTimeOut - End Get - Set(ByVal value As Integer) - _MyDefaultTimeOut = value - End Set - End Property - - 'Public Property ProtectNotInclude() As Boolean - ' Get - ' Return _MyProtectNotInclude - ' End Get - ' Set(ByVal value As Boolean) - ' _MyProtectNotInclude = value - ' End Set - 'End Property - - Public Property RetweetNoConfirm() As Boolean - Get - Return _MyRetweetNoConfirm - End Get - Set(ByVal value As Boolean) - _MyRetweetNoConfirm = value - End Set - End Property - - Public Property TabIconDisp() As Boolean - Get - Return _MyTabIconDisp - End Get - Set(ByVal value As Boolean) - _MyTabIconDisp = value - End Set - End Property - - Public Property ReplyIconState() As REPLY_ICONSTATE - Get - Return _MyReplyIconState - End Get - Set(ByVal value As REPLY_ICONSTATE) - _MyReplyIconState = value - End Set - End Property - - Public Property ReadOwnPost() As Boolean - Get - Return _MyReadOwnPost - End Get - Set(ByVal value As Boolean) - _MyReadOwnPost = value - End Set - End Property - - Public Property GetFav() As Boolean - Get - Return _MyGetFav - End Get - Set(ByVal value As Boolean) - _MyGetFav = value - End Set - End Property - - Public Property IsMonospace() As Boolean - Get - Return _MyMonoSpace - End Get - Set(ByVal value As Boolean) - _MyMonoSpace = value - End Set - End Property - - Public Property ReadOldPosts() As Boolean - Get - Return _MyReadOldPosts - End Get - Set(ByVal value As Boolean) - _MyReadOldPosts = value - End Set - End Property - - Public Property UseSsl() As Boolean - Get - Return _MyUseSsl - End Get - Set(ByVal value As Boolean) - _MyUseSsl = value - End Set - End Property - - Public Property BitlyUser() As String - Get - Return _MyBitlyId - End Get - Set(ByVal value As String) - _MyBitlyId = value - End Set - End Property - - Public Property BitlyPwd() As String - Get - Return _MyBitlyPw - End Get - Set(ByVal value As String) - _MyBitlyPw = value - End Set - End Property - - Public Property ShowGrid() As Boolean - Get - Return _MyShowGrid - End Get - Set(ByVal value As Boolean) - _MyShowGrid = value - End Set - End Property - - Public Property UseAtIdSupplement() As Boolean - Get - Return _MyUseAtIdSupplement - End Get - Set(ByVal value As Boolean) - _MyUseAtIdSupplement = value - End Set - End Property - - Public Property UseHashSupplement() As Boolean - Get - Return _MyUseHashSupplement - End Get - Set(ByVal value As Boolean) - _MyUseHashSupplement = value - End Set - End Property - - Public Property PreviewEnable() As Boolean - Get - Return _MyPreviewEnable - End Get - Set(ByVal value As Boolean) - _MyPreviewEnable = value - End Set - End Property - - Public Property UseAdditionalCount() As Boolean - Get - Return _MyUseAdditonalCount - End Get - Set(ByVal value As Boolean) - _MyUseAdditonalCount = value - End Set - End Property - - Public Property TwitterApiUrl() As String - Get - Return _MyTwitterApiUrl - End Get - Set(ByVal value As String) - _MyTwitterApiUrl = value - End Set - End Property - - Public Property TwitterSearchApiUrl() As String - Get - Return _MyTwitterSearchApiUrl - End Get - Set(ByVal value As String) - _MyTwitterSearchApiUrl = value - End Set - End Property - - Public Property Language() As String - Get - Return _MyLanguage - End Get - Set(ByVal value As String) - _MyLanguage = value - End Set - End Property - - Public Property IsOAuth() As Boolean - Get - Return _MyIsOAuth - End Get - Set(ByVal value As Boolean) - _MyIsOAuth = value - End Set - End Property - - Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click - Dim filedlg As New OpenFileDialog() - - filedlg.Filter = My.Resources.Button3_ClickText1 - filedlg.FilterIndex = 1 - filedlg.Title = My.Resources.Button3_ClickText2 - filedlg.RestoreDirectory = True - - If filedlg.ShowDialog() = Windows.Forms.DialogResult.OK Then - BrowserPathText.Text = filedlg.FileName - End If - End Sub - - Private Sub RadioProxySpecified_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioProxySpecified.CheckedChanged - Dim chk As Boolean = RadioProxySpecified.Checked - LabelProxyAddress.Enabled = chk - TextProxyAddress.Enabled = chk - LabelProxyPort.Enabled = chk - TextProxyPort.Enabled = chk - LabelProxyUser.Enabled = chk - TextProxyUser.Enabled = chk - LabelProxyPassword.Enabled = chk - TextProxyPassword.Enabled = chk - End Sub - - Private Sub TextProxyPort_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextProxyPort.Validating - Dim port As Integer - If TextProxyPort.Text.Trim() = "" Then TextProxyPort.Text = "0" - If Integer.TryParse(TextProxyPort.Text.Trim(), port) = False Then - MessageBox.Show(My.Resources.TextProxyPort_ValidatingText1) - e.Cancel = True - Exit Sub - End If - If port < 0 Or port > 65535 Then - MessageBox.Show(My.Resources.TextProxyPort_ValidatingText2) - e.Cancel = True - Exit Sub - End If - End Sub - - Private Sub CheckOutputz_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckOutputz.CheckedChanged - If CheckOutputz.Checked = True Then - Label59.Enabled = True - Label60.Enabled = True - TextBoxOutputzKey.Enabled = True - ComboBoxOutputzUrlmode.Enabled = True - Else - Label59.Enabled = False - Label60.Enabled = False - TextBoxOutputzKey.Enabled = False - ComboBoxOutputzUrlmode.Enabled = False - End If - End Sub - - Private Sub TextBoxOutputzKey_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextBoxOutputzKey.Validating - If CheckOutputz.Checked Then - TextBoxOutputzKey.Text = Trim(TextBoxOutputzKey.Text) - If TextBoxOutputzKey.Text.Length = 0 Then - MessageBox.Show(My.Resources.TextBoxOutputzKey_Validating) - e.Cancel = True - Exit Sub - End If - End If - End Sub - - Private Function CreateDateTimeFormatSample() As Boolean - Try - LabelDateTimeFormatApplied.Text = DateTime.Now.ToString(CmbDateTimeFormat.Text) - Catch ex As FormatException - LabelDateTimeFormatApplied.Text = My.Resources.CreateDateTimeFormatSampleText1 - Return False - End Try - Return True - End Function - - Private Sub CmbDateTimeFormat_TextUpdate(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbDateTimeFormat.TextUpdate - CreateDateTimeFormatSample() - End Sub - - Private Sub CmbDateTimeFormat_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbDateTimeFormat.SelectedIndexChanged - CreateDateTimeFormatSample() - End Sub - - Private Sub CmbDateTimeFormat_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles CmbDateTimeFormat.Validating - If Not CreateDateTimeFormatSample() Then - MessageBox.Show(My.Resources.CmbDateTimeFormat_Validating) - e.Cancel = True - End If - End Sub - - Private Sub ConnectionTimeOut_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ConnectionTimeOut.Validating - Dim tm As Integer - Try - tm = CInt(ConnectionTimeOut.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.ConnectionTimeOut_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If tm < HttpTimeOut.MinValue OrElse tm > HttpTimeOut.MaxValue Then - MessageBox.Show(My.Resources.ConnectionTimeOut_ValidatingText1) - e.Cancel = True - End If - End Sub - - Private Sub LabelDateTimeFormatApplied_VisibleChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles LabelDateTimeFormatApplied.VisibleChanged - CreateDateTimeFormatSample() - End Sub - - Private Sub TextCountApi_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextCountApi.Validating - Dim cnt As Integer - Try - cnt = Integer.Parse(TextCountApi.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End Try - - If cnt < 20 OrElse cnt > 200 Then - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End If - End Sub - - Private Sub TextCountApiReply_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextCountApiReply.Validating - Dim cnt As Integer - Try - cnt = Integer.Parse(TextCountApiReply.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End Try - - If cnt < 20 OrElse cnt > 200 Then - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End If - End Sub - - Public Property LimitBalloon() As Boolean - Get - Return _MyLimitBalloon - End Get - Set(ByVal value As Boolean) - _MyLimitBalloon = value - End Set - End Property - - Private Sub ComboBoxAutoShortUrlFirst_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBoxAutoShortUrlFirst.SelectedIndexChanged - If ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Bitly OrElse _ - ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Jmp Then - TextBitlyId.Enabled = True - TextBitlyPw.Enabled = True - Else - TextBitlyId.Enabled = False - TextBitlyPw.Enabled = False - End If - End Sub - - Private Sub ButtonBackToDefaultFontColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonBackToDefaultFontColor.Click - lblUnread.ForeColor = System.Drawing.SystemColors.ControlText - lblUnread.Font = New Font(SystemFonts.DefaultFont, FontStyle.Bold Or FontStyle.Underline) - - lblListFont.ForeColor = System.Drawing.SystemColors.ControlText - lblListFont.Font = System.Drawing.SystemFonts.DefaultFont - - lblDetail.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.ControlText) - lblDetail.Font = System.Drawing.SystemFonts.DefaultFont - - lblInputFont.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.ControlText) - lblInputFont.Font = System.Drawing.SystemFonts.DefaultFont - - lblSelf.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.AliceBlue) - - lblAtSelf.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.AntiqueWhite) - - lblTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LemonChiffon) - - lblAtTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LavenderBlush) - - lblAtFromTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Honeydew) - - lblFav.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Red) - - lblOWL.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Blue) - - lblInputBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LemonChiffon) - - lblAtTo.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Pink) - - lblListBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Window) - - lblDetailBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Window) - - lblDetailLink.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Blue) - - lblRetweet.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Green) - End Sub - - Private Sub AuthorizeButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthorizeButton.Click - Dim user As String = Me.Username.Text.Trim - Dim pwd As String = Me.Password.Text.Trim - If String.IsNullOrEmpty(user) OrElse String.IsNullOrEmpty(pwd) Then - MessageBox.Show(My.Resources.Save_ClickText1) - Exit Sub - End If - - '現在の設定内容で通信 - Dim ptype As HttpConnection.ProxyType - If RadioProxyNone.Checked Then - ptype = HttpConnection.ProxyType.None - ElseIf RadioProxyIE.Checked Then - ptype = HttpConnection.ProxyType.IE - Else - ptype = HttpConnection.ProxyType.Specified - End If - Dim padr As String = TextProxyAddress.Text.Trim() - Dim pport As Integer = Integer.Parse(TextProxyPort.Text.Trim()) - Dim pusr As String = TextProxyUser.Text.Trim() - Dim ppw As String = TextProxyPassword.Text.Trim() - - '通信基底クラス初期化 - HttpConnection.InitializeConnection(20, ptype, padr, pport, pusr, ppw) - HttpTwitter.TwitterUrl = TwitterAPIText.Text.Trim - HttpTwitter.TwitterSearchUrl = TwitterSearchAPIText.Text.Trim - If Me.AuthBasicRadio.Checked Then - tw.Initialize("", "") - Else - tw.Initialize("", "", "") - End If - Dim rslt As String = tw.Authenticate(user, pwd) - If String.IsNullOrEmpty(rslt) Then - MessageBox.Show(My.Resources.AuthorizeButton_Click1, "Authenticate", MessageBoxButtons.OK) - Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click3 - Me.AuthUserLabel.Text = tw.Username - Else - MessageBox.Show(My.Resources.AuthorizeButton_Click2 + Environment.NewLine + rslt, "Authenticate", MessageBoxButtons.OK) - Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 - Me.AuthUserLabel.Text = "" - End If - CalcApiUsing() - End Sub - - Private Sub AuthClearButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthClearButton.Click - tw.ClearAuthInfo() - Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 - Me.AuthUserLabel.Text = "" - CalcApiUsing() - End Sub - - Private Sub AuthOAuthRadio_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthOAuthRadio.CheckedChanged - If tw Is Nothing Then Exit Sub - If AuthBasicRadio.Checked Then - 'BASIC認証時のみ表示 - tw.Initialize("", "") - Me.AuthStateLabel.Enabled = False - Me.AuthUserLabel.Enabled = False - Me.AuthClearButton.Enabled = False - Else - tw.Initialize("", "", "") - Me.AuthStateLabel.Enabled = True - Me.AuthUserLabel.Enabled = True - Me.AuthClearButton.Enabled = True - End If - Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 - Me.AuthUserLabel.Text = "" - CalcApiUsing() - End Sub - - Private Sub DisplayApiMaxCount() - If TwitterApiInfo.MaxCount > -1 Then - LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, TwitterApiInfo.UsingCount, TwitterApiInfo.MaxCount) - Else - LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, TwitterApiInfo.UsingCount, "???") - End If - End Sub - - Private Sub CalcApiUsing() - Dim UsingApi As Integer = 0 - Dim tmp As Integer - Dim ListsTabNum As Integer = 0 - - Try - ' 初回起動時などにNothingの場合あり - ListsTabNum = TabInformations.GetInstance.GetTabsByType(TabUsageType.Lists).Count - Catch ex As Exception - Exit Sub - End Try - - ' Recent計算 0は手動更新 - If Integer.TryParse(TimelinePeriod.Text, tmp) Then - If tmp <> 0 Then - UsingApi += 3600 \ tmp - End If - End If - - ' Reply計算 0は手動更新 - If Integer.TryParse(ReplyPeriod.Text, tmp) Then - If tmp <> 0 Then - UsingApi += 3600 \ tmp - End If - End If - - ' DM計算 0は手動更新 送受信両方 - If Integer.TryParse(DMPeriod.Text, tmp) Then - If tmp <> 0 Then - UsingApi += (3600 \ tmp) * 2 - End If - End If - - ' Listsタブ計算 0は手動更新 - If Integer.TryParse(ListsPeriod.Text, tmp) Then - If tmp <> 0 Then - UsingApi += (3600 \ tmp) * ListsTabNum - End If - End If - - If tw IsNot Nothing Then - If TwitterApiInfo.MaxCount = -1 Then - If Twitter.AccountState = ACCOUNT_STATE.Valid Then - TwitterApiInfo.UsingCount = UsingApi - Dim proc As New Thread(New Threading.ThreadStart(Sub() - tw.GetInfoApi(Nothing) '取得エラー時はinfoCountは初期状態(値:-1) - If Me.IsHandleCreated Then Invoke(New MethodInvoker(AddressOf DisplayApiMaxCount)) - End Sub)) - proc.Start() - Else - LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, UsingApi, "???") - End If - Else - LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, UsingApi, TwitterApiInfo.MaxCount) - End If - End If - - - LabelPostAndGet.Visible = CheckPostAndGet.Checked - - End Sub - - Private Sub CheckPostAndGet_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckPostAndGet.CheckedChanged - CalcApiUsing() - End Sub - - Private Sub Setting_Shown(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Shown - Do - Thread.Sleep(10) - If Me.Disposing OrElse Me.IsDisposed Then Exit Sub - Loop Until Me.IsHandleCreated - CalcApiUsing() - End Sub - - Private Sub ButtonApiCalc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonApiCalc.Click - CalcApiUsing() - End Sub - - Private Sub New() - - ' この呼び出しはデザイナーで必要です。 - InitializeComponent() - - ' InitializeComponent() 呼び出しの後で初期化を追加します。 - - End Sub - - Public Shared ReadOnly Property Instance As Setting - Get - Return _instance - End Get - End Property - - Private Function BitlyValidation(ByVal id As String, ByVal apikey As String) As Boolean - If String.IsNullOrEmpty(id) OrElse String.IsNullOrEmpty(apikey) Then - Return False - End If - - Dim req As String = "http://api.bit.ly/v3/validate" - Dim content As String = "" - Dim param As New Dictionary(Of String, String) - - param.Add("login", "tweenapi") - param.Add("apiKey", "R_c5ee0e30bdfff88723c4457cc331886b") - param.Add("x_login", id) - param.Add("x_apiKey", apikey) - param.Add("format", "txt") - - If Not (New HttpVarious).PostData(req, param, content) Then - Return True ' 通信エラーの場合はとりあえずチェックを通ったことにする - ElseIf content.Trim() = "1" Then - Return True ' 検証成功 - ElseIf content.Trim() = "0" Then - Return False ' 検証失敗 APIキーとIDの組み合わせが違う - Else - Return True ' 規定外応答:通信エラーの可能性があるためとりあえずチェックを通ったことにする - End If - End Function - - Private Sub Cancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cancel.Click - _ValidationError = False - End Sub - - Public Property HotkeyEnabled As Boolean - Public Property HotkeyKey As Keys - Public Property HotkeyValue As Integer - Public Property HotkeyMod As Keys - - Private Sub HotkeyText_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles HotkeyText.KeyDown - 'KeyValueで判定する。 - '表示文字とのテーブルを用意すること - HotkeyText.Text = e.KeyCode.ToString - HotkeyCode.Text = e.KeyValue.ToString - HotkeyText.Tag = e.KeyCode - e.Handled = True - e.SuppressKeyPress = True - End Sub - - Private Sub HotkeyCheck_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles HotkeyCheck.CheckedChanged - HotkeyCtrl.Enabled = HotkeyCheck.Checked - HotkeyAlt.Enabled = HotkeyCheck.Checked - HotkeyShift.Enabled = HotkeyCheck.Checked - HotkeyWin.Enabled = HotkeyCheck.Checked - HotkeyText.Enabled = HotkeyCheck.Checked - HotkeyCode.Enabled = HotkeyCheck.Checked - End Sub - - Public Property BlinkNewMentions As Boolean - - Private Sub GetMoreTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles GetMoreTextCountApi.Validating - Dim cnt As Integer - Try - cnt = Integer.Parse(GetMoreTextCountApi.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End Try - - If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End If - End Sub - - Private Sub UseChangeGetCount_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles UseChangeGetCount.CheckedChanged - GetMoreTextCountApi.Enabled = UseChangeGetCount.Checked - FirstTextCountApi.Enabled = UseChangeGetCount.Checked - Label53.Enabled = UseChangeGetCount.Checked - Label66.Enabled = UseChangeGetCount.Checked - SearchTextCountApi.Enabled = UseChangeGetCount.Checked - FavoritesTextCountApi.Enabled = UseChangeGetCount.Checked - End Sub - - Private Sub FirstTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles FirstTextCountApi.Validating - Dim cnt As Integer - Try - cnt = Integer.Parse(FirstTextCountApi.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End Try - - If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End If - End Sub - - Private Sub CheckEnableBasicAuth_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckEnableBasicAuth.CheckedChanged - AuthBasicRadio.Enabled = CheckEnableBasicAuth.Checked - End Sub - - Private Sub SearchTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles SearchTextCountApi.Validating - Dim cnt As Integer - Try - cnt = Integer.Parse(SearchTextCountApi.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.TextsearchCountApi_Validating1) - e.Cancel = True - Exit Sub - End Try - - If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 100) Then - MessageBox.Show(My.Resources.TextSearchCountApi_Validating1) - e.Cancel = True - Exit Sub - End If - End Sub - - Private Sub FavoritesTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles FavoritesTextCountApi.Validating - Dim cnt As Integer - Try - cnt = Integer.Parse(FavoritesTextCountApi.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End Try - - If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End If - End Sub -End Class - Deleted: branches/SettingDialog/Tween/Setting.zh-CHS.resx =================================================================== --- branches/SettingDialog/Tween/Setting.zh-CHS.resx 2010-12-19 12:30:57 UTC (rev 1226) +++ branches/SettingDialog/Tween/Setting.zh-CHS.resx 2010-12-19 23:26:16 UTC (rev 1227) @@ -1,919 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - 41, 12 - - - 用?名 - - - 29, 12 - - - 密? - - - 确定 - - - 取消 - - - 101, 12 - - - 消息更新?隔(秒) - - - 私信更新?隔(秒) - - - 101, 12 - - - 启???取的消息 - - - 72, 16 - - - 置?已? - - - 173, 12 - - - 列表中的?像??大小(默?16) - - - 101, 12 - - - 消息文末自?附加 - - - 48, 16 - - - 播放 - - - 41, 12 - - - 提示音 - - - 307, 13 - - - ???置的提示音,只要启用“播放”??就能被播放。 - - - 启用 - - - 113, 12 - - - 用?色区分?向?注 - - - 字体和?色?置 - - - 文本色 - - - 53, 12 - - - ?推消息 - - - 恢?默?? - - - 文本色 - - - 65, 12 - - - 消息??接 - - - 75, 22 - - - 字体&&?色 - - - 65, 12 - - - ?入框字体 - - - 125, 12 - - - ?入框激活?的背景色 - - - 75, 22 - - - 字体&&?色 - - - 53, 12 - - - 未?字体 - - - ?中消息所@的消息 - - - 77, 12 - - - 消息?背景色 - - - 普通消息 - - - 先中消息所@人的其它消息 - - - @??中人的消息 - - - 101, 12 - - - ?中人的其它消息 - - - @?自己的消息 - - - 自己的消息 - - - 75, 22 - - - 字体&&?色 - - - 65, 12 - - - 消息?文本 - - - 文本色 - - - 77, 12 - - - ?向?注消息 - - - 文本色 - - - 53, 12 - - - 收藏消息 - - - 75, 22 - - - 字体&&?色 - - - 53, 12 - - - 列表字体 - - - - - - 用?ID - - - 昵称 - - - 137, 12 - - - 新消息气球提示的用?名 - - - 132, 16 - - - 推荐使用[TWNv○○] - - - 125, 12 - - - 列表中的日期??格式 - - - 48, 16 - - - ?示 - - - 101, 12 - - - 消息?的?像?? - - - 108, 16 - - - 使用Ctrl+Enter - - - 143, 12 - - - ?送快捷?(默?是Enter) - - - 未?管理 - - - 启用 - - - 149, 12 - - - 有更新的消息?清除旧未? - - - 启用 - - - 101, 12 - - - 点?窗口上的×? - - - 退出程序 - - - 77, 12 - - - 窗口最小化? - - - ?小?托??? - - - 65, 12 - - - ??器路径 - - - 84, 16 - - - ?示用?名 - - - 101, 12 - - - ???和浮?提示 - - - 41, 12 - - - ??? - - - (无) - - - 版本号 - - - 最后一条消息 - - - @的未?数 - - - 未?数 - - - 未?数(@的未?数) - - - ?未?数/?消息数 - - - 消息数/好友数/?注数 - - - 101, 12 - - - 重启之后才生效。 - - - ?? - - - 77, 12 - - - ?助?入#Tag - - - 48, 16 - - - 启用 - - - ?助?入@ID - - - 48, 16 - - - 启用 - - - 119, 12 - - - URL自??短?先使用 - - - 138, 16 - - - 不包含Protect者消息 - - - 101, 12 - - - ?制?推的文本? - - - 72, 16 - - - 自??短 - - - 95, 12 - - - ?短?入框的URL - - - 323, 12 - - - 会重新?取原消息来??Fav?果。会?加流量,推荐??。 - - - 125, 12 - - - 是否?格??收藏?果 - - - 48, 16 - - - ?? - - - 48, 16 - - - 展? - - - 95, 12 - - - ?理?短网址URL - - - ?? - - - 行? - - - 77, 12 - - - ?示?片?? - - - 48, 16 - - - 启用 - - - 65, 12 - - - 重启后生效 - - - 48, 16 - - - 启用 - - - 65, 12 - - - ?在最前面 - - - 77, 12 - - - ?列排序方式 - - - 48, 16 - - - 固定 - - - 消息?列表格? - - - 48, 16 - - - ?示 - - - 173, 12 - - - 消息?文本字体等?化(支持AA) - - - 132, 16 - - - 启用(可能会有??) - - - 113, 12 - - - 自己的消息自?已? - - - 48, 16 - - - 启用 - - - 无通知 - - - 只有?色?化 - - - ?色?化&?? - - - 137, 12 - - - 有未?回??的通知?? - - - 113, 12 - - - 有新回??画面?? - - - 113, 12 - - - ??上?示未??? - - - 48, 16 - - - ?? - - - 48, 16 - - - 启用 - - - 77, 12 - - - 气球提示只在 - - - 72, 16 - - - 最小化? - - - 161, 12 - - - 未?文本?式(字体和?色上) - - - 48, 16 - - - 启用 - - - ?示 - - - 字体与?色 - - - 附加 - - - 重新?算 - - - 251, 12 - - - 成功刷新消息、?送消息?都会消耗API配?。 - - - 101, 12 - - - 列表更新?隔(秒) - - - 登?方法 - - - 清除 - - - 已登? - - - 登?状? - - - 登? - - - 101, 12 - - - 搜索更新?隔(秒) - - - 101, 12 - - - 回?更新?隔(秒) - - - ?推?更新 - - - 143, 12 - - - 默??取推数/回??取数 - - - 161, 12 - - - 启???取?向?注用?列表 - - - 48, 16 - - - ?取 - - - 89, 12 - - - 启??版本更新 - - - 48, 16 - - - ?? - - - 72, 16 - - - 自??整 - - - 89, 12 - - - 启???取收藏 - - - 48, 16 - - - ?取 - - - 生效 - - - 143, 21 - - - 215, 12 - - - Search API URL (search.twitter.com) - - - 143, 21 - - - 102, 16 - - - 使用HTTPS通信 - - - 317, 12 - - - ※刷新?繁出?超?的???整?更大的?。默?是20秒。 - - - 77, 12 - - - 超???(秒) - - - 代理?置 - - - 281, 12 - - - ※代理不需要登????,?将用?名密??留空。 - - - 47, 12 - - - 密?(&W) - - - 59, 12 - - - 用?名(&U) - - - 47, 12 - - - 端口(&P) - - - 47, 12 - - - 地址(&X) - - - 59, 16 - - - 自定? - - - 179, 16 - - - 使用InternetExplorer的?置 - - - 59, 16 - - - 不使用 - - - 216, 16 - - - 使用nico.ms?短Niconico?画的URL - - - 59, 12 - - - ?出到URL - - - 53, 12 - - - ?活咒? - - - 90, 16 - - - ??Outputz - - - ?置 - - - BASIC認証への変更を許可する - - - 前データの更新/初回の更新 - - - 次の項目の更新時の取得数を個別に設定する - - - Favorites/PublicSearchの取得数 - - - Shift+Enterにする - - \ No newline at end of file Modified: branches/SettingDialog/Tween/Tween.vbproj =================================================================== --- branches/SettingDialog/Tween/Tween.vbproj 2010-12-19 12:30:57 UTC (rev 1226) +++ branches/SettingDialog/Tween/Tween.vbproj 2010-12-19 23:26:16 UTC (rev 1227) @@ -228,12 +228,6 @@ Form - - Setting.vb - - - Form - @@ -417,14 +411,6 @@ SearchWord.vb Designer - - Setting.vb - Designer - - - Designer - Setting.vb - FilterDialog.vb Designer @@ -433,10 +419,6 @@ FilterDialog.vb Designer - - Setting.vb - Designer - Designer ShowUserInfo.vb From svnnotify @ sourceforge.jp Mon Dec 20 14:59:40 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 20 Dec 2010 14:59:40 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMjhdICDmnKroqq3nrqHnkIbjgpLlhajjgr8=?= =?utf-8?b?44OW5YWx6YCa44G444CC44OR44OV44Kp44O844Oe44Oz44K544KS6KaL44Gm?= =?utf-8?b?44GT44Gu44G+44G+6KGM44GP44GL5rG644KB44KL44GT44Go?= Message-ID: <1292824780.382481.17618.nullmailer@users.sourceforge.jp> Revision: 1228 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1228 Author: kiri_feather Date: 2010-12-20 14:59:40 +0900 (Mon, 20 Dec 2010) Log Message: ----------- 未読管理を全タブ共通へ。パフォーマンスを見てこのまま行くか決めること USで不正データが帰ってくることがあるらしいのでエラートラップとTrace追加 Modified Paths: -------------- trunk/Tween/StatusDictionary.vb trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/StatusDictionary.vb =================================================================== --- trunk/Tween/StatusDictionary.vb 2010-12-19 23:26:16 UTC (rev 1227) +++ trunk/Tween/StatusDictionary.vb 2010-12-20 05:59:40 UTC (rev 1228) @@ -996,6 +996,61 @@ ) End Sub + Public Sub SetReadAllTab(ByVal Read As Boolean, ByVal TabName As String, ByVal Index As Integer) + 'Read:True=既読へ False=未読へ + Dim tb As TabClass = _tabs(TabName) + + If tb.UnreadManage = False Then Exit Sub '未読管理していなければ終了 + + Dim Id As Long = tb.GetId(Index) + If Id < 0 Then Exit Sub + Dim post As PostClass + If Not tb.IsInnerStorageTabType Then + post = _statuses(Id) + Else + post = tb.Posts(Id) + End If + + If post.IsRead = Read Then Exit Sub '状態変更なければ終了 + + post.IsRead = Read '指定の状態に変更 + + SyncLock LockUnread + If tb.IsInnerStorageTabType Then + If _statuses.ContainsKey(Id) Then _statuses(Id).IsRead = Read + Else + For Each tbInnerStorage In Me.GetTabsInnerStorageType + If tbInnerStorage.Contains(Id) Then tbInnerStorage.Posts(Id).IsRead = Read + Next + End If + If Read Then + tb.UnreadCount -= 1 + Me.SetNextUnreadId(Id, tb) '次の未読セット + '他タブの最古未読IDはタブ切り替え時に。 + For Each key As String In _tabs.Keys + If key <> TabName AndAlso _ + _tabs(key).UnreadManage AndAlso _ + _tabs(key).Contains(Id) Then + _tabs(key).UnreadCount -= 1 + If _tabs(key).OldestUnreadId = Id Then _tabs(key).OldestUnreadId = -1 + End If + Next + Else + tb.UnreadCount += 1 + If tb.OldestUnreadId > Id OrElse tb.OldestUnreadId = -1 Then tb.OldestUnreadId = Id + For Each key As String In _tabs.Keys + If Not key = TabName AndAlso _ + _tabs(key).UnreadManage AndAlso _ + _tabs(key).Contains(Id) Then + _tabs(key).UnreadCount += 1 + If _tabs(key).OldestUnreadId > Id Then _tabs(key).OldestUnreadId = Id + End If + Next + End If + End SyncLock + End Sub + + ''' TODO: パフォーマンスを勘案して、戻すか決める Public Sub SetRead(ByVal Read As Boolean, ByVal TabName As String, ByVal Index As Integer) 'Read:True=既読へ False=未読へ Dim tb As TabClass = _tabs(TabName) @@ -1358,6 +1413,18 @@ End SyncLock End Function + Public Function GetTabsInnerStorageType() As List(Of TabClass) + '合致したタブをListで返す + '合致しなければ空のListを返す + SyncLock LockObj + Dim tbs As New List(Of TabClass) + For Each tb As TabClass In _tabs.Values + If tb.IsInnerStorageTabType Then tbs.Add(tb) + Next + Return tbs + End SyncLock + End Function + Public Function GetTabByName(ByVal tabName As String) As TabClass SyncLock LockObj If _tabs.ContainsKey(tabName) Then Return _tabs(tabName) Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-19 23:26:16 UTC (rev 1227) +++ trunk/Tween/Tween.vb 2010-12-20 05:59:40 UTC (rev 1228) @@ -1488,7 +1488,7 @@ _curItemIndex = _curList.SelectedIndices(0) 'If _curPost Is GetCurTabPost(_curItemIndex) Then Exit Sub 'refreshで既読化されるのを防ぐため追加 _curPost = GetCurTabPost(_curItemIndex) - If SettingDialog.UnreadManage Then _statuses.SetRead(True, _curTab.Text, _curItemIndex) + If SettingDialog.UnreadManage Then _statuses.SetReadAllTab(True, _curTab.Text, _curItemIndex) 'MyList.RedrawItems(MyList.SelectedIndices(0), MyList.SelectedIndices(0), False) 'RetrieveVirtualItemが発生することを期待 'キャッシュの書き換え ChangeCacheStyleRead(True, _curItemIndex, _curTab) '既読へ(フォント、文字色) @@ -2825,7 +2825,7 @@ _curList.BeginUpdate() If SettingDialog.UnreadManage Then For Each idx As Integer In _curList.SelectedIndices - _statuses.SetRead(True, _curTab.Text, idx) + _statuses.SetReadAllTab(True, _curTab.Text, idx) Next End If For Each idx As Integer In _curList.SelectedIndices @@ -2847,7 +2847,7 @@ _curList.BeginUpdate() If SettingDialog.UnreadManage Then For Each idx As Integer In _curList.SelectedIndices - _statuses.SetRead(False, _curTab.Text, idx) + _statuses.SetReadAllTab(False, _curTab.Text, idx) Next End If For Each idx As Integer In _curList.SelectedIndices Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-19 23:26:16 UTC (rev 1227) +++ trunk/Tween/Twitter.vb 2010-12-20 05:59:40 UTC (rev 1228) @@ -1558,14 +1558,8 @@ For Each status As TwitterDataModel.Status In items Dim post As PostClass = Nothing + post = CreatePostsFromStatusData(status) - Try - post = CreatePostsFromStatusData(status) - Catch ex As NullReferenceException - TraceOut(ex.Message + Environment.NewLine + content) - Return "Invalid Json ?" - End Try - If minimumId > post.Id Then minimumId = post.Id '二重取得回避 SyncLock LockObj @@ -2869,11 +2863,17 @@ res.Append(line) res.Append("]") - If isDm Then - CreateDirectMessagesFromJson(res.ToString, WORKERTYPE.UserStream, False) - Else - CreatePostsFromJson(res.ToString, WORKERTYPE.Timeline, Nothing, False, Nothing, Nothing) - End If + Try + If isDm Then + CreateDirectMessagesFromJson(res.ToString, WORKERTYPE.UserStream, False) + Else + CreatePostsFromJson(res.ToString, WORKERTYPE.Timeline, Nothing, False, Nothing, Nothing) + End If + Catch ex As NullReferenceException + TraceOut("NullRef StatusArrived: " + line) + Catch ex As Exception + TraceOut(ex.Message + ": " + line) + End Try RaiseEvent NewPostFromStream() End Sub From svnnotify @ sourceforge.jp Mon Dec 20 15:51:22 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 20 Dec 2010 15:51:22 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMjldICDjgr/jg5blhbHpgJrmnKroqq3nrqE=?= =?utf-8?b?55CG44GM5q2j44GX44GP5YuV44GE44Gm44GE44Gq44GL44Gj44Gf44Gu44Gn?= =?utf-8?b?5L+u5q2j?= Message-ID: <1292827882.778321.14002.nullmailer@users.sourceforge.jp> Revision: 1229 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1229 Author: kiri_feather Date: 2010-12-20 15:51:22 +0900 (Mon, 20 Dec 2010) Log Message: ----------- タブ共通未読管理が正しく動いていなかったので修正 Modified Paths: -------------- trunk/Tween/StatusDictionary.vb -------------- next part -------------- Modified: trunk/Tween/StatusDictionary.vb =================================================================== --- trunk/Tween/StatusDictionary.vb 2010-12-20 05:59:40 UTC (rev 1228) +++ trunk/Tween/StatusDictionary.vb 2010-12-20 06:51:22 UTC (rev 1229) @@ -1018,11 +1018,12 @@ SyncLock LockUnread If tb.IsInnerStorageTabType Then If _statuses.ContainsKey(Id) Then _statuses(Id).IsRead = Read - Else - For Each tbInnerStorage In Me.GetTabsInnerStorageType - If tbInnerStorage.Contains(Id) Then tbInnerStorage.Posts(Id).IsRead = Read - Next End If + For Each tbInnerStorage In Me.GetTabsInnerStorageType + If tb.TabName <> tbInnerStorage.TabName AndAlso tbInnerStorage.Contains(Id) Then + tbInnerStorage.Posts(Id).IsRead = Read + End If + Next If Read Then tb.UnreadCount -= 1 Me.SetNextUnreadId(Id, tb) '次の未読セット From svnnotify @ sourceforge.jp Mon Dec 20 20:32:19 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 20 Dec 2010 20:32:19 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMzBdICBVc2Vyc3RyZWFt772U44GM5q2j5bi4?= =?utf-8?b?44Gr5YuV44GE44Gm44GE44Gq44GE44Go44GN44GuUkVTVOODleOCqeODvA==?= =?utf-8?b?44Or44OQ44OD44Kv44GM5YuV44GL44Gq44GE5aC05ZCI44GM44GC44Gj44Gf?= =?utf-8?b?44Gu44Gn44CB56m644OH44O844K/44KC5ZCr44KB44CBMzDnp5Llj5fkv6E=?= =?utf-8?b?44GM44Gq44GR44KM44GwUkVTVOOCguWLleOBi+OBmeOCiOOBhuOBq+WkiQ==?= =?utf-8?b?5pu0?= Message-ID: <1292844739.937132.20471.nullmailer@users.sourceforge.jp> Revision: 1230 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1230 Author: kiri_feather Date: 2010-12-20 20:32:19 +0900 (Mon, 20 Dec 2010) Log Message: ----------- Userstreamtが正常に動いていないときのRESTフォールバックが動かない場合があったので、空データも含め、30秒受信がなければRESTも動かすように変更 Modified Paths: -------------- trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-20 06:51:22 UTC (rev 1229) +++ trunk/Tween/Tween.vb 2010-12-20 11:32:19 UTC (rev 1230) @@ -1209,15 +1209,15 @@ 'Interlocked.Add(period, -_homeCounterAdjuster) 'Interlocked.Exchange(_homeCounter, period) Interlocked.Exchange(homeCounter, SettingDialog.TimelinePeriodInt) - If Not Me._isActiveUserstream Then GetTimeline(WORKERTYPE.Timeline, 1, 0, "") + If Not tw.IsUserstreamDataReceived Then GetTimeline(WORKERTYPE.Timeline, 1, 0, "") End If If mentionCounter <= 0 AndAlso SettingDialog.ReplyPeriodInt > 0 Then Interlocked.Exchange(mentionCounter, SettingDialog.ReplyPeriodInt) - If Not Me._isActiveUserstream Then GetTimeline(WORKERTYPE.Reply, 1, 0, "") + If Not tw.IsUserstreamDataReceived Then GetTimeline(WORKERTYPE.Reply, 1, 0, "") End If If dmCounter <= 0 AndAlso SettingDialog.DMPeriodInt > 0 Then Interlocked.Exchange(dmCounter, SettingDialog.DMPeriodInt) - If Not Me._isActiveUserstream Then GetTimeline(WORKERTYPE.DirectMessegeRcv, 1, 0, "") + If Not tw.IsUserstreamDataReceived Then GetTimeline(WORKERTYPE.DirectMessegeRcv, 1, 0, "") End If If pubSearchCounter <= 0 AndAlso SettingDialog.PubSearchPeriodInt > 0 Then Interlocked.Exchange(pubSearchCounter, SettingDialog.PubSearchPeriodInt) @@ -9989,11 +9989,6 @@ tw.ReconnectUserStream() End Sub - Private Sub TweenRestartMenuItem_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles TweenRestartMenuItem.Click - _endingFlag = True - Application.Restart() - End Sub - Private Sub EventViewerMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles EventViewerMenuItem.Click Using dlg As New EventViewerDialog dlg.Owner = Me @@ -10004,6 +9999,11 @@ End Sub #End Region + Private Sub TweenRestartMenuItem_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles TweenRestartMenuItem.Click + _endingFlag = True + Application.Restart() + End Sub + Private Sub OpenOwnFavedMenuItem_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles OpenOwnFavedMenuItem.Click If Not tw.Username = "" Then OpenUriAsync(My.Resources.FavstarUrl + "users/" + tw.Username + "/recent") End Sub Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-20 06:51:22 UTC (rev 1229) +++ trunk/Tween/Twitter.vb 2010-12-20 11:32:19 UTC (rev 1230) @@ -2800,6 +2800,7 @@ Public Event UserStreamGetFriendsList() Public Event PostDeleted(ByVal id As Long, ByRef post As PostClass) Public Event UserStreamEventReceived(ByVal eventType As FormattedEvent) + Private _lastUserstreamDataReceived As DateTime Private WithEvents userStream As TwitterUserstream Public Class FormattedEvent @@ -2821,7 +2822,14 @@ "block" } + Public ReadOnly Property IsUserstreamDataReceived As Boolean + Get + Return Now.Subtract(Me._lastUserstreamDataReceived).Seconds < 31 + End Get + End Property + Private Sub userStream_StatusArrived(ByVal line As String) Handles userStream.StatusArrived + Me._lastUserstreamDataReceived = Now If String.IsNullOrEmpty(line) Then Exit Sub Dim isDm As Boolean = False From svnnotify @ sourceforge.jp Mon Dec 20 22:02:09 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 20 Dec 2010 22:02:09 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMzFdICBTZXR0aW5nRGlhbG9n44OW44Op44Oz?= =?utf-8?b?44OB44KS44Oe44O844K4?= Message-ID: <1292850129.119579.30993.nullmailer@users.sourceforge.jp> Revision: 1231 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1231 Author: syo68k Date: 2010-12-20 22:02:09 +0900 (Mon, 20 Dec 2010) Log Message: ----------- SettingDialogブランチをマージ Modified Paths: -------------- trunk/Tween/PictureService.vb trunk/Tween/Tween.vb trunk/Tween/Tween.vbproj trunk/Tween/Twitter.vb Added Paths: ----------- trunk/Tween/AppendSettingDialog.Designer.vb trunk/Tween/AppendSettingDialog.en.resx trunk/Tween/AppendSettingDialog.resx trunk/Tween/AppendSettingDialog.vb trunk/Tween/AppendSettingDialog.zh-CHS.resx Removed Paths: ------------- trunk/Tween/Setting.Designer.vb trunk/Tween/Setting.en.resx trunk/Tween/Setting.resx trunk/Tween/Setting.vb trunk/Tween/Setting.zh-CHS.resx Property Changed: ---------------- trunk/ -------------- next part -------------- Property changes on: trunk ___________________________________________________________________ Modified: svn:mergeinfo - /branches/UserStream:1077-1144 /branches/editlist:667-697 /branches/panelswitch:447-572 /branches/APIchangeevent:723-746 /branches/tm:782-794 /branches/FixedImage:787-910 + /branches/APIchangeevent:723-746 /branches/FixedImage:787-910 /branches/SettingDialog:1216-1230 /branches/UserStream:1077-1144 /branches/editlist:667-697 /branches/panelswitch:447-572 /branches/tm:782-794 Copied: trunk/Tween/AppendSettingDialog.Designer.vb (from rev 1230, branches/SettingDialog/Tween/AppendSettingDialog.Designer.vb) =================================================================== --- trunk/Tween/AppendSettingDialog.Designer.vb (rev 0) +++ trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-20 13:02:09 UTC (rev 1231) @@ -0,0 +1,1947 @@ +? _ +Partial Class AppendSettingDialog + Inherits System.Windows.Forms.Form + + 'フォームがコンポーネントの一覧をクリーンアップするために dispose をオーバーライドします。 + _ + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub + + 'Windows フォーム デザイナーで必要です。 + Private components As System.ComponentModel.IContainer + + 'メモ: 以下のプロシージャは Windows フォーム デザイナーで必要です。 + 'Windows フォーム デザイナーを使用して変更できます。 + 'コード エディターを使って変更しないでください。 + _ + Private Sub InitializeComponent() + Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AppendSettingDialog)) + Me.SplitContainer1 = New System.Windows.Forms.SplitContainer() + Me.TreeView1 = New System.Windows.Forms.TreeView() + Me.GetPeriodPanel = New System.Windows.Forms.Panel() + Me.TimelinePeriod = New System.Windows.Forms.TextBox() + Me.Label3 = New System.Windows.Forms.Label() + Me.ButtonApiCalc = New System.Windows.Forms.Button() + Me.LabelPostAndGet = New System.Windows.Forms.Label() + Me.LabelApiUsing = New System.Windows.Forms.Label() + Me.Label33 = New System.Windows.Forms.Label() + Me.ListsPeriod = New System.Windows.Forms.TextBox() + Me.Label7 = New System.Windows.Forms.Label() + Me.PubSearchPeriod = New System.Windows.Forms.TextBox() + Me.Label69 = New System.Windows.Forms.Label() + Me.ReplyPeriod = New System.Windows.Forms.TextBox() + Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() + Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() + Me.Label5 = New System.Windows.Forms.Label() + Me.DMPeriod = New System.Windows.Forms.TextBox() + Me.GetCountPanel = New System.Windows.Forms.Panel() + Me.Label30 = New System.Windows.Forms.Label() + Me.Label28 = New System.Windows.Forms.Label() + Me.Label19 = New System.Windows.Forms.Label() + Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() + Me.SearchTextCountApi = New System.Windows.Forms.TextBox() + Me.Label66 = New System.Windows.Forms.Label() + Me.FirstTextCountApi = New System.Windows.Forms.TextBox() + Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() + Me.Label53 = New System.Windows.Forms.Label() + Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() + Me.TextCountApiReply = New System.Windows.Forms.TextBox() + Me.Label67 = New System.Windows.Forms.Label() + Me.TextCountApi = New System.Windows.Forms.TextBox() + Me.FontPanel2 = New System.Windows.Forms.Panel() + Me.GroupBox5 = New System.Windows.Forms.GroupBox() + Me.Label65 = New System.Windows.Forms.Label() + Me.Label52 = New System.Windows.Forms.Label() + Me.Label49 = New System.Windows.Forms.Label() + Me.Label9 = New System.Windows.Forms.Label() + Me.Label14 = New System.Windows.Forms.Label() + Me.Label16 = New System.Windows.Forms.Label() + Me.Label32 = New System.Windows.Forms.Label() + Me.Label34 = New System.Windows.Forms.Label() + Me.Label36 = New System.Windows.Forms.Label() + Me.btnInputFont = New System.Windows.Forms.Button() + Me.btnInputBackcolor = New System.Windows.Forms.Button() + Me.btnAtTo = New System.Windows.Forms.Button() + Me.btnListBack = New System.Windows.Forms.Button() + Me.btnAtFromTarget = New System.Windows.Forms.Button() + Me.btnAtTarget = New System.Windows.Forms.Button() + Me.btnTarget = New System.Windows.Forms.Button() + Me.btnAtSelf = New System.Windows.Forms.Button() + Me.btnSelf = New System.Windows.Forms.Button() + Me.lblInputFont = New System.Windows.Forms.Label() + Me.lblInputBackcolor = New System.Windows.Forms.Label() + Me.lblAtTo = New System.Windows.Forms.Label() + Me.lblListBackcolor = New System.Windows.Forms.Label() + Me.lblAtFromTarget = New System.Windows.Forms.Label() + Me.lblAtTarget = New System.Windows.Forms.Label() + Me.lblTarget = New System.Windows.Forms.Label() + Me.lblAtSelf = New System.Windows.Forms.Label() + Me.lblSelf = New System.Windows.Forms.Label() + Me.ButtonBackToDefaultFontColor2 = New System.Windows.Forms.Button() + Me.BasedPanel = New System.Windows.Forms.Panel() + Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() + Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() + Me.Label6 = New System.Windows.Forms.Label() + Me.AuthClearButton = New System.Windows.Forms.Button() + Me.AuthUserLabel = New System.Windows.Forms.Label() + Me.AuthStateLabel = New System.Windows.Forms.Label() + Me.Label4 = New System.Windows.Forms.Label() + Me.AuthorizeButton = New System.Windows.Forms.Button() + Me.Label1 = New System.Windows.Forms.Label() + Me.Label2 = New System.Windows.Forms.Label() + Me.Username = New System.Windows.Forms.TextBox() + Me.Password = New System.Windows.Forms.TextBox() + Me.ProxyPanel = New System.Windows.Forms.Panel() + Me.Label55 = New System.Windows.Forms.Label() + Me.TextProxyPassword = New System.Windows.Forms.TextBox() + Me.RadioProxyNone = New System.Windows.Forms.RadioButton() + Me.LabelProxyPassword = New System.Windows.Forms.Label() + Me.RadioProxyIE = New System.Windows.Forms.RadioButton() + Me.TextProxyUser = New System.Windows.Forms.TextBox() + Me.RadioProxySpecified = New System.Windows.Forms.RadioButton() + Me.LabelProxyUser = New System.Windows.Forms.Label() + Me.LabelProxyAddress = New System.Windows.Forms.Label() + Me.TextProxyPort = New System.Windows.Forms.TextBox() + Me.TextProxyAddress = New System.Windows.Forms.TextBox() + Me.LabelProxyPort = New System.Windows.Forms.Label() + Me.ConnectionPanel = New System.Windows.Forms.Panel() + Me.CheckNicoms = New System.Windows.Forms.CheckBox() + Me.Label60 = New System.Windows.Forms.Label() + Me.ComboBoxOutputzUrlmode = New System.Windows.Forms.ComboBox() + Me.Label59 = New System.Windows.Forms.Label() + Me.TextBoxOutputzKey = New System.Windows.Forms.TextBox() + Me.CheckOutputz = New System.Windows.Forms.CheckBox() + Me.CheckEnableBasicAuth = New System.Windows.Forms.CheckBox() + Me.TwitterSearchAPIText = New System.Windows.Forms.TextBox() + Me.Label31 = New System.Windows.Forms.Label() + Me.TwitterAPIText = New System.Windows.Forms.TextBox() + Me.Label8 = New System.Windows.Forms.Label() + Me.CheckUseSsl = New System.Windows.Forms.CheckBox() + Me.Label64 = New System.Windows.Forms.Label() + Me.ConnectionTimeOut = New System.Windows.Forms.TextBox() + Me.Label63 = New System.Windows.Forms.Label() + Me.UserStreamPanel = New System.Windows.Forms.Panel() + Me.UserstreamPeriod = New System.Windows.Forms.TextBox() + Me.StartupUserstreamCheck = New System.Windows.Forms.CheckBox() + Me.Label83 = New System.Windows.Forms.Label() + Me.StartupPanel = New System.Windows.Forms.Panel() + Me.StartupReaded = New System.Windows.Forms.CheckBox() + Me.CheckStartupFollowers = New System.Windows.Forms.CheckBox() + Me.CheckStartupVersion = New System.Windows.Forms.CheckBox() + Me.chkGetFav = New System.Windows.Forms.CheckBox() + Me.TweetPrvPanel = New System.Windows.Forms.Panel() + Me.Label47 = New System.Windows.Forms.Label() + Me.LabelDateTimeFormatApplied = New System.Windows.Forms.Label() + Me.Label62 = New System.Windows.Forms.Label() + Me.CmbDateTimeFormat = New System.Windows.Forms.ComboBox() + Me.Label23 = New System.Windows.Forms.Label() + Me.Label11 = New System.Windows.Forms.Label() + Me.IconSize = New System.Windows.Forms.ComboBox() + Me.TextBox3 = New System.Windows.Forms.TextBox() + Me.CheckSortOrderLock = New System.Windows.Forms.CheckBox() + Me.CheckShowGrid = New System.Windows.Forms.CheckBox() + Me.chkReadOwnPost = New System.Windows.Forms.CheckBox() + Me.chkUnreadStyle = New System.Windows.Forms.CheckBox() + Me.OneWayLv = New System.Windows.Forms.CheckBox() + Me.ActionPanel = New System.Windows.Forms.Panel() + Me.GroupBox3 = New System.Windows.Forms.GroupBox() + Me.HotkeyCheck = New System.Windows.Forms.CheckBox() + Me.HotkeyCode = New System.Windows.Forms.Label() + Me.HotkeyText = New System.Windows.Forms.TextBox() + Me.HotkeyWin = New System.Windows.Forms.CheckBox() + Me.HotkeyAlt = New System.Windows.Forms.CheckBox() + Me.HotkeyShift = New System.Windows.Forms.CheckBox() + Me.HotkeyCtrl = New System.Windows.Forms.CheckBox() + Me.CheckHashSupple = New System.Windows.Forms.CheckBox() + Me.CheckAtIdSupple = New System.Windows.Forms.CheckBox() + Me.Label57 = New System.Windows.Forms.Label() + Me.CheckFavRestrict = New System.Windows.Forms.CheckBox() + Me.Button3 = New System.Windows.Forms.Button() + Me.PlaySnd = New System.Windows.Forms.CheckBox() + Me.Label15 = New System.Windows.Forms.Label() + Me.BrowserPathText = New System.Windows.Forms.TextBox() + Me.UReadMng = New System.Windows.Forms.CheckBox() + Me.Label44 = New System.Windows.Forms.Label() + Me.CheckCloseToExit = New System.Windows.Forms.CheckBox() + Me.CheckMinimizeToTray = New System.Windows.Forms.CheckBox() + Me.CheckReadOldPosts = New System.Windows.Forms.CheckBox() + Me.PreviewPanel = New System.Windows.Forms.Panel() + Me.ReplyIconStateCombo = New System.Windows.Forms.ComboBox() + Me.Label72 = New System.Windows.Forms.Label() + Me.ChkNewMentionsBlink = New System.Windows.Forms.CheckBox() + Me.chkTabIconDisp = New System.Windows.Forms.CheckBox() + Me.CheckPreviewEnable = New System.Windows.Forms.CheckBox() + Me.Label81 = New System.Windows.Forms.Label() + Me.LanguageCombo = New System.Windows.Forms.ComboBox() + Me.Label13 = New System.Windows.Forms.Label() + Me.CheckAlwaysTop = New System.Windows.Forms.CheckBox() + Me.CheckMonospace = New System.Windows.Forms.CheckBox() + Me.CheckBalloonLimit = New System.Windows.Forms.CheckBox() + Me.Label10 = New System.Windows.Forms.Label() + Me.ComboDispTitle = New System.Windows.Forms.ComboBox() + Me.Label45 = New System.Windows.Forms.Label() + Me.cmbNameBalloon = New System.Windows.Forms.ComboBox() + Me.CheckDispUsername = New System.Windows.Forms.CheckBox() + Me.CheckBox3 = New System.Windows.Forms.CheckBox() + Me.TweetActPanel = New System.Windows.Forms.Panel() + Me.TextBitlyPw = New System.Windows.Forms.TextBox() + Me.ComboBoxPostKeySelect = New System.Windows.Forms.ComboBox() + Me.Label27 = New System.Windows.Forms.Label() + Me.CheckRetweetNoConfirm = New System.Windows.Forms.CheckBox() + Me.TextBitlyId = New System.Windows.Forms.TextBox() + Me.Label12 = New System.Windows.Forms.Label() + Me.Label77 = New System.Windows.Forms.Label() + Me.CheckUseRecommendStatus = New System.Windows.Forms.CheckBox() + Me.Label76 = New System.Windows.Forms.Label() + Me.StatusText = New System.Windows.Forms.TextBox() + Me.ComboBoxAutoShortUrlFirst = New System.Windows.Forms.ComboBox() + Me.Label71 = New System.Windows.Forms.Label() + Me.CheckTinyURL = New System.Windows.Forms.CheckBox() + Me.CheckAutoConvertUrl = New System.Windows.Forms.CheckBox() + Me.FontPanel = New System.Windows.Forms.Panel() + Me.GroupBox1 = New System.Windows.Forms.GroupBox() + Me.btnRetweet = New System.Windows.Forms.Button() + Me.lblRetweet = New System.Windows.Forms.Label() + Me.Label80 = New System.Windows.Forms.Label() + Me.ButtonBackToDefaultFontColor = New System.Windows.Forms.Button() + Me.btnDetailLink = New System.Windows.Forms.Button() + Me.lblDetailLink = New System.Windows.Forms.Label() + Me.Label18 = New System.Windows.Forms.Label() + Me.btnUnread = New System.Windows.Forms.Button() + Me.lblUnread = New System.Windows.Forms.Label() + Me.Label20 = New System.Windows.Forms.Label() + Me.btnDetailBack = New System.Windows.Forms.Button() + Me.lblDetailBackcolor = New System.Windows.Forms.Label() + Me.Label37 = New System.Windows.Forms.Label() + Me.btnDetail = New System.Windows.Forms.Button() + Me.lblDetail = New System.Windows.Forms.Label() + Me.Label26 = New System.Windows.Forms.Label() + Me.btnOWL = New System.Windows.Forms.Button() + Me.lblOWL = New System.Windows.Forms.Label() + Me.Label24 = New System.Windows.Forms.Label() + Me.btnFav = New System.Windows.Forms.Button() + Me.lblFav = New System.Windows.Forms.Label() + Me.Label22 = New System.Windows.Forms.Label() + Me.btnListFont = New System.Windows.Forms.Button() + Me.lblListFont = New System.Windows.Forms.Label() + Me.Label61 = New System.Windows.Forms.Label() + Me.FontDialog1 = New System.Windows.Forms.FontDialog() + Me.ColorDialog1 = New System.Windows.Forms.ColorDialog() + Me.Cancel = New System.Windows.Forms.Button() + Me.Save = New System.Windows.Forms.Button() + CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit() + Me.SplitContainer1.Panel1.SuspendLayout() + Me.SplitContainer1.Panel2.SuspendLayout() + Me.SplitContainer1.SuspendLayout() + Me.GetPeriodPanel.SuspendLayout() + Me.GetCountPanel.SuspendLayout() + Me.FontPanel2.SuspendLayout() + Me.GroupBox5.SuspendLayout() + Me.BasedPanel.SuspendLayout() + Me.ProxyPanel.SuspendLayout() + Me.ConnectionPanel.SuspendLayout() + Me.UserStreamPanel.SuspendLayout() + Me.StartupPanel.SuspendLayout() + Me.TweetPrvPanel.SuspendLayout() + Me.ActionPanel.SuspendLayout() + Me.GroupBox3.SuspendLayout() + Me.PreviewPanel.SuspendLayout() + Me.TweetActPanel.SuspendLayout() + Me.FontPanel.SuspendLayout() + Me.GroupBox1.SuspendLayout() + Me.SuspendLayout() + ' + 'SplitContainer1 + ' + resources.ApplyResources(Me.SplitContainer1, "SplitContainer1") + Me.SplitContainer1.Name = "SplitContainer1" + ' + 'SplitContainer1.Panel1 + ' + Me.SplitContainer1.Panel1.Controls.Add(Me.TreeView1) + ' + 'SplitContainer1.Panel2 + ' + Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Window + Me.SplitContainer1.Panel2.Controls.Add(Me.TweetActPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.GetCountPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel2) + Me.SplitContainer1.Panel2.Controls.Add(Me.BasedPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.ProxyPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.ConnectionPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.UserStreamPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.StartupPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.TweetPrvPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.ActionPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.PreviewPanel) + ' + 'TreeView1 + ' + Me.TreeView1.Cursor = System.Windows.Forms.Cursors.Hand + resources.ApplyResources(Me.TreeView1, "TreeView1") + Me.TreeView1.Name = "TreeView1" + Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {CType(resources.GetObject("TreeView1.Nodes"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes1"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes2"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes3"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes4"), System.Windows.Forms.TreeNode)}) + ' + 'GetPeriodPanel + ' + Me.GetPeriodPanel.BackColor = System.Drawing.SystemColors.Window + Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label3) + Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) + Me.GetPeriodPanel.Controls.Add(Me.LabelPostAndGet) + Me.GetPeriodPanel.Controls.Add(Me.LabelApiUsing) + Me.GetPeriodPanel.Controls.Add(Me.Label33) + Me.GetPeriodPanel.Controls.Add(Me.ListsPeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label7) + Me.GetPeriodPanel.Controls.Add(Me.PubSearchPeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label69) + Me.GetPeriodPanel.Controls.Add(Me.ReplyPeriod) + Me.GetPeriodPanel.Controls.Add(Me.CheckPostAndGet) + Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) + Me.GetPeriodPanel.Controls.Add(Me.Label5) + Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) + resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") + Me.GetPeriodPanel.Name = "GetPeriodPanel" + ' + 'TimelinePeriod + ' + resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") + Me.TimelinePeriod.Name = "TimelinePeriod" + ' + 'Label3 + ' + resources.ApplyResources(Me.Label3, "Label3") + Me.Label3.Name = "Label3" + ' + 'ButtonApiCalc + ' + resources.ApplyResources(Me.ButtonApiCalc, "ButtonApiCalc") + Me.ButtonApiCalc.Name = "ButtonApiCalc" + Me.ButtonApiCalc.UseVisualStyleBackColor = True + ' + 'LabelPostAndGet + ' + resources.ApplyResources(Me.LabelPostAndGet, "LabelPostAndGet") + Me.LabelPostAndGet.Name = "LabelPostAndGet" + ' + 'LabelApiUsing + ' + resources.ApplyResources(Me.LabelApiUsing, "LabelApiUsing") + Me.LabelApiUsing.Name = "LabelApiUsing" + ' + 'Label33 + ' + resources.ApplyResources(Me.Label33, "Label33") + Me.Label33.Name = "Label33" + ' + 'ListsPeriod + ' + resources.ApplyResources(Me.ListsPeriod, "ListsPeriod") + Me.ListsPeriod.Name = "ListsPeriod" + ' + 'Label7 + ' + resources.ApplyResources(Me.Label7, "Label7") + Me.Label7.Name = "Label7" + ' + 'PubSearchPeriod + ' + resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") + Me.PubSearchPeriod.Name = "PubSearchPeriod" + ' + 'Label69 + ' + resources.ApplyResources(Me.Label69, "Label69") + Me.Label69.Name = "Label69" + ' + 'ReplyPeriod + ' + resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") + Me.ReplyPeriod.Name = "ReplyPeriod" + ' + 'CheckPostAndGet + ' + resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") + Me.CheckPostAndGet.Name = "CheckPostAndGet" + Me.CheckPostAndGet.UseVisualStyleBackColor = True + ' + 'CheckPeriodAdjust + ' + resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") + Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" + Me.CheckPeriodAdjust.UseVisualStyleBackColor = True + ' + 'Label5 + ' + resources.ApplyResources(Me.Label5, "Label5") + Me.Label5.Name = "Label5" + ' + 'DMPeriod + ' + resources.ApplyResources(Me.DMPeriod, "DMPeriod") + Me.DMPeriod.Name = "DMPeriod" + ' + 'GetCountPanel + ' + Me.GetCountPanel.BackColor = System.Drawing.SystemColors.Window + Me.GetCountPanel.Controls.Add(Me.Label30) + Me.GetCountPanel.Controls.Add(Me.Label28) + Me.GetCountPanel.Controls.Add(Me.Label19) + Me.GetCountPanel.Controls.Add(Me.FavoritesTextCountApi) + Me.GetCountPanel.Controls.Add(Me.SearchTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label66) + Me.GetCountPanel.Controls.Add(Me.FirstTextCountApi) + Me.GetCountPanel.Controls.Add(Me.GetMoreTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label53) + Me.GetCountPanel.Controls.Add(Me.UseChangeGetCount) + Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) + Me.GetCountPanel.Controls.Add(Me.Label67) + Me.GetCountPanel.Controls.Add(Me.TextCountApi) + resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") + Me.GetCountPanel.Name = "GetCountPanel" + ' + 'Label30 + ' + resources.ApplyResources(Me.Label30, "Label30") + Me.Label30.Name = "Label30" + ' + 'Label28 + ' + resources.ApplyResources(Me.Label28, "Label28") + Me.Label28.Name = "Label28" + ' + 'Label19 + ' + resources.ApplyResources(Me.Label19, "Label19") + Me.Label19.Name = "Label19" + ' + 'FavoritesTextCountApi + ' + resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") + Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" + ' + 'SearchTextCountApi + ' + resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") + Me.SearchTextCountApi.Name = "SearchTextCountApi" + ' + 'Label66 + ' + resources.ApplyResources(Me.Label66, "Label66") + Me.Label66.Name = "Label66" + ' + 'FirstTextCountApi + ' + resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") + Me.FirstTextCountApi.Name = "FirstTextCountApi" + ' + 'GetMoreTextCountApi + ' + resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") + Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" + ' + 'Label53 + ' + resources.ApplyResources(Me.Label53, "Label53") + Me.Label53.Name = "Label53" + ' + 'UseChangeGetCount + ' + resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") + Me.UseChangeGetCount.Name = "UseChangeGetCount" + Me.UseChangeGetCount.UseVisualStyleBackColor = True + ' + 'TextCountApiReply + ' + resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") + Me.TextCountApiReply.Name = "TextCountApiReply" + ' + 'Label67 + ' + resources.ApplyResources(Me.Label67, "Label67") + Me.Label67.Name = "Label67" + ' + 'TextCountApi + ' + resources.ApplyResources(Me.TextCountApi, "TextCountApi") + Me.TextCountApi.Name = "TextCountApi" + ' + 'FontPanel2 + ' + Me.FontPanel2.Controls.Add(Me.GroupBox5) + resources.ApplyResources(Me.FontPanel2, "FontPanel2") + Me.FontPanel2.Name = "FontPanel2" + ' + 'GroupBox5 + ' + Me.GroupBox5.Controls.Add(Me.Label65) + Me.GroupBox5.Controls.Add(Me.Label52) + Me.GroupBox5.Controls.Add(Me.Label49) + Me.GroupBox5.Controls.Add(Me.Label9) + Me.GroupBox5.Controls.Add(Me.Label14) + Me.GroupBox5.Controls.Add(Me.Label16) + Me.GroupBox5.Controls.Add(Me.Label32) + Me.GroupBox5.Controls.Add(Me.Label34) + Me.GroupBox5.Controls.Add(Me.Label36) + Me.GroupBox5.Controls.Add(Me.btnInputFont) + Me.GroupBox5.Controls.Add(Me.btnInputBackcolor) + Me.GroupBox5.Controls.Add(Me.btnAtTo) + Me.GroupBox5.Controls.Add(Me.btnListBack) + Me.GroupBox5.Controls.Add(Me.btnAtFromTarget) + Me.GroupBox5.Controls.Add(Me.btnAtTarget) + Me.GroupBox5.Controls.Add(Me.btnTarget) + Me.GroupBox5.Controls.Add(Me.btnAtSelf) + Me.GroupBox5.Controls.Add(Me.btnSelf) + Me.GroupBox5.Controls.Add(Me.lblInputFont) + Me.GroupBox5.Controls.Add(Me.lblInputBackcolor) + Me.GroupBox5.Controls.Add(Me.lblAtTo) + Me.GroupBox5.Controls.Add(Me.lblListBackcolor) + Me.GroupBox5.Controls.Add(Me.lblAtFromTarget) + Me.GroupBox5.Controls.Add(Me.lblAtTarget) + Me.GroupBox5.Controls.Add(Me.lblTarget) + Me.GroupBox5.Controls.Add(Me.lblAtSelf) + Me.GroupBox5.Controls.Add(Me.lblSelf) + Me.GroupBox5.Controls.Add(Me.ButtonBackToDefaultFontColor2) + resources.ApplyResources(Me.GroupBox5, "GroupBox5") + Me.GroupBox5.Name = "GroupBox5" + Me.GroupBox5.TabStop = False + ' + 'Label65 + ' + resources.ApplyResources(Me.Label65, "Label65") + Me.Label65.Name = "Label65" + ' + 'Label52 + ' + resources.ApplyResources(Me.Label52, "Label52") + Me.Label52.Name = "Label52" + ' + 'Label49 + ' + resources.ApplyResources(Me.Label49, "Label49") + Me.Label49.Name = "Label49" + ' + 'Label9 + ' + resources.ApplyResources(Me.Label9, "Label9") + Me.Label9.Name = "Label9" + ' + 'Label14 + ' + resources.ApplyResources(Me.Label14, "Label14") + Me.Label14.Name = "Label14" + ' + 'Label16 + ' + resources.ApplyResources(Me.Label16, "Label16") + Me.Label16.Name = "Label16" + ' + 'Label32 + ' + resources.ApplyResources(Me.Label32, "Label32") + Me.Label32.Name = "Label32" + ' + 'Label34 + ' + resources.ApplyResources(Me.Label34, "Label34") + Me.Label34.Name = "Label34" + ' + 'Label36 + ' + resources.ApplyResources(Me.Label36, "Label36") + Me.Label36.Name = "Label36" + ' + 'btnInputFont + ' + resources.ApplyResources(Me.btnInputFont, "btnInputFont") + Me.btnInputFont.Name = "btnInputFont" + Me.btnInputFont.UseVisualStyleBackColor = True + ' + 'btnInputBackcolor + ' + resources.ApplyResources(Me.btnInputBackcolor, "btnInputBackcolor") + Me.btnInputBackcolor.Name = "btnInputBackcolor" + Me.btnInputBackcolor.UseVisualStyleBackColor = True + ' + 'btnAtTo + ' + resources.ApplyResources(Me.btnAtTo, "btnAtTo") + Me.btnAtTo.Name = "btnAtTo" + Me.btnAtTo.UseVisualStyleBackColor = True + ' + 'btnListBack + ' + resources.ApplyResources(Me.btnListBack, "btnListBack") + Me.btnListBack.Name = "btnListBack" + Me.btnListBack.UseVisualStyleBackColor = True + ' + 'btnAtFromTarget + ' + resources.ApplyResources(Me.btnAtFromTarget, "btnAtFromTarget") + Me.btnAtFromTarget.Name = "btnAtFromTarget" + Me.btnAtFromTarget.UseVisualStyleBackColor = True + ' + 'btnAtTarget + ' + resources.ApplyResources(Me.btnAtTarget, "btnAtTarget") + Me.btnAtTarget.Name = "btnAtTarget" + Me.btnAtTarget.UseVisualStyleBackColor = True + ' + 'btnTarget + ' + resources.ApplyResources(Me.btnTarget, "btnTarget") + Me.btnTarget.Name = "btnTarget" + Me.btnTarget.UseVisualStyleBackColor = True + ' + 'btnAtSelf + ' + resources.ApplyResources(Me.btnAtSelf, "btnAtSelf") + Me.btnAtSelf.Name = "btnAtSelf" + Me.btnAtSelf.UseVisualStyleBackColor = True + ' + 'btnSelf + ' + resources.ApplyResources(Me.btnSelf, "btnSelf") + Me.btnSelf.Name = "btnSelf" + Me.btnSelf.UseVisualStyleBackColor = True + ' + 'lblInputFont + ' + Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblInputFont, "lblInputFont") + Me.lblInputFont.Name = "lblInputFont" + ' + 'lblInputBackcolor + ' + Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") + Me.lblInputBackcolor.Name = "lblInputBackcolor" + ' + 'lblAtTo + ' + Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblAtTo, "lblAtTo") + Me.lblAtTo.Name = "lblAtTo" + ' + 'lblListBackcolor + ' + Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") + Me.lblListBackcolor.Name = "lblListBackcolor" + ' + 'lblAtFromTarget + ' + Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") + Me.lblAtFromTarget.Name = "lblAtFromTarget" + ' + 'lblAtTarget + ' + Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") + Me.lblAtTarget.Name = "lblAtTarget" + ' + 'lblTarget + ' + Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblTarget, "lblTarget") + Me.lblTarget.Name = "lblTarget" + ' + 'lblAtSelf + ' + Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") + Me.lblAtSelf.Name = "lblAtSelf" + ' + 'lblSelf + ' + Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblSelf, "lblSelf") + Me.lblSelf.Name = "lblSelf" + ' + 'ButtonBackToDefaultFontColor2 + ' + resources.ApplyResources(Me.ButtonBackToDefaultFontColor2, "ButtonBackToDefaultFontColor2") + Me.ButtonBackToDefaultFontColor2.Name = "ButtonBackToDefaultFontColor2" + Me.ButtonBackToDefaultFontColor2.UseVisualStyleBackColor = True + ' + 'BasedPanel + ' + Me.BasedPanel.BackColor = System.Drawing.SystemColors.Window + Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) + Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) + Me.BasedPanel.Controls.Add(Me.Label6) + Me.BasedPanel.Controls.Add(Me.AuthClearButton) + Me.BasedPanel.Controls.Add(Me.AuthUserLabel) + Me.BasedPanel.Controls.Add(Me.AuthStateLabel) + Me.BasedPanel.Controls.Add(Me.Label4) + Me.BasedPanel.Controls.Add(Me.AuthorizeButton) + Me.BasedPanel.Controls.Add(Me.Label1) + Me.BasedPanel.Controls.Add(Me.Label2) + Me.BasedPanel.Controls.Add(Me.Username) + Me.BasedPanel.Controls.Add(Me.Password) + resources.ApplyResources(Me.BasedPanel, "BasedPanel") + Me.BasedPanel.Name = "BasedPanel" + ' + 'AuthBasicRadio + ' + resources.ApplyResources(Me.AuthBasicRadio, "AuthBasicRadio") + Me.AuthBasicRadio.Name = "AuthBasicRadio" + Me.AuthBasicRadio.UseVisualStyleBackColor = True + ' + 'AuthOAuthRadio + ' + resources.ApplyResources(Me.AuthOAuthRadio, "AuthOAuthRadio") + Me.AuthOAuthRadio.Checked = True + Me.AuthOAuthRadio.Name = "AuthOAuthRadio" + Me.AuthOAuthRadio.TabStop = True + Me.AuthOAuthRadio.UseVisualStyleBackColor = True + ' + 'Label6 + ' + resources.ApplyResources(Me.Label6, "Label6") + Me.Label6.Name = "Label6" + ' + 'AuthClearButton + ' + resources.ApplyResources(Me.AuthClearButton, "AuthClearButton") + Me.AuthClearButton.Name = "AuthClearButton" + Me.AuthClearButton.UseVisualStyleBackColor = True + ' + 'AuthUserLabel + ' + Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") + Me.AuthUserLabel.Name = "AuthUserLabel" + ' + 'AuthStateLabel + ' + Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") + Me.AuthStateLabel.Name = "AuthStateLabel" + ' + 'Label4 + ' + resources.ApplyResources(Me.Label4, "Label4") + Me.Label4.Name = "Label4" + ' + 'AuthorizeButton + ' + resources.ApplyResources(Me.AuthorizeButton, "AuthorizeButton") + Me.AuthorizeButton.Name = "AuthorizeButton" + Me.AuthorizeButton.UseVisualStyleBackColor = True + ' + 'Label1 + ' + resources.ApplyResources(Me.Label1, "Label1") + Me.Label1.Name = "Label1" + ' + 'Label2 + ' + resources.ApplyResources(Me.Label2, "Label2") + Me.Label2.Name = "Label2" + ' + 'Username + ' + resources.ApplyResources(Me.Username, "Username") + Me.Username.Name = "Username" + ' + 'Password + ' + resources.ApplyResources(Me.Password, "Password") + Me.Password.Name = "Password" + Me.Password.UseSystemPasswordChar = True + ' + 'ProxyPanel + ' + Me.ProxyPanel.Controls.Add(Me.Label55) + Me.ProxyPanel.Controls.Add(Me.TextProxyPassword) + Me.ProxyPanel.Controls.Add(Me.RadioProxyNone) + Me.ProxyPanel.Controls.Add(Me.LabelProxyPassword) + Me.ProxyPanel.Controls.Add(Me.RadioProxyIE) + Me.ProxyPanel.Controls.Add(Me.TextProxyUser) + Me.ProxyPanel.Controls.Add(Me.RadioProxySpecified) + Me.ProxyPanel.Controls.Add(Me.LabelProxyUser) + Me.ProxyPanel.Controls.Add(Me.LabelProxyAddress) + Me.ProxyPanel.Controls.Add(Me.TextProxyPort) + Me.ProxyPanel.Controls.Add(Me.TextProxyAddress) + Me.ProxyPanel.Controls.Add(Me.LabelProxyPort) + resources.ApplyResources(Me.ProxyPanel, "ProxyPanel") + Me.ProxyPanel.Name = "ProxyPanel" + ' + 'Label55 + ' + resources.ApplyResources(Me.Label55, "Label55") + Me.Label55.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label55.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label55.Name = "Label55" + ' + 'TextProxyPassword + ' + resources.ApplyResources(Me.TextProxyPassword, "TextProxyPassword") + Me.TextProxyPassword.Name = "TextProxyPassword" + Me.TextProxyPassword.UseSystemPasswordChar = True + ' + 'RadioProxyNone + ' + resources.ApplyResources(Me.RadioProxyNone, "RadioProxyNone") + Me.RadioProxyNone.Name = "RadioProxyNone" + Me.RadioProxyNone.UseVisualStyleBackColor = True + ' + 'LabelProxyPassword + ' + resources.ApplyResources(Me.LabelProxyPassword, "LabelProxyPassword") + Me.LabelProxyPassword.Name = "LabelProxyPassword" + ' + 'RadioProxyIE + ' + resources.ApplyResources(Me.RadioProxyIE, "RadioProxyIE") + Me.RadioProxyIE.Checked = True + Me.RadioProxyIE.Name = "RadioProxyIE" + Me.RadioProxyIE.TabStop = True + Me.RadioProxyIE.UseVisualStyleBackColor = True + ' + 'TextProxyUser + ' + resources.ApplyResources(Me.TextProxyUser, "TextProxyUser") + Me.TextProxyUser.Name = "TextProxyUser" + ' + 'RadioProxySpecified + ' + resources.ApplyResources(Me.RadioProxySpecified, "RadioProxySpecified") + Me.RadioProxySpecified.Name = "RadioProxySpecified" + Me.RadioProxySpecified.UseVisualStyleBackColor = True + ' + 'LabelProxyUser + ' + resources.ApplyResources(Me.LabelProxyUser, "LabelProxyUser") + Me.LabelProxyUser.Name = "LabelProxyUser" + ' + 'LabelProxyAddress + ' + resources.ApplyResources(Me.LabelProxyAddress, "LabelProxyAddress") + Me.LabelProxyAddress.Name = "LabelProxyAddress" + ' + 'TextProxyPort + ' + resources.ApplyResources(Me.TextProxyPort, "TextProxyPort") + Me.TextProxyPort.Name = "TextProxyPort" + ' + 'TextProxyAddress + ' + resources.ApplyResources(Me.TextProxyAddress, "TextProxyAddress") + Me.TextProxyAddress.Name = "TextProxyAddress" + ' + 'LabelProxyPort + ' + resources.ApplyResources(Me.LabelProxyPort, "LabelProxyPort") + Me.LabelProxyPort.Name = "LabelProxyPort" + ' + 'ConnectionPanel + ' + Me.ConnectionPanel.Controls.Add(Me.CheckNicoms) + Me.ConnectionPanel.Controls.Add(Me.Label60) + Me.ConnectionPanel.Controls.Add(Me.ComboBoxOutputzUrlmode) + Me.ConnectionPanel.Controls.Add(Me.Label59) + Me.ConnectionPanel.Controls.Add(Me.TextBoxOutputzKey) + Me.ConnectionPanel.Controls.Add(Me.CheckOutputz) + Me.ConnectionPanel.Controls.Add(Me.CheckEnableBasicAuth) + Me.ConnectionPanel.Controls.Add(Me.TwitterSearchAPIText) + Me.ConnectionPanel.Controls.Add(Me.Label31) + Me.ConnectionPanel.Controls.Add(Me.TwitterAPIText) + Me.ConnectionPanel.Controls.Add(Me.Label8) + Me.ConnectionPanel.Controls.Add(Me.CheckUseSsl) + Me.ConnectionPanel.Controls.Add(Me.Label64) + Me.ConnectionPanel.Controls.Add(Me.ConnectionTimeOut) + Me.ConnectionPanel.Controls.Add(Me.Label63) + resources.ApplyResources(Me.ConnectionPanel, "ConnectionPanel") + Me.ConnectionPanel.Name = "ConnectionPanel" + ' + 'CheckNicoms + ' + resources.ApplyResources(Me.CheckNicoms, "CheckNicoms") + Me.CheckNicoms.Name = "CheckNicoms" + Me.CheckNicoms.UseVisualStyleBackColor = True + ' + 'Label60 + ' + resources.ApplyResources(Me.Label60, "Label60") + Me.Label60.Name = "Label60" + ' + 'ComboBoxOutputzUrlmode + ' + Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboBoxOutputzUrlmode.FormattingEnabled = True + Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {resources.GetString("ComboBoxOutputzUrlmode.Items"), resources.GetString("ComboBoxOutputzUrlmode.Items1")}) + resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") + Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" + ' + 'Label59 + ' + resources.ApplyResources(Me.Label59, "Label59") + Me.Label59.Name = "Label59" + ' + 'TextBoxOutputzKey + ' + resources.ApplyResources(Me.TextBoxOutputzKey, "TextBoxOutputzKey") + Me.TextBoxOutputzKey.Name = "TextBoxOutputzKey" + ' + 'CheckOutputz + ' + resources.ApplyResources(Me.CheckOutputz, "CheckOutputz") + Me.CheckOutputz.Name = "CheckOutputz" + Me.CheckOutputz.UseVisualStyleBackColor = True + ' + 'CheckEnableBasicAuth + ' + resources.ApplyResources(Me.CheckEnableBasicAuth, "CheckEnableBasicAuth") + Me.CheckEnableBasicAuth.Name = "CheckEnableBasicAuth" + Me.CheckEnableBasicAuth.UseVisualStyleBackColor = True + ' + 'TwitterSearchAPIText + ' + resources.ApplyResources(Me.TwitterSearchAPIText, "TwitterSearchAPIText") + Me.TwitterSearchAPIText.Name = "TwitterSearchAPIText" + ' + 'Label31 + ' + resources.ApplyResources(Me.Label31, "Label31") + Me.Label31.Name = "Label31" + ' + 'TwitterAPIText + ' + resources.ApplyResources(Me.TwitterAPIText, "TwitterAPIText") + Me.TwitterAPIText.Name = "TwitterAPIText" + ' + 'Label8 + ' + resources.ApplyResources(Me.Label8, "Label8") + Me.Label8.Name = "Label8" + ' + 'CheckUseSsl + ' + resources.ApplyResources(Me.CheckUseSsl, "CheckUseSsl") + Me.CheckUseSsl.Name = "CheckUseSsl" + Me.CheckUseSsl.UseVisualStyleBackColor = True + ' + 'Label64 + ' + resources.ApplyResources(Me.Label64, "Label64") + Me.Label64.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label64.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label64.Name = "Label64" + ' + 'ConnectionTimeOut + ' + resources.ApplyResources(Me.ConnectionTimeOut, "ConnectionTimeOut") + Me.ConnectionTimeOut.Name = "ConnectionTimeOut" + ' + 'Label63 + ' + resources.ApplyResources(Me.Label63, "Label63") + Me.Label63.Name = "Label63" + ' + 'UserStreamPanel + ' + Me.UserStreamPanel.Controls.Add(Me.UserstreamPeriod) + Me.UserStreamPanel.Controls.Add(Me.StartupUserstreamCheck) + Me.UserStreamPanel.Controls.Add(Me.Label83) + resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") + Me.UserStreamPanel.Name = "UserStreamPanel" + ' + 'UserstreamPeriod + ' + resources.ApplyResources(Me.UserstreamPeriod, "UserstreamPeriod") + Me.UserstreamPeriod.Name = "UserstreamPeriod" + ' + 'StartupUserstreamCheck + ' + resources.ApplyResources(Me.StartupUserstreamCheck, "StartupUserstreamCheck") + Me.StartupUserstreamCheck.Name = "StartupUserstreamCheck" + Me.StartupUserstreamCheck.UseVisualStyleBackColor = True + ' + 'Label83 + ' + resources.ApplyResources(Me.Label83, "Label83") + Me.Label83.Name = "Label83" + ' + 'StartupPanel + ' + Me.StartupPanel.BackColor = System.Drawing.SystemColors.Window + Me.StartupPanel.Controls.Add(Me.StartupReaded) + Me.StartupPanel.Controls.Add(Me.CheckStartupFollowers) + Me.StartupPanel.Controls.Add(Me.CheckStartupVersion) + Me.StartupPanel.Controls.Add(Me.chkGetFav) + resources.ApplyResources(Me.StartupPanel, "StartupPanel") + Me.StartupPanel.Name = "StartupPanel" + ' + 'StartupReaded + ' + resources.ApplyResources(Me.StartupReaded, "StartupReaded") + Me.StartupReaded.Name = "StartupReaded" + Me.StartupReaded.UseVisualStyleBackColor = True + ' + 'CheckStartupFollowers + ' + resources.ApplyResources(Me.CheckStartupFollowers, "CheckStartupFollowers") + Me.CheckStartupFollowers.Name = "CheckStartupFollowers" + Me.CheckStartupFollowers.UseVisualStyleBackColor = True + ' + 'CheckStartupVersion + ' + resources.ApplyResources(Me.CheckStartupVersion, "CheckStartupVersion") + Me.CheckStartupVersion.Name = "CheckStartupVersion" + Me.CheckStartupVersion.UseVisualStyleBackColor = True + ' + 'chkGetFav + ' + resources.ApplyResources(Me.chkGetFav, "chkGetFav") + Me.chkGetFav.Name = "chkGetFav" + Me.chkGetFav.UseVisualStyleBackColor = True + ' + 'TweetPrvPanel + ' + Me.TweetPrvPanel.Controls.Add(Me.Label47) + Me.TweetPrvPanel.Controls.Add(Me.LabelDateTimeFormatApplied) + Me.TweetPrvPanel.Controls.Add(Me.Label62) + Me.TweetPrvPanel.Controls.Add(Me.CmbDateTimeFormat) + Me.TweetPrvPanel.Controls.Add(Me.Label23) + Me.TweetPrvPanel.Controls.Add(Me.Label11) + Me.TweetPrvPanel.Controls.Add(Me.IconSize) + Me.TweetPrvPanel.Controls.Add(Me.TextBox3) + Me.TweetPrvPanel.Controls.Add(Me.CheckSortOrderLock) + Me.TweetPrvPanel.Controls.Add(Me.CheckShowGrid) + Me.TweetPrvPanel.Controls.Add(Me.chkReadOwnPost) + Me.TweetPrvPanel.Controls.Add(Me.chkUnreadStyle) + Me.TweetPrvPanel.Controls.Add(Me.OneWayLv) + resources.ApplyResources(Me.TweetPrvPanel, "TweetPrvPanel") + Me.TweetPrvPanel.Name = "TweetPrvPanel" + ' + 'Label47 + ' + resources.ApplyResources(Me.Label47, "Label47") + Me.Label47.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label47.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label47.Name = "Label47" + ' + 'LabelDateTimeFormatApplied + ' + resources.ApplyResources(Me.LabelDateTimeFormatApplied, "LabelDateTimeFormatApplied") + Me.LabelDateTimeFormatApplied.Name = "LabelDateTimeFormatApplied" + ' + 'Label62 + ' + resources.ApplyResources(Me.Label62, "Label62") + Me.Label62.Name = "Label62" + ' + 'CmbDateTimeFormat + ' + resources.ApplyResources(Me.CmbDateTimeFormat, "CmbDateTimeFormat") + Me.CmbDateTimeFormat.Items.AddRange(New Object() {resources.GetString("CmbDateTimeFormat.Items"), resources.GetString("CmbDateTimeFormat.Items1"), resources.GetString("CmbDateTimeFormat.Items2"), resources.GetString("CmbDateTimeFormat.Items3"), resources.GetString("CmbDateTimeFormat.Items4"), resources.GetString("CmbDateTimeFormat.Items5"), resources.GetString("CmbDateTimeFormat.Items6"), resources.GetString("CmbDateTimeFormat.Items7"), resources.GetString("CmbDateTimeFormat.Items8"), resources.GetString("CmbDateTimeFormat.Items9"), resources.GetString("CmbDateTimeFormat.Items10")}) + Me.CmbDateTimeFormat.Name = "CmbDateTimeFormat" + ' + 'Label23 + ' + resources.ApplyResources(Me.Label23, "Label23") + Me.Label23.Name = "Label23" + ' + 'Label11 + ' + resources.ApplyResources(Me.Label11, "Label11") + Me.Label11.Name = "Label11" + ' + 'IconSize + ' + Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.IconSize.FormattingEnabled = True + Me.IconSize.Items.AddRange(New Object() {resources.GetString("IconSize.Items"), resources.GetString("IconSize.Items1"), resources.GetString("IconSize.Items2"), resources.GetString("IconSize.Items3"), resources.GetString("IconSize.Items4")}) + resources.ApplyResources(Me.IconSize, "IconSize") + Me.IconSize.Name = "IconSize" + ' + 'TextBox3 + ' + resources.ApplyResources(Me.TextBox3, "TextBox3") + Me.TextBox3.Name = "TextBox3" + ' + 'CheckSortOrderLock + ' + resources.ApplyResources(Me.CheckSortOrderLock, "CheckSortOrderLock") + Me.CheckSortOrderLock.Name = "CheckSortOrderLock" + Me.CheckSortOrderLock.UseVisualStyleBackColor = True + ' + 'CheckShowGrid + ' + resources.ApplyResources(Me.CheckShowGrid, "CheckShowGrid") + Me.CheckShowGrid.Name = "CheckShowGrid" + Me.CheckShowGrid.UseVisualStyleBackColor = True + ' + 'chkReadOwnPost + ' + resources.ApplyResources(Me.chkReadOwnPost, "chkReadOwnPost") + Me.chkReadOwnPost.Name = "chkReadOwnPost" + Me.chkReadOwnPost.UseVisualStyleBackColor = True + ' + 'chkUnreadStyle + ' + resources.ApplyResources(Me.chkUnreadStyle, "chkUnreadStyle") + Me.chkUnreadStyle.Name = "chkUnreadStyle" + Me.chkUnreadStyle.UseVisualStyleBackColor = True + ' + 'OneWayLv + ' + resources.ApplyResources(Me.OneWayLv, "OneWayLv") + Me.OneWayLv.Name = "OneWayLv" + Me.OneWayLv.UseVisualStyleBackColor = True + ' + 'ActionPanel + ' + Me.ActionPanel.BackColor = System.Drawing.SystemColors.Window + Me.ActionPanel.Controls.Add(Me.GroupBox3) + Me.ActionPanel.Controls.Add(Me.CheckHashSupple) + Me.ActionPanel.Controls.Add(Me.CheckAtIdSupple) + Me.ActionPanel.Controls.Add(Me.Label57) + Me.ActionPanel.Controls.Add(Me.CheckFavRestrict) + Me.ActionPanel.Controls.Add(Me.Button3) + Me.ActionPanel.Controls.Add(Me.PlaySnd) + Me.ActionPanel.Controls.Add(Me.Label15) + Me.ActionPanel.Controls.Add(Me.BrowserPathText) + Me.ActionPanel.Controls.Add(Me.UReadMng) + Me.ActionPanel.Controls.Add(Me.Label44) + Me.ActionPanel.Controls.Add(Me.CheckCloseToExit) + Me.ActionPanel.Controls.Add(Me.CheckMinimizeToTray) + Me.ActionPanel.Controls.Add(Me.CheckReadOldPosts) + resources.ApplyResources(Me.ActionPanel, "ActionPanel") + Me.ActionPanel.Name = "ActionPanel" + ' + 'GroupBox3 + ' + Me.GroupBox3.Controls.Add(Me.HotkeyCheck) + Me.GroupBox3.Controls.Add(Me.HotkeyCode) + Me.GroupBox3.Controls.Add(Me.HotkeyText) + Me.GroupBox3.Controls.Add(Me.HotkeyWin) + Me.GroupBox3.Controls.Add(Me.HotkeyAlt) + Me.GroupBox3.Controls.Add(Me.HotkeyShift) + Me.GroupBox3.Controls.Add(Me.HotkeyCtrl) + resources.ApplyResources(Me.GroupBox3, "GroupBox3") + Me.GroupBox3.Name = "GroupBox3" + Me.GroupBox3.TabStop = False + ' + 'HotkeyCheck + ' + resources.ApplyResources(Me.HotkeyCheck, "HotkeyCheck") + Me.HotkeyCheck.Name = "HotkeyCheck" + Me.HotkeyCheck.UseVisualStyleBackColor = True + ' + 'HotkeyCode + ' + resources.ApplyResources(Me.HotkeyCode, "HotkeyCode") + Me.HotkeyCode.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + Me.HotkeyCode.Name = "HotkeyCode" + ' + 'HotkeyText + ' + resources.ApplyResources(Me.HotkeyText, "HotkeyText") + Me.HotkeyText.Name = "HotkeyText" + Me.HotkeyText.ReadOnly = True + ' + 'HotkeyWin + ' + resources.ApplyResources(Me.HotkeyWin, "HotkeyWin") + Me.HotkeyWin.Name = "HotkeyWin" + Me.HotkeyWin.UseVisualStyleBackColor = True + ' + 'HotkeyAlt + ' + resources.ApplyResources(Me.HotkeyAlt, "HotkeyAlt") + Me.HotkeyAlt.Name = "HotkeyAlt" + Me.HotkeyAlt.UseVisualStyleBackColor = True + ' + 'HotkeyShift + ' + resources.ApplyResources(Me.HotkeyShift, "HotkeyShift") + Me.HotkeyShift.Name = "HotkeyShift" + Me.HotkeyShift.UseVisualStyleBackColor = True + ' + 'HotkeyCtrl + ' + resources.ApplyResources(Me.HotkeyCtrl, "HotkeyCtrl") + Me.HotkeyCtrl.Name = "HotkeyCtrl" + Me.HotkeyCtrl.UseVisualStyleBackColor = True + ' + 'CheckHashSupple + ' + resources.ApplyResources(Me.CheckHashSupple, "CheckHashSupple") + Me.CheckHashSupple.Name = "CheckHashSupple" + Me.CheckHashSupple.UseVisualStyleBackColor = True + ' + 'CheckAtIdSupple + ' + resources.ApplyResources(Me.CheckAtIdSupple, "CheckAtIdSupple") + Me.CheckAtIdSupple.Name = "CheckAtIdSupple" + Me.CheckAtIdSupple.UseVisualStyleBackColor = True + ' + 'Label57 + ' + resources.ApplyResources(Me.Label57, "Label57") + Me.Label57.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label57.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label57.Name = "Label57" + ' + 'CheckFavRestrict + ' + resources.ApplyResources(Me.CheckFavRestrict, "CheckFavRestrict") + Me.CheckFavRestrict.Name = "CheckFavRestrict" + Me.CheckFavRestrict.UseVisualStyleBackColor = True + ' + 'Button3 + ' + resources.ApplyResources(Me.Button3, "Button3") + Me.Button3.Name = "Button3" + Me.Button3.UseVisualStyleBackColor = True + ' + 'PlaySnd + ' + resources.ApplyResources(Me.PlaySnd, "PlaySnd") + Me.PlaySnd.Name = "PlaySnd" + Me.PlaySnd.UseVisualStyleBackColor = True + ' + 'Label15 + ' + Me.Label15.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + resources.ApplyResources(Me.Label15, "Label15") + Me.Label15.Name = "Label15" + ' + 'BrowserPathText + ' + resources.ApplyResources(Me.BrowserPathText, "BrowserPathText") + Me.BrowserPathText.Name = "BrowserPathText" + ' + 'UReadMng + ' + resources.ApplyResources(Me.UReadMng, "UReadMng") + Me.UReadMng.Name = "UReadMng" + Me.UReadMng.UseVisualStyleBackColor = True + ' + 'Label44 + ' + resources.ApplyResources(Me.Label44, "Label44") + Me.Label44.Name = "Label44" + ' + 'CheckCloseToExit + ' + resources.ApplyResources(Me.CheckCloseToExit, "CheckCloseToExit") + Me.CheckCloseToExit.Name = "CheckCloseToExit" + Me.CheckCloseToExit.UseVisualStyleBackColor = True + ' + 'CheckMinimizeToTray + ' + resources.ApplyResources(Me.CheckMinimizeToTray, "CheckMinimizeToTray") + Me.CheckMinimizeToTray.Name = "CheckMinimizeToTray" + Me.CheckMinimizeToTray.UseVisualStyleBackColor = True + ' + 'CheckReadOldPosts + ' + resources.ApplyResources(Me.CheckReadOldPosts, "CheckReadOldPosts") + Me.CheckReadOldPosts.Name = "CheckReadOldPosts" + Me.CheckReadOldPosts.UseVisualStyleBackColor = True + ' + 'PreviewPanel + ' + Me.PreviewPanel.Controls.Add(Me.ReplyIconStateCombo) + Me.PreviewPanel.Controls.Add(Me.Label72) + Me.PreviewPanel.Controls.Add(Me.ChkNewMentionsBlink) + Me.PreviewPanel.Controls.Add(Me.chkTabIconDisp) + Me.PreviewPanel.Controls.Add(Me.CheckPreviewEnable) + Me.PreviewPanel.Controls.Add(Me.Label81) + Me.PreviewPanel.Controls.Add(Me.LanguageCombo) + Me.PreviewPanel.Controls.Add(Me.Label13) + Me.PreviewPanel.Controls.Add(Me.CheckAlwaysTop) + Me.PreviewPanel.Controls.Add(Me.CheckMonospace) + Me.PreviewPanel.Controls.Add(Me.CheckBalloonLimit) + Me.PreviewPanel.Controls.Add(Me.Label10) + Me.PreviewPanel.Controls.Add(Me.ComboDispTitle) + Me.PreviewPanel.Controls.Add(Me.Label45) + Me.PreviewPanel.Controls.Add(Me.cmbNameBalloon) + Me.PreviewPanel.Controls.Add(Me.CheckDispUsername) + Me.PreviewPanel.Controls.Add(Me.CheckBox3) + resources.ApplyResources(Me.PreviewPanel, "PreviewPanel") + Me.PreviewPanel.Name = "PreviewPanel" + ' + 'ReplyIconStateCombo + ' + Me.ReplyIconStateCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ReplyIconStateCombo.FormattingEnabled = True + Me.ReplyIconStateCombo.Items.AddRange(New Object() {resources.GetString("ReplyIconStateCombo.Items"), resources.GetString("ReplyIconStateCombo.Items1"), resources.GetString("ReplyIconStateCombo.Items2")}) + resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") + Me.ReplyIconStateCombo.Name = "ReplyIconStateCombo" + ' + 'Label72 + ' + resources.ApplyResources(Me.Label72, "Label72") + Me.Label72.Name = "Label72" + ' + 'ChkNewMentionsBlink + ' + resources.ApplyResources(Me.ChkNewMentionsBlink, "ChkNewMentionsBlink") + Me.ChkNewMentionsBlink.Name = "ChkNewMentionsBlink" + Me.ChkNewMentionsBlink.UseVisualStyleBackColor = True + ' + 'chkTabIconDisp + ' + resources.ApplyResources(Me.chkTabIconDisp, "chkTabIconDisp") + Me.chkTabIconDisp.Name = "chkTabIconDisp" + Me.chkTabIconDisp.UseVisualStyleBackColor = True + ' + 'CheckPreviewEnable + ' + resources.ApplyResources(Me.CheckPreviewEnable, "CheckPreviewEnable") + Me.CheckPreviewEnable.Name = "CheckPreviewEnable" + Me.CheckPreviewEnable.UseVisualStyleBackColor = True + ' + 'Label81 + ' + resources.ApplyResources(Me.Label81, "Label81") + Me.Label81.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label81.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label81.Name = "Label81" + ' + 'LanguageCombo + ' + Me.LanguageCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.LanguageCombo.FormattingEnabled = True + Me.LanguageCombo.Items.AddRange(New Object() {resources.GetString("LanguageCombo.Items"), resources.GetString("LanguageCombo.Items1"), resources.GetString("LanguageCombo.Items2"), resources.GetString("LanguageCombo.Items3")}) + resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") + Me.LanguageCombo.Name = "LanguageCombo" + ' + 'Label13 + ' + resources.ApplyResources(Me.Label13, "Label13") + Me.Label13.Name = "Label13" + ' + 'CheckAlwaysTop + ' + resources.ApplyResources(Me.CheckAlwaysTop, "CheckAlwaysTop") + Me.CheckAlwaysTop.Name = "CheckAlwaysTop" + Me.CheckAlwaysTop.UseVisualStyleBackColor = True + ' + 'CheckMonospace + ' + resources.ApplyResources(Me.CheckMonospace, "CheckMonospace") + Me.CheckMonospace.Name = "CheckMonospace" + Me.CheckMonospace.UseVisualStyleBackColor = True + ' + 'CheckBalloonLimit + ' + resources.ApplyResources(Me.CheckBalloonLimit, "CheckBalloonLimit") + Me.CheckBalloonLimit.Name = "CheckBalloonLimit" + Me.CheckBalloonLimit.UseVisualStyleBackColor = True + ' + 'Label10 + ' + resources.ApplyResources(Me.Label10, "Label10") + Me.Label10.Name = "Label10" + ' + 'ComboDispTitle + ' + Me.ComboDispTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboDispTitle.FormattingEnabled = True + Me.ComboDispTitle.Items.AddRange(New Object() {resources.GetString("ComboDispTitle.Items"), resources.GetString("ComboDispTitle.Items1"), resources.GetString("ComboDispTitle.Items2"), resources.GetString("ComboDispTitle.Items3"), resources.GetString("ComboDispTitle.Items4"), resources.GetString("ComboDispTitle.Items5"), resources.GetString("ComboDispTitle.Items6"), resources.GetString("ComboDispTitle.Items7")}) + resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") + Me.ComboDispTitle.Name = "ComboDispTitle" + ' + 'Label45 + ' + resources.ApplyResources(Me.Label45, "Label45") + Me.Label45.Name = "Label45" + ' + 'cmbNameBalloon + ' + Me.cmbNameBalloon.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.cmbNameBalloon.FormattingEnabled = True + Me.cmbNameBalloon.Items.AddRange(New Object() {resources.GetString("cmbNameBalloon.Items"), resources.GetString("cmbNameBalloon.Items1"), resources.GetString("cmbNameBalloon.Items2")}) + resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") + Me.cmbNameBalloon.Name = "cmbNameBalloon" + ' + 'CheckDispUsername + ' + resources.ApplyResources(Me.CheckDispUsername, "CheckDispUsername") + Me.CheckDispUsername.Name = "CheckDispUsername" + Me.CheckDispUsername.UseVisualStyleBackColor = True + ' + 'CheckBox3 + ' + resources.ApplyResources(Me.CheckBox3, "CheckBox3") + Me.CheckBox3.Name = "CheckBox3" + Me.CheckBox3.UseVisualStyleBackColor = True + ' + 'TweetActPanel + ' + Me.TweetActPanel.BackColor = System.Drawing.SystemColors.Window + Me.TweetActPanel.Controls.Add(Me.TextBitlyPw) + Me.TweetActPanel.Controls.Add(Me.ComboBoxPostKeySelect) + Me.TweetActPanel.Controls.Add(Me.Label27) + Me.TweetActPanel.Controls.Add(Me.CheckRetweetNoConfirm) + Me.TweetActPanel.Controls.Add(Me.TextBitlyId) + Me.TweetActPanel.Controls.Add(Me.Label12) + Me.TweetActPanel.Controls.Add(Me.Label77) + Me.TweetActPanel.Controls.Add(Me.CheckUseRecommendStatus) + Me.TweetActPanel.Controls.Add(Me.Label76) + Me.TweetActPanel.Controls.Add(Me.StatusText) + Me.TweetActPanel.Controls.Add(Me.ComboBoxAutoShortUrlFirst) + Me.TweetActPanel.Controls.Add(Me.Label71) + Me.TweetActPanel.Controls.Add(Me.CheckTinyURL) + Me.TweetActPanel.Controls.Add(Me.CheckAutoConvertUrl) + resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") + Me.TweetActPanel.Name = "TweetActPanel" + ' + 'TextBitlyPw + ' + resources.ApplyResources(Me.TextBitlyPw, "TextBitlyPw") + Me.TextBitlyPw.Name = "TextBitlyPw" + ' + 'ComboBoxPostKeySelect + ' + Me.ComboBoxPostKeySelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboBoxPostKeySelect.FormattingEnabled = True + Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {resources.GetString("ComboBoxPostKeySelect.Items"), resources.GetString("ComboBoxPostKeySelect.Items1"), resources.GetString("ComboBoxPostKeySelect.Items2")}) + resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") + Me.ComboBoxPostKeySelect.Name = "ComboBoxPostKeySelect" + ' + 'Label27 + ' + resources.ApplyResources(Me.Label27, "Label27") + Me.Label27.Name = "Label27" + ' + 'CheckRetweetNoConfirm + ' + resources.ApplyResources(Me.CheckRetweetNoConfirm, "CheckRetweetNoConfirm") + Me.CheckRetweetNoConfirm.Name = "CheckRetweetNoConfirm" + Me.CheckRetweetNoConfirm.UseVisualStyleBackColor = True + ' + 'TextBitlyId + ' + resources.ApplyResources(Me.TextBitlyId, "TextBitlyId") + Me.TextBitlyId.Name = "TextBitlyId" + ' + 'Label12 + ' + resources.ApplyResources(Me.Label12, "Label12") + Me.Label12.Name = "Label12" + ' + 'Label77 + ' + resources.ApplyResources(Me.Label77, "Label77") + Me.Label77.Name = "Label77" + ' + 'CheckUseRecommendStatus + ' + resources.ApplyResources(Me.CheckUseRecommendStatus, "CheckUseRecommendStatus") + Me.CheckUseRecommendStatus.Name = "CheckUseRecommendStatus" + Me.CheckUseRecommendStatus.UseVisualStyleBackColor = True + ' + 'Label76 + ' + resources.ApplyResources(Me.Label76, "Label76") + Me.Label76.Name = "Label76" + ' + 'StatusText + ' + resources.ApplyResources(Me.StatusText, "StatusText") + Me.StatusText.Name = "StatusText" + ' + 'ComboBoxAutoShortUrlFirst + ' + Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True + Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4")}) + resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") + Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" + ' + 'Label71 + ' + resources.ApplyResources(Me.Label71, "Label71") + Me.Label71.Name = "Label71" + ' + 'CheckTinyURL + ' + resources.ApplyResources(Me.CheckTinyURL, "CheckTinyURL") + Me.CheckTinyURL.Name = "CheckTinyURL" + Me.CheckTinyURL.UseVisualStyleBackColor = True + ' + 'CheckAutoConvertUrl + ' + resources.ApplyResources(Me.CheckAutoConvertUrl, "CheckAutoConvertUrl") + Me.CheckAutoConvertUrl.Name = "CheckAutoConvertUrl" + Me.CheckAutoConvertUrl.UseVisualStyleBackColor = True + ' + 'FontPanel + ' + Me.FontPanel.Controls.Add(Me.GroupBox1) + resources.ApplyResources(Me.FontPanel, "FontPanel") + Me.FontPanel.Name = "FontPanel" + ' + 'GroupBox1 + ' + Me.GroupBox1.Controls.Add(Me.btnRetweet) + Me.GroupBox1.Controls.Add(Me.lblRetweet) + Me.GroupBox1.Controls.Add(Me.Label80) + Me.GroupBox1.Controls.Add(Me.ButtonBackToDefaultFontColor) + Me.GroupBox1.Controls.Add(Me.btnDetailLink) + Me.GroupBox1.Controls.Add(Me.lblDetailLink) + Me.GroupBox1.Controls.Add(Me.Label18) + Me.GroupBox1.Controls.Add(Me.btnUnread) + Me.GroupBox1.Controls.Add(Me.lblUnread) + Me.GroupBox1.Controls.Add(Me.Label20) + Me.GroupBox1.Controls.Add(Me.btnDetailBack) + Me.GroupBox1.Controls.Add(Me.lblDetailBackcolor) + Me.GroupBox1.Controls.Add(Me.Label37) + Me.GroupBox1.Controls.Add(Me.btnDetail) + Me.GroupBox1.Controls.Add(Me.lblDetail) + Me.GroupBox1.Controls.Add(Me.Label26) + Me.GroupBox1.Controls.Add(Me.btnOWL) + Me.GroupBox1.Controls.Add(Me.lblOWL) + Me.GroupBox1.Controls.Add(Me.Label24) + Me.GroupBox1.Controls.Add(Me.btnFav) + Me.GroupBox1.Controls.Add(Me.lblFav) + Me.GroupBox1.Controls.Add(Me.Label22) + Me.GroupBox1.Controls.Add(Me.btnListFont) + Me.GroupBox1.Controls.Add(Me.lblListFont) + Me.GroupBox1.Controls.Add(Me.Label61) + resources.ApplyResources(Me.GroupBox1, "GroupBox1") + Me.GroupBox1.Name = "GroupBox1" + Me.GroupBox1.TabStop = False + ' + 'btnRetweet + ' + resources.ApplyResources(Me.btnRetweet, "btnRetweet") + Me.btnRetweet.Name = "btnRetweet" + Me.btnRetweet.UseVisualStyleBackColor = True + ' + 'lblRetweet + ' + Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblRetweet, "lblRetweet") + Me.lblRetweet.Name = "lblRetweet" + ' + 'Label80 + ' + resources.ApplyResources(Me.Label80, "Label80") + Me.Label80.Name = "Label80" + ' + 'ButtonBackToDefaultFontColor + ' + resources.ApplyResources(Me.ButtonBackToDefaultFontColor, "ButtonBackToDefaultFontColor") + Me.ButtonBackToDefaultFontColor.Name = "ButtonBackToDefaultFontColor" + Me.ButtonBackToDefaultFontColor.UseVisualStyleBackColor = True + ' + 'btnDetailLink + ' + resources.ApplyResources(Me.btnDetailLink, "btnDetailLink") + Me.btnDetailLink.Name = "btnDetailLink" + Me.btnDetailLink.UseVisualStyleBackColor = True + ' + 'lblDetailLink + ' + Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") + Me.lblDetailLink.Name = "lblDetailLink" + ' + 'Label18 + ' + resources.ApplyResources(Me.Label18, "Label18") + Me.Label18.Name = "Label18" + ' + 'btnUnread + ' + resources.ApplyResources(Me.btnUnread, "btnUnread") + Me.btnUnread.Name = "btnUnread" + Me.btnUnread.UseVisualStyleBackColor = True + ' + 'lblUnread + ' + Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblUnread, "lblUnread") + Me.lblUnread.Name = "lblUnread" + ' + 'Label20 + ' + resources.ApplyResources(Me.Label20, "Label20") + Me.Label20.Name = "Label20" + ' + 'btnDetailBack + ' + resources.ApplyResources(Me.btnDetailBack, "btnDetailBack") + Me.btnDetailBack.Name = "btnDetailBack" + Me.btnDetailBack.UseVisualStyleBackColor = True + ' + 'lblDetailBackcolor + ' + Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") + Me.lblDetailBackcolor.Name = "lblDetailBackcolor" + ' + 'Label37 + ' + resources.ApplyResources(Me.Label37, "Label37") + Me.Label37.Name = "Label37" + ' + 'btnDetail + ' + resources.ApplyResources(Me.btnDetail, "btnDetail") + Me.btnDetail.Name = "btnDetail" + Me.btnDetail.UseVisualStyleBackColor = True + ' + 'lblDetail + ' + Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblDetail, "lblDetail") + Me.lblDetail.Name = "lblDetail" + ' + 'Label26 + ' + resources.ApplyResources(Me.Label26, "Label26") + Me.Label26.Name = "Label26" + ' + 'btnOWL + ' + resources.ApplyResources(Me.btnOWL, "btnOWL") + Me.btnOWL.Name = "btnOWL" + Me.btnOWL.UseVisualStyleBackColor = True + ' + 'lblOWL + ' + Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblOWL, "lblOWL") + Me.lblOWL.Name = "lblOWL" + ' + 'Label24 + ' + resources.ApplyResources(Me.Label24, "Label24") + Me.Label24.Name = "Label24" + ' + 'btnFav + ' + resources.ApplyResources(Me.btnFav, "btnFav") + Me.btnFav.Name = "btnFav" + Me.btnFav.UseVisualStyleBackColor = True + ' + 'lblFav + ' + Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblFav, "lblFav") + Me.lblFav.Name = "lblFav" + ' + 'Label22 + ' + resources.ApplyResources(Me.Label22, "Label22") + Me.Label22.Name = "Label22" + ' + 'btnListFont + ' + resources.ApplyResources(Me.btnListFont, "btnListFont") + Me.btnListFont.Name = "btnListFont" + Me.btnListFont.UseVisualStyleBackColor = True + ' + 'lblListFont + ' + Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblListFont, "lblListFont") + Me.lblListFont.Name = "lblListFont" + ' + 'Label61 + ' + resources.ApplyResources(Me.Label61, "Label61") + Me.Label61.Name = "Label61" + ' + 'Cancel + ' + Me.Cancel.CausesValidation = False + Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel + resources.ApplyResources(Me.Cancel, "Cancel") + Me.Cancel.Name = "Cancel" + Me.Cancel.UseVisualStyleBackColor = True + ' + 'Save + ' + Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK + resources.ApplyResources(Me.Save, "Save") + Me.Save.Name = "Save" + Me.Save.UseVisualStyleBackColor = True + ' + 'AppendSettingDialog + ' + Me.AcceptButton = Me.Save + resources.ApplyResources(Me, "$this") + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.CancelButton = Me.Cancel + Me.Controls.Add(Me.Cancel) + Me.Controls.Add(Me.Save) + Me.Controls.Add(Me.SplitContainer1) + Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D + Me.MaximizeBox = False + Me.MinimizeBox = False + Me.Name = "AppendSettingDialog" + Me.ShowIcon = False + Me.ShowInTaskbar = False + Me.TopMost = True + Me.SplitContainer1.Panel1.ResumeLayout(False) + Me.SplitContainer1.Panel2.ResumeLayout(False) + CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit() + Me.SplitContainer1.ResumeLayout(False) + Me.GetPeriodPanel.ResumeLayout(False) + Me.GetPeriodPanel.PerformLayout() + Me.GetCountPanel.ResumeLayout(False) + Me.GetCountPanel.PerformLayout() + Me.FontPanel2.ResumeLayout(False) + Me.GroupBox5.ResumeLayout(False) + Me.GroupBox5.PerformLayout() + Me.BasedPanel.ResumeLayout(False) + Me.BasedPanel.PerformLayout() + Me.ProxyPanel.ResumeLayout(False) + Me.ProxyPanel.PerformLayout() + Me.ConnectionPanel.ResumeLayout(False) + Me.ConnectionPanel.PerformLayout() + Me.UserStreamPanel.ResumeLayout(False) + Me.UserStreamPanel.PerformLayout() + Me.StartupPanel.ResumeLayout(False) + Me.StartupPanel.PerformLayout() + Me.TweetPrvPanel.ResumeLayout(False) + Me.TweetPrvPanel.PerformLayout() + Me.ActionPanel.ResumeLayout(False) + Me.ActionPanel.PerformLayout() + Me.GroupBox3.ResumeLayout(False) + Me.GroupBox3.PerformLayout() + Me.PreviewPanel.ResumeLayout(False) + Me.PreviewPanel.PerformLayout() + Me.TweetActPanel.ResumeLayout(False) + Me.TweetActPanel.PerformLayout() + Me.FontPanel.ResumeLayout(False) + Me.GroupBox1.ResumeLayout(False) + Me.GroupBox1.PerformLayout() + Me.ResumeLayout(False) + + End Sub + Friend WithEvents SplitContainer1 As System.Windows.Forms.SplitContainer + Friend WithEvents TreeView1 As System.Windows.Forms.TreeView + Friend WithEvents BasedPanel As System.Windows.Forms.Panel + Friend WithEvents AuthBasicRadio As System.Windows.Forms.RadioButton + Friend WithEvents AuthOAuthRadio As System.Windows.Forms.RadioButton + Friend WithEvents Label6 As System.Windows.Forms.Label + Friend WithEvents AuthClearButton As System.Windows.Forms.Button + Friend WithEvents AuthUserLabel As System.Windows.Forms.Label + Friend WithEvents AuthStateLabel As System.Windows.Forms.Label + Friend WithEvents Label4 As System.Windows.Forms.Label + Friend WithEvents AuthorizeButton As System.Windows.Forms.Button + Friend WithEvents Label1 As System.Windows.Forms.Label + Friend WithEvents Label2 As System.Windows.Forms.Label + Friend WithEvents Username As System.Windows.Forms.TextBox + Friend WithEvents Password As System.Windows.Forms.TextBox + Friend WithEvents GetPeriodPanel As System.Windows.Forms.Panel + Friend WithEvents TimelinePeriod As System.Windows.Forms.TextBox + Friend WithEvents Label3 As System.Windows.Forms.Label + Friend WithEvents ButtonApiCalc As System.Windows.Forms.Button + Friend WithEvents LabelPostAndGet As System.Windows.Forms.Label + Friend WithEvents LabelApiUsing As System.Windows.Forms.Label + Friend WithEvents Label33 As System.Windows.Forms.Label + Friend WithEvents ListsPeriod As System.Windows.Forms.TextBox + Friend WithEvents Label7 As System.Windows.Forms.Label + Friend WithEvents PubSearchPeriod As System.Windows.Forms.TextBox + Friend WithEvents Label69 As System.Windows.Forms.Label + Friend WithEvents ReplyPeriod As System.Windows.Forms.TextBox + Friend WithEvents CheckPostAndGet As System.Windows.Forms.CheckBox + Friend WithEvents CheckPeriodAdjust As System.Windows.Forms.CheckBox + Friend WithEvents Label5 As System.Windows.Forms.Label + Friend WithEvents DMPeriod As System.Windows.Forms.TextBox + Friend WithEvents StartupPanel As System.Windows.Forms.Panel + Friend WithEvents GetCountPanel As System.Windows.Forms.Panel + Friend WithEvents StartupReaded As System.Windows.Forms.CheckBox + Friend WithEvents CheckStartupFollowers As System.Windows.Forms.CheckBox + Friend WithEvents CheckStartupVersion As System.Windows.Forms.CheckBox + Friend WithEvents chkGetFav As System.Windows.Forms.CheckBox + Friend WithEvents TextCountApiReply As System.Windows.Forms.TextBox + Friend WithEvents Label67 As System.Windows.Forms.Label + Friend WithEvents TextCountApi As System.Windows.Forms.TextBox + Friend WithEvents FavoritesTextCountApi As System.Windows.Forms.TextBox + Friend WithEvents SearchTextCountApi As System.Windows.Forms.TextBox + Friend WithEvents Label66 As System.Windows.Forms.Label + Friend WithEvents FirstTextCountApi As System.Windows.Forms.TextBox + Friend WithEvents GetMoreTextCountApi As System.Windows.Forms.TextBox + Friend WithEvents Label53 As System.Windows.Forms.Label + Friend WithEvents UseChangeGetCount As System.Windows.Forms.CheckBox + Friend WithEvents ActionPanel As System.Windows.Forms.Panel + Friend WithEvents PreviewPanel As System.Windows.Forms.Panel + Friend WithEvents FontPanel As System.Windows.Forms.Panel + Friend WithEvents ConnectionPanel As System.Windows.Forms.Panel + Friend WithEvents ProxyPanel As System.Windows.Forms.Panel + Friend WithEvents ComboBoxPostKeySelect As System.Windows.Forms.ComboBox + Friend WithEvents CheckRetweetNoConfirm As System.Windows.Forms.CheckBox + Friend WithEvents GroupBox3 As System.Windows.Forms.GroupBox + Friend WithEvents HotkeyCheck As System.Windows.Forms.CheckBox + Friend WithEvents HotkeyCode As System.Windows.Forms.Label + Friend WithEvents HotkeyText As System.Windows.Forms.TextBox + Friend WithEvents HotkeyWin As System.Windows.Forms.CheckBox + Friend WithEvents HotkeyAlt As System.Windows.Forms.CheckBox + Friend WithEvents HotkeyShift As System.Windows.Forms.CheckBox + Friend WithEvents HotkeyCtrl As System.Windows.Forms.CheckBox + Friend WithEvents CheckHashSupple As System.Windows.Forms.CheckBox + Friend WithEvents CheckAtIdSupple As System.Windows.Forms.CheckBox + Friend WithEvents Label77 As System.Windows.Forms.Label + Friend WithEvents TextBitlyId As System.Windows.Forms.TextBox + Friend WithEvents Label76 As System.Windows.Forms.Label + Friend WithEvents ComboBoxAutoShortUrlFirst As System.Windows.Forms.ComboBox + Friend WithEvents Label71 As System.Windows.Forms.Label + Friend WithEvents CheckAutoConvertUrl As System.Windows.Forms.CheckBox + Friend WithEvents Label57 As System.Windows.Forms.Label + Friend WithEvents CheckFavRestrict As System.Windows.Forms.CheckBox + Friend WithEvents CheckTinyURL As System.Windows.Forms.CheckBox + Friend WithEvents Button3 As System.Windows.Forms.Button + Friend WithEvents PlaySnd As System.Windows.Forms.CheckBox + Friend WithEvents Label15 As System.Windows.Forms.Label + Friend WithEvents BrowserPathText As System.Windows.Forms.TextBox + Friend WithEvents UReadMng As System.Windows.Forms.CheckBox + Friend WithEvents Label44 As System.Windows.Forms.Label + Friend WithEvents CheckCloseToExit As System.Windows.Forms.CheckBox + Friend WithEvents CheckMinimizeToTray As System.Windows.Forms.CheckBox + Friend WithEvents Label27 As System.Windows.Forms.Label + Friend WithEvents CheckReadOldPosts As System.Windows.Forms.CheckBox + Friend WithEvents Label12 As System.Windows.Forms.Label + Friend WithEvents StatusText As System.Windows.Forms.TextBox + Friend WithEvents CheckUseRecommendStatus As System.Windows.Forms.CheckBox + Friend WithEvents TweetActPanel As System.Windows.Forms.Panel + Friend WithEvents CheckPreviewEnable As System.Windows.Forms.CheckBox + Friend WithEvents Label81 As System.Windows.Forms.Label + Friend WithEvents LanguageCombo As System.Windows.Forms.ComboBox + Friend WithEvents Label13 As System.Windows.Forms.Label + Friend WithEvents CheckAlwaysTop As System.Windows.Forms.CheckBox + Friend WithEvents CheckMonospace As System.Windows.Forms.CheckBox + Friend WithEvents CheckBalloonLimit As System.Windows.Forms.CheckBox + Friend WithEvents Label10 As System.Windows.Forms.Label + Friend WithEvents ComboDispTitle As System.Windows.Forms.ComboBox + Friend WithEvents Label45 As System.Windows.Forms.Label + Friend WithEvents cmbNameBalloon As System.Windows.Forms.ComboBox + Friend WithEvents CheckDispUsername As System.Windows.Forms.CheckBox + Friend WithEvents CheckBox3 As System.Windows.Forms.CheckBox + Friend WithEvents TweetPrvPanel As System.Windows.Forms.Panel + Friend WithEvents CheckSortOrderLock As System.Windows.Forms.CheckBox + Friend WithEvents CheckShowGrid As System.Windows.Forms.CheckBox + Friend WithEvents chkReadOwnPost As System.Windows.Forms.CheckBox + Friend WithEvents chkUnreadStyle As System.Windows.Forms.CheckBox + Friend WithEvents OneWayLv As System.Windows.Forms.CheckBox + Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox + Friend WithEvents btnRetweet As System.Windows.Forms.Button + Friend WithEvents lblRetweet As System.Windows.Forms.Label + Friend WithEvents Label80 As System.Windows.Forms.Label + Friend WithEvents ButtonBackToDefaultFontColor As System.Windows.Forms.Button + Friend WithEvents btnDetailLink As System.Windows.Forms.Button + Friend WithEvents lblDetailLink As System.Windows.Forms.Label + Friend WithEvents Label18 As System.Windows.Forms.Label + Friend WithEvents btnUnread As System.Windows.Forms.Button + Friend WithEvents lblUnread As System.Windows.Forms.Label + Friend WithEvents Label20 As System.Windows.Forms.Label + Friend WithEvents btnDetailBack As System.Windows.Forms.Button + Friend WithEvents lblDetailBackcolor As System.Windows.Forms.Label + Friend WithEvents Label37 As System.Windows.Forms.Label + Friend WithEvents btnDetail As System.Windows.Forms.Button + Friend WithEvents lblDetail As System.Windows.Forms.Label + Friend WithEvents Label26 As System.Windows.Forms.Label + Friend WithEvents btnOWL As System.Windows.Forms.Button + Friend WithEvents lblOWL As System.Windows.Forms.Label + Friend WithEvents Label24 As System.Windows.Forms.Label + Friend WithEvents btnFav As System.Windows.Forms.Button + Friend WithEvents lblFav As System.Windows.Forms.Label + Friend WithEvents Label22 As System.Windows.Forms.Label + Friend WithEvents btnListFont As System.Windows.Forms.Button + Friend WithEvents lblListFont As System.Windows.Forms.Label + Friend WithEvents Label61 As System.Windows.Forms.Label + Friend WithEvents FontDialog1 As System.Windows.Forms.FontDialog + Friend WithEvents ColorDialog1 As System.Windows.Forms.ColorDialog + Friend WithEvents CheckEnableBasicAuth As System.Windows.Forms.CheckBox + Friend WithEvents TwitterSearchAPIText As System.Windows.Forms.TextBox + Friend WithEvents Label31 As System.Windows.Forms.Label + Friend WithEvents TwitterAPIText As System.Windows.Forms.TextBox + Friend WithEvents Label8 As System.Windows.Forms.Label + Friend WithEvents CheckUseSsl As System.Windows.Forms.CheckBox + Friend WithEvents Label64 As System.Windows.Forms.Label + Friend WithEvents ConnectionTimeOut As System.Windows.Forms.TextBox + Friend WithEvents Label63 As System.Windows.Forms.Label + Friend WithEvents Label55 As System.Windows.Forms.Label + Friend WithEvents TextProxyPassword As System.Windows.Forms.TextBox + Friend WithEvents LabelProxyPassword As System.Windows.Forms.Label + Friend WithEvents TextProxyUser As System.Windows.Forms.TextBox + Friend WithEvents LabelProxyUser As System.Windows.Forms.Label + Friend WithEvents TextProxyPort As System.Windows.Forms.TextBox + Friend WithEvents LabelProxyPort As System.Windows.Forms.Label + Friend WithEvents TextProxyAddress As System.Windows.Forms.TextBox + Friend WithEvents LabelProxyAddress As System.Windows.Forms.Label + Friend WithEvents RadioProxySpecified As System.Windows.Forms.RadioButton + Friend WithEvents RadioProxyIE As System.Windows.Forms.RadioButton + Friend WithEvents RadioProxyNone As System.Windows.Forms.RadioButton + Friend WithEvents FontPanel2 As System.Windows.Forms.Panel + Friend WithEvents CheckNicoms As System.Windows.Forms.CheckBox + Friend WithEvents Label60 As System.Windows.Forms.Label + Friend WithEvents ComboBoxOutputzUrlmode As System.Windows.Forms.ComboBox + Friend WithEvents Label59 As System.Windows.Forms.Label + Friend WithEvents TextBoxOutputzKey As System.Windows.Forms.TextBox + Friend WithEvents CheckOutputz As System.Windows.Forms.CheckBox + Friend WithEvents GroupBox5 As System.Windows.Forms.GroupBox + Friend WithEvents ButtonBackToDefaultFontColor2 As System.Windows.Forms.Button + Friend WithEvents Cancel As System.Windows.Forms.Button + Friend WithEvents Save As System.Windows.Forms.Button + Friend WithEvents TextBitlyPw As System.Windows.Forms.TextBox + Friend WithEvents lblInputFont As System.Windows.Forms.Label + Friend WithEvents lblInputBackcolor As System.Windows.Forms.Label + Friend WithEvents lblAtTo As System.Windows.Forms.Label + Friend WithEvents lblListBackcolor As System.Windows.Forms.Label + Friend WithEvents lblAtFromTarget As System.Windows.Forms.Label + Friend WithEvents lblAtTarget As System.Windows.Forms.Label + Friend WithEvents lblTarget As System.Windows.Forms.Label + Friend WithEvents lblAtSelf As System.Windows.Forms.Label + Friend WithEvents lblSelf As System.Windows.Forms.Label + Friend WithEvents btnInputFont As System.Windows.Forms.Button + Friend WithEvents btnInputBackcolor As System.Windows.Forms.Button + Friend WithEvents btnAtTo As System.Windows.Forms.Button + Friend WithEvents btnListBack As System.Windows.Forms.Button + Friend WithEvents btnAtFromTarget As System.Windows.Forms.Button + Friend WithEvents btnAtTarget As System.Windows.Forms.Button + Friend WithEvents btnTarget As System.Windows.Forms.Button + Friend WithEvents btnAtSelf As System.Windows.Forms.Button + Friend WithEvents btnSelf As System.Windows.Forms.Button + Friend WithEvents Label30 As System.Windows.Forms.Label + Friend WithEvents Label28 As System.Windows.Forms.Label + Friend WithEvents Label19 As System.Windows.Forms.Label + Friend WithEvents Label47 As System.Windows.Forms.Label + Friend WithEvents LabelDateTimeFormatApplied As System.Windows.Forms.Label + Friend WithEvents Label62 As System.Windows.Forms.Label + Friend WithEvents CmbDateTimeFormat As System.Windows.Forms.ComboBox + Friend WithEvents Label23 As System.Windows.Forms.Label + Friend WithEvents Label11 As System.Windows.Forms.Label + Friend WithEvents IconSize As System.Windows.Forms.ComboBox + Friend WithEvents TextBox3 As System.Windows.Forms.TextBox + Friend WithEvents ReplyIconStateCombo As System.Windows.Forms.ComboBox + Friend WithEvents Label72 As System.Windows.Forms.Label + Friend WithEvents ChkNewMentionsBlink As System.Windows.Forms.CheckBox + Friend WithEvents chkTabIconDisp As System.Windows.Forms.CheckBox + Friend WithEvents UserStreamPanel As System.Windows.Forms.Panel + Friend WithEvents UserstreamPeriod As System.Windows.Forms.TextBox + Friend WithEvents StartupUserstreamCheck As System.Windows.Forms.CheckBox + Friend WithEvents Label83 As System.Windows.Forms.Label + Friend WithEvents Label65 As System.Windows.Forms.Label + Friend WithEvents Label52 As System.Windows.Forms.Label + Friend WithEvents Label49 As System.Windows.Forms.Label + Friend WithEvents Label9 As System.Windows.Forms.Label + Friend WithEvents Label14 As System.Windows.Forms.Label + Friend WithEvents Label16 As System.Windows.Forms.Label + Friend WithEvents Label32 As System.Windows.Forms.Label + Friend WithEvents Label34 As System.Windows.Forms.Label + Friend WithEvents Label36 As System.Windows.Forms.Label +End Class Copied: trunk/Tween/AppendSettingDialog.en.resx (from rev 1230, branches/SettingDialog/Tween/AppendSettingDialog.en.resx) =================================================================== --- trunk/Tween/AppendSettingDialog.en.resx (rev 0) +++ trunk/Tween/AppendSettingDialog.en.resx 2010-12-20 13:02:09 UTC (rev 1231) @@ -0,0 +1,1008 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + 56, 12 + + + Username + + + 54, 12 + + + Password + + + Cancel + + + 170, 12 + + + Timeline Fetching Interval (sec.) + + + 144, 12 + + + DM Fetching Interval (sec.) + + + 135, 12 + + + First-time Reading Posts + + + 81, 16 + + + Make Read + + + 162, 12 + + + Icon size in List (16 in default) + + + 38, 12 + + + Footer + + + 58, 16 + + + Enable + + + 42, 12 + + + Sounds + + + Sounds will play when you enable this option and set sound file for each tabs. + + + 58, 16 + + + Enable + + + 145, 12 + + + Colorize One-way following + + + Fore... + + + 96, 22 + + + Back to Default + + + Fore... + + + 119, 12 + + + Details of Tweet(Link) + + + Font... + + + 97, 12 + + + Font of input field + + + Back... + + + 169, 12 + + + Backcolor of focused input field + + + Font&&Fore... + + + 76, 12 + + + Unread Tweet + + + Back... + + + 78, 12 + + + Replied Tweet + + + Back... + + + 110, 12 + + + Backcolor of Details + + + Back... + + + 90, 12 + + + Backcolor of list + + + Back... + + + 114, 12 + + + Replied User's Tweet + + + Back... + + + 137, 12 + + + Replies for Selected User + + + Back... + + + 120, 12 + + + Selected User's Tweet + + + Back... + + + 84, 12 + + + Replies for You + + + Back... + + + 89, 12 + + + Your Own Tweet + + + Font&&Fore... + + + 90, 12 + + + Details of Tweet + + + Fore... + + + 100, 12 + + + One-way following + + + Fore... + + + 53, 12 + + + Favorited + + + Font&&Fore... + + + 94, 12 + + + Font of tweet list + + + Font && Color + + + None + + + User ID + + + Nickname + + + 103, 12 + + + Username in popup + + + 188, 16 + + + Use Recommended [TWNvNNN] + + + 105, 12 + + + Date Format in List + + + 58, 16 + + + Enable + + + 139, 12 + + + Show Icon in Details Pane + + + 117, 12 + + + Tweet with Ctrl-Enter + + + None + + + 89, 12 + + + Manage Reading + + + 58, 16 + + + Enable + + + 136, 12 + + + Make Read when updated + + + 58, 16 + + + Enable + + + 136, 12 + + + Exit when Closed Window + + + 58, 16 + + + Enable + + + 118, 12 + + + Iconize when Minimize + + + 58, 16 + + + Enable + + + 88, 12 + + + Path to Browser + + + 58, 16 + + + Enable + + + 141, 12 + + + Show Username in Popups + + + 65, 12 + + + Title format + + + None + + + Program Version + + + Latest your post + + + unread @reply items + + + unread items + + + unread items(unread @reply items) + + + unread items/all items + + + Count of Status/Follow/Follower + + + 115, 12 + + + Apply after restarting + + + 117, 12 + + + Refresh Interval (sec) + + + 130, 12 + + + Auto connect in Starting + + + 58, 16 + + + Enable + + + Recalculation + + + 358, 12 + + + Because "Post && fetch" is enabled, the API for each post consumed. + + + 150, 12 + + + Lists Fetching Interval (sec) + + + 70, 12 + + + Auth method + + + Clear + + + 65, 12 + + + Auth status + + + Auth + + + 149, 12 + + + Public Search Interval (sec.) + + + 156, 12 + + + Reply Fetching Interval (sec.) + + + 88, 16 + + + Post && fetch + + + 226, 12 + + + Getting number of tweets/mentions in API + + + 131, 12 + + + Get User List in Starting + + + 58, 16 + + + Enable + + + 158, 12 + + + Check for Updates in Starting + + + 58, 16 + + + Enable + + + 150, 16 + + + Enable Auto-Adjustment + + + 106, 12 + + + Get favs in Starting + + + 58, 16 + + + Enable + + + Basic + + + 62, 16 + + + Disable + + + 89, 12 + + + Retweet confirm + + + 58, 16 + + + Enable + + + Hotkey + + + 11, 439 + + + 142, 12 + + + Use Input #tag supplement + + + 173, 438 + + + 58, 16 + + + Enable + + + 11, 421 + + + 139, 12 + + + Use Input @ID supplement + + + 173, 420 + + + 58, 16 + + + Enable + + + 149, 12 + + + Primary URLshorten service + + + 58, 16 + + + Enable + + + 103, 12 + + + Auto shorten URLs + + + + False + + + + NoControl + + + 382, 28 + + + Refetch tweets and verify whether marked favorites. This option causes traffic incleasement. + + + 138, 12 + + + Marking Favorites Strictly + + + 58, 16 + + + Enable + + + 58, 16 + + + Enable + + + 136, 12 + + + Resolve Shortening URLs + + + Open... + + + Behavior + + + 124, 12 + + + Disp Picture Thumbnail + + + 58, 16 + + + Enable + + + 58, 16 + + + Enable + + + 81, 12 + + + Always on Top + + + 101, 12 + + + Lock Sorting Order + + + 58, 16 + + + Enable + + + 57, 12 + + + Show Grid + + + 51, 16 + + + Show + + + 150, 12 + + + Font in Detail Pane(for AA) + + + 81, 16 + + + Monospace + + + 81, 12 + + + Read own post + + + 58, 16 + + + Enable + + + Don't notify + + + Change icon + + + Change icon&blink + + + 188, 12 + + + Tasktray icon with unread mentions + + + 130, 12 + + + Blink with new mentions + + + 90, 12 + + + Show icon in tab + + + 58, 16 + + + Enable + + + 51, 16 + + + Show + + + 148, 12 + + + Limit the condition of popup + + + 193, 16 + + + only at the minimization and icon + + + 162, 12 + + + Unread styles(Font&&Forecolor) + + + 58, 16 + + + Enable + + + View + + + Fonts & Colors + + + 241, 16 + + + Enable to select BASIC auth in 'Basic' tab + + + 130, 16 + + + Use HTTPS Protocol + + + 371, 12 + + + ※Adjust Connection timeout if the error of timeout happens frequently. + + + 130, 12 + + + Connection timeout(sec) + + + 320, 12 + + + Keep credential empty if the proxy server don't need to log in + + + 54, 12 + + + Pass&word + + + 56, 12 + + + &Username + + + 26, 12 + + + &Port + + + 62, 12 + + + Pro&xy Host + + + 80, 16 + + + Use Below: + + + 200, 16 + + + Refer Settings of Internet Explorer + + + 73, 16 + + + Don't Use + + + Proxy Server + + + Connection + + + 125, 12 + + + Favorites/PublicSearch + + + 98, 12 + + + Get more/Starting + + + 188, 16 + + + Enable to edit 'Count' parameter + + + 196, 16 + + + Shorten nicovideo urls by nico.ms + + + 107, 12 + + + URI of your Outputz + + + 86, 12 + + + Your secret key + + + 87, 16 + + + Use Outputz + + + Settings + + \ No newline at end of file Copied: trunk/Tween/AppendSettingDialog.resx (from rev 1230, branches/SettingDialog/Tween/AppendSettingDialog.resx) =================================================================== --- trunk/Tween/AppendSettingDialog.resx (rev 0) +++ trunk/Tween/AppendSettingDialog.resx 2010-12-20 13:02:09 UTC (rev 1231) @@ -0,0 +1,6364 @@ +? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + Top + + + + 0, 0 + + + Fill + + + 0, 0 + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQwAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wCWNoaWxkcmVuMQljaGlsZHJlbjIJY2hpbGRyZW4zAQEAAAEAAQAEBAQEAQgICB1TeXN0ZW0u + V2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUCAAAA + HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlAgAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVl + Tm9kZQIAAAACAAAABgMAAAAG5Z+65pysBgQAAAAJQmFzZWROb2RlAP////8GBQAAAAD/////CQUAAAAE + AAAACQYAAAAJBwAAAAkIAAAACQkAAAAFBgAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgA + AAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRl + eBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAABgoAAAAM5pu05paw6ZaT + 6ZqUBgsAAAAKUGVyaW9kTm9kZQD/////CQUAAAD/////CQUAAAAAAAAABQcAAAAdU3lzdGVtLldpbmRv + d3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtl + eRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgI + AgAAAAYNAAAAEui1t+WLleaZguOBruWLleS9nAYOAAAAC1N0YXJ0VXBOb2RlAP////8JBQAAAP////8J + BQAAAAAAAAAFCAAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlz + Q2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdl + S2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAABhAAAAAM5Y+W5b6X5Lu25pWwBhEAAAAMR2V0Q291 + bnROb2RlAP////8JBQAAAP////8JBQAAAAAAAAAFCQAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVl + Tm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1h + Z2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAABhMAAAAKVXNl + clN0cmVhbQYUAAAADlVzZXJTdHJlYW1Ob2RlAP////8JBQAAAP////8JBQAAAAAAAAAL + + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG5YuV5L2cBgQAAAAKQWN0aW9uTm9kZQD/////BgUAAAAA/////wkFAAAAAQAAAAkGAAAABQYAAAAd + U3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJ + bmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50 + AQEAAAEAAQABCAgIAgAAAAYHAAAAFeODhOOCpOODvOODiOOBruWLleS9nAYIAAAADFR3ZWV0QWN0Tm9k + ZQD/////CQUAAAD/////CQUAAAAAAAAACw== + + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG6KGo56S6BgQAAAALUHJldmlld05vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUGAAAA + HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdl + SW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3Vu + dAEBAAABAAEAAQgICAIAAAAGBwAAABLjg6rjgrnjg4jjga7ooajnpLoGCAAAAAxUd2VldFBydk5vZGUA + /////wkFAAAA/////wkFAAAAAAAAAAs= + + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAM44OV44Kp44Oz44OIBgQAAAAIRm9udE5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG + AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt + YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD + b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAA3jg5Xjgqnjg7Pjg4gyBggAAAAJRm9udE5vZGUyAP////8J + BQAAAP////8JBQAAAAAAAAAL + + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG6YCa5L+hBgQAAAAOQ29ubmVjdGlvbk5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG + AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt + YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD + b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAAzjg5fjg63jgq3jgrcGCAAAAAlQcm94eU5vZGUA/////wkF + AAAA/////wkFAAAAAAAAAAs= + + + + 172, 368 + + + + 0 + + + TreeView1 + + + System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel1 + + + 0 + + + SplitContainer1.Panel1 + + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1 + + + 0 + + + 343, 94 + + + 70, 19 + + + 69 + + + TextBitlyPw + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 0 + + + Enter + + + Ctrl+Enter + + + Shift+Enter + + + 181, 136 + + + 246, 20 + + + 60 + + + ComboBoxPostKeySelect + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 1 + + + True + + + NoControl + + + 19, 139 + + + 137, 12 + + + 59 + + + POSTキー(デフォルトEnter) + + + Label27 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 2 + + + True + + + NoControl + + + 21, 163 + + + 165, 16 + + + 62 + + + 公式RTする際に確認をしない + + + CheckRetweetNoConfirm + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 3 + + + 201, 95 + + + 71, 19 + + + 57 + + + TextBitlyId + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 4 + + + True + + + NoControl + + + 20, 211 + + + 107, 12 + + + 66 + + + フッター(文末に付加) + + + Label12 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 5 + + + True + + + NoControl + + + 278, 97 + + + 42, 12 + + + 58 + + + APIKey + + + Label77 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 6 + + + True + + + NoControl + + + 182, 211 + + + 195, 16 + + + 67 + + + 推奨フッターを使用する[TWNv○○] + + + CheckUseRecommendStatus + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 7 + + + True + + + NoControl + + + 179, 97 + + + 16, 12 + + + 56 + + + ID + + + Label76 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 8 + + + 182, 233 + + + 232, 19 + + + 68 + + + StatusText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 9 + + + tinyurl + + + is.gd + + + twurl.nl + + + bit.ly + + + j.mp + + + 181, 71 + + + 246, 20 + + + 55 + + + ComboBoxAutoShortUrlFirst + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 10 + + + True + + + NoControl + + + 19, 74 + + + 154, 12 + + + 54 + + + URL自動短縮で優先的に使用 + + + Label71 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 11 + + + True + + + NoControl + + + 22, 21 + + + 122, 16 + + + 51 + + + 短縮URLを解決する + + + CheckTinyURL + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 12 + + + True + + + NoControl + + + 22, 42 + + + 242, 16 + + + 53 + + + 入力欄のURLを投稿する際に自動で短縮する + + + CheckAutoConvertUrl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + + 13 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 77 + + + False + + + TweetActPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 0 + + + True + + + NoControl + + + 396, 119 + + + 75, 22 + + + 14 + + + 文字色 + + + btnRetweet + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 0 + + + NoControl + + + 214, 120 + + + 104, 19 + + + 13 + + + This is sample. + + + MiddleLeft + + + lblRetweet + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 1 + + + True + + + NoControl + + + 9, 123 + + + 50, 12 + + + 12 + + + ReTweet + + + Label80 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 2 + + + True + + + NoControl + + + 194, 236 + + + 90, 22 + + + 51 + + + デフォルトに戻す + + + ButtonBackToDefaultFontColor + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 3 + + + True + + + NoControl + + + 396, 169 + + + 75, 22 + + + 20 + + + 文字色 + + + btnDetailLink + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 4 + + + NoControl + + + 214, 170 + + + 104, 19 + + + 19 + + + This is sample. + + + MiddleLeft + + + lblDetailLink + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 5 + + + True + + + NoControl + + + 8, 173 + + + 77, 12 + + + 18 + + + 発言詳細リンク + + + Label18 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 6 + + + True + + + NoControl + + + 396, 44 + + + 75, 22 + + + 5 + + + フォント&&色 + + + btnUnread + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 7 + + + NoControl + + + 214, 45 + + + 104, 19 + + + 4 + + + This is sample. + + + MiddleLeft + + + lblUnread + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 8 + + + True + + + NoControl + + + 9, 48 + + + 62, 12 + + + 3 + + + 未読フォント + + + Label20 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 9 + + + True + + + NoControl + + + 396, 194 + + + 75, 22 + + + 23 + + + 背景色 + + + btnDetailBack + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 10 + + + NoControl + + + 214, 195 + + + 104, 19 + + + 22 + + + This is sample. + + + MiddleLeft + + + lblDetailBackcolor + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 11 + + + True + + + NoControl + + + 9, 198 + + + 89, 12 + + + 21 + + + 発言詳細背景色 + + + Label37 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 12 + + + True + + + NoControl + + + 396, 144 + + + 75, 22 + + + 17 + + + フォント&&色 + + + btnDetail + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 13 + + + NoControl + + + 214, 145 + + + 104, 19 + + + 16 + + + This is sample. + + + MiddleLeft + + + lblDetail + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 14 + + + True + + + NoControl + + + 9, 148 + + + 77, 12 + + + 15 + + + 発言詳細文字 + + + Label26 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 15 + + + True + + + NoControl + + + 396, 94 + + + 75, 22 + + + 11 + + + 文字色 + + + btnOWL + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 16 + + + NoControl + + + 214, 95 + + + 104, 19 + + + 10 + + + This is sample. + + + MiddleLeft + + + lblOWL + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 17 + + + True + + + NoControl + + + 9, 98 + + + 63, 12 + + + 9 + + + 片思い発言 + + + Label24 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 18 + + + True + + + NoControl + + + 396, 69 + + + 75, 22 + + + 8 + + + 文字色 + + + btnFav + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 19 + + + NoControl + + + 214, 70 + + + 104, 19 + + + 7 + + + This is sample. + + + MiddleLeft + + + lblFav + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 20 + + + True + + + NoControl + + + 9, 73 + + + 48, 12 + + + 6 + + + Fav発言 + + + Label22 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 21 + + + True + + + NoControl + + + 396, 19 + + + 75, 22 + + + 2 + + + フォント&&色 + + + btnListFont + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 22 + + + NoControl + + + 214, 20 + + + 104, 19 + + + 1 + + + This is sample. + + + MiddleLeft + + + lblListFont + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 23 + + + True + + + NoControl + + + 9, 23 + + + 62, 12 + + + 0 + + + リストフォント + + + Label61 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 24 + + + 22, 18 + + + 484, 267 + + + 1 + + + フォント&色設定 + + + GroupBox1 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + FontPanel + + + 0 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 51 + + + False + + + FontPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 1 + + + 258, 21 + + + 65, 19 + + + 29 + + + TimelinePeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 0 + + + True + + + NoControl + + + 22, 24 + + + 130, 12 + + + 28 + + + タイムライン更新間隔(秒) + + + Label3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 1 + + + NoControl + + + 122, 216 + + + 108, 23 + + + 41 + + + 再計算 + + + ButtonApiCalc + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 2 + + + True + + + NoControl + + + 29, 195 + + + 285, 12 + + + 42 + + + 投稿時取得が有効のため、投稿のたびにAPIを消費します。 + + + LabelPostAndGet + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 3 + + + True + + + NoControl + + + 29, 174 + + + 23, 12 + + + 40 + + + 999 + + + MiddleRight + + + LabelApiUsing + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 4 + + + True + + + NoControl + + + 22, 138 + + + 102, 12 + + + 38 + + + Lists更新間隔(秒) + + + Label33 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 5 + + + 258, 135 + + + 65, 19 + + + 39 + + + ListsPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 6 + + + True + + + NoControl + + + 22, 114 + + + 137, 12 + + + 36 + + + Twitter検索更新間隔(秒) + + + Label7 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 7 + + + 258, 111 + + + 65, 19 + + + 37 + + + PubSearchPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 8 + + + True + + + NoControl + + + 22, 66 + + + 123, 12 + + + 32 + + + Mentions更新間隔(秒) + + + Label69 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 9 + + + 258, 63 + + + 65, 19 + + + 33 + + + ReplyPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 10 + + + True + + + NoControl + + + 33, 43 + + + 84, 16 + + + 30 + + + 投稿時取得 + + + CheckPostAndGet + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 11 + + + True + + + NoControl + + + 251, 43 + + + 91, 16 + + + 31 + + + 自動調整する + + + False + + + CheckPeriodAdjust + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 12 + + + True + + + NoControl + + + 22, 90 + + + 94, 12 + + + 34 + + + DM更新間隔(秒) + + + Label5 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 13 + + + 258, 87 + + + 65, 19 + + + 35 + + + DMPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 14 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 1 + + + False + + + GetPeriodPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 2 + + + True + + + 22, 186 + + + 117, 12 + + + 52 + + + PublicSearchの取得数 + + + Label30 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 0 + + + True + + + 22, 136 + + + 63, 12 + + + 51 + + + 初回の更新 + + + Label28 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 1 + + + True + + + 22, 54 + + + 87, 12 + + + 50 + + + Mentions取得数 + + + Label19 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 2 + + + 259, 159 + + + 58, 19 + + + 48 + + + FavoritesTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 3 + + + 259, 185 + + + 58, 19 + + + 49 + + + SearchTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 4 + + + True + + + NoControl + + + 22, 160 + + + 99, 12 + + + 47 + + + Favoritesの取得数 + + + Label66 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 5 + + + 259, 135 + + + 58, 19 + + + 46 + + + FirstTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 6 + + + 259, 112 + + + 58, 19 + + + 45 + + + GetMoreTextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 7 + + + True + + + NoControl + + + 22, 112 + + + 79, 12 + + + 44 + + + 前データの更新 + + + Label53 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 8 + + + True + + + NoControl + + + 22, 86 + + + 247, 16 + + + 43 + + + 次の項目の更新時の取得数を個別に設定する + + + UseChangeGetCount + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 9 + + + 259, 51 + + + 58, 19 + + + 41 + + + TextCountApiReply + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 10 + + + True + + + NoControl + + + 22, 24 + + + 77, 12 + + + 39 + + + 標準取得件数 + + + Label67 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 11 + + + 259, 21 + + + 58, 19 + + + 40 + + + TextCountApi + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetCountPanel + + + 12 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 44 + + + False + + + GetCountPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 3 + + + True + + + NoControl + + + 16, 220 + + + 74, 12 + + + 78 + + + 入力欄フォント + + + Label65 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 0 + + + True + + + NoControl + + + 16, 195 + + + 131, 12 + + + 77 + + + 入力欄アクティブ時背景色 + + + Label52 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 1 + + + True + + + NoControl + + + 16, 145 + + + 102, 12 + + + 75 + + + その発言の@先発言 + + + Label49 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 2 + + + True + + + NoControl + + + 16, 170 + + + 53, 12 + + + 76 + + + 一般発言 + + + Label9 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 3 + + + True + + + NoControl + + + 16, 120 + + + 134, 12 + + + 74 + + + その発言の@先の人の発言 + + + Label14 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 4 + + + True + + + NoControl + + + 16, 95 + + + 88, 12 + + + 73 + + + その人への@返信 + + + Label16 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 5 + + + True + + + NoControl + + + 16, 70 + + + 70, 12 + + + 72 + + + その人の発言 + + + Label32 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 6 + + + True + + + NoControl + + + 16, 45 + + + 81, 12 + + + 71 + + + 自分への@返信 + + + Label34 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 7 + + + True + + + NoControl + + + 16, 20 + + + 63, 12 + + + 70 + + + 自分の発言 + + + Label36 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 8 + + + True + + + NoControl + + + 398, 216 + + + 75, 22 + + + 69 + + + フォント&&色 + + + btnInputFont + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 9 + + + True + + + NoControl + + + 398, 191 + + + 75, 22 + + + 68 + + + 背景色 + + + btnInputBackcolor + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 10 + + + True + + + NoControl + + + 398, 141 + + + 75, 22 + + + 66 + + + 背景色 + + + btnAtTo + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 11 + + + True + + + NoControl + + + 398, 166 + + + 75, 22 + + + 67 + + + 背景色 + + + btnListBack + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 12 + + + True + + + NoControl + + + 398, 116 + + + 75, 22 + + + 65 + + + 背景色 + + + btnAtFromTarget + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 13 + + + True + + + NoControl + + + 398, 91 + + + 75, 22 + + + 64 + + + 背景色 + + + btnAtTarget + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 14 + + + True + + + NoControl + + + 398, 66 + + + 75, 22 + + + 63 + + + 背景色 + + + btnTarget + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 15 + + + True + + + NoControl + + + 398, 41 + + + 75, 22 + + + 62 + + + 背景色 + + + btnAtSelf + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 16 + + + True + + + NoControl + + + 398, 16 + + + 75, 22 + + + 61 + + + 背景色 + + + btnSelf + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 17 + + + NoControl + + + 214, 220 + + + 102, 19 + + + 60 + + + This is sample. + + + MiddleLeft + + + lblInputFont + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 18 + + + NoControl + + + 214, 195 + + + 102, 19 + + + 59 + + + This is sample. + + + MiddleLeft + + + lblInputBackcolor + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 19 + + + NoControl + + + 214, 145 + + + 102, 19 + + + 57 + + + This is sample. + + + MiddleLeft + + + lblAtTo + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 20 + + + NoControl + + + 214, 170 + + + 102, 19 + + + 58 + + + This is sample. + + + MiddleLeft + + + lblListBackcolor + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 21 + + + NoControl + + + 214, 120 + + + 102, 19 + + + 56 + + + This is sample. + + + MiddleLeft + + + lblAtFromTarget + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 22 + + + NoControl + + + 214, 95 + + + 102, 19 + + + 55 + + + This is sample. + + + MiddleLeft + + + lblAtTarget + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 23 + + + NoControl + + + 214, 70 + + + 102, 19 + + + 54 + + + This is sample. + + + MiddleLeft + + + lblTarget + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 24 + + + NoControl + + + 214, 45 + + + 102, 19 + + + 53 + + + This is sample. + + + MiddleLeft + + + lblAtSelf + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 25 + + + NoControl + + + 214, 19 + + + 102, 19 + + + 52 + + + This is sample. + + + MiddleLeft + + + lblSelf + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 26 + + + True + + + NoControl + + + 191, 252 + + + 90, 22 + + + 51 + + + デフォルトに戻す + + + ButtonBackToDefaultFontColor2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 27 + + + 22, 18 + + + 489, 290 + + + 1 + + + フォント&色設定 + + + GroupBox5 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + FontPanel2 + + + 0 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 25 + + + False + + + FontPanel2 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 4 + + + True + + + False + + + NoControl + + + 227, 20 + + + 57, 16 + + + 14 + + + BASIC + + + AuthBasicRadio + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 0 + + + True + + + NoControl + + + 113, 20 + + + 93, 16 + + + 13 + + + OAuth(xAuth) + + + AuthOAuthRadio + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 1 + + + True + + + NoControl + + + 22, 22 + + + 53, 12 + + + 12 + + + 認証方法 + + + Label6 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 2 + + + NoControl + + + 305, 64 + + + 75, 23 + + + 18 + + + クリア + + + AuthClearButton + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 3 + + + NoControl + + + 113, 68 + + + 149, 14 + + + 17 + + + 認証済み + + + AuthUserLabel + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 4 + + + NoControl + + + 113, 54 + + + 112, 14 + + + 16 + + + Not Authenticated + + + AuthStateLabel + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 5 + + + True + + + NoControl + + + 22, 54 + + + 53, 12 + + + 15 + + + 認証状態 + + + Label4 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 6 + + + NoControl + + + 305, 126 + + + 75, 23 + + + 23 + + + 認証する + + + AuthorizeButton + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 7 + + + True + + + NoControl + + + 22, 112 + + + 57, 12 + + + 19 + + + ユーザー名 + + + Label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 8 + + + True + + + NoControl + + + 22, 133 + + + 52, 12 + + + 21 + + + パスワード + + + Label2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 9 + + + 113, 109 + + + 186, 19 + + + 20 + + + Username + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 10 + + + 113, 130 + + + 186, 19 + + + 22 + + + Password + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 11 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 0 + + + False + + + BasedPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 5 + + + True + + + NoControl + + + 41, 134 + + + 314, 12 + + + 11 + + + ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 + + + Label55 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 0 + + + 286, 107 + + + 96, 19 + + + 10 + + + TextProxyPassword + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 1 + + + True + + + NoControl + + + 22, 19 + + + 76, 16 + + + 0 + + + 使用しない + + + RadioProxyNone + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 2 + + + True + + + NoControl + + + 217, 110 + + + 69, 12 + + + 9 + + + パスワード(&W) + + + LabelProxyPassword + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 3 + + + True + + + NoControl + + + 22, 41 + + + 190, 16 + + + 1 + + + InternetExplorerの設定を使用する + + + RadioProxyIE + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 4 + + + 143, 107 + + + 68, 19 + + + 8 + + + TextProxyUser + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 5 + + + True + + + NoControl + + + 22, 62 + + + 66, 16 + + + 2 + + + 指定する + + + RadioProxySpecified + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 6 + + + True + + + NoControl + + + 74, 110 + + + 63, 12 + + + 7 + + + ユーザ名(&U) + + + LabelProxyUser + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 7 + + + True + + + NoControl + + + 50, 85 + + + 58, 12 + + + 3 + + + プロキシ(&X) + + + LabelProxyAddress + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 8 + + + 309, 82 + + + 73, 19 + + + 6 + + + TextProxyPort + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 9 + + + 114, 82 + + + 135, 19 + + + 4 + + + TextProxyAddress + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 10 + + + True + + + NoControl + + + 255, 85 + + + 48, 12 + + + 5 + + + ポート(&P) + + + LabelProxyPort + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ProxyPanel + + + 11 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 54 + + + False + + + ProxyPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 6 + + + True + + + NoControl + + + 22, 293 + + + 237, 16 + + + 24 + + + ニコニコ動画のURLをnico.msで短縮して送信 + + + CheckNicoms + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 0 + + + True + + + NoControl + + + 36, 245 + + + 99, 12 + + + 22 + + + アウトプット先のURL + + + Label60 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 1 + + + twitter.com + + + twitter.com/username + + + 205, 242 + + + 182, 20 + + + 23 + + + ComboBoxOutputzUrlmode + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 2 + + + True + + + NoControl + + + 36, 199 + + + 63, 12 + + + 20 + + + 復活の呪文 + + + Label59 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 3 + + + 205, 196 + + + 182, 19 + + + 21 + + + TextBoxOutputzKey + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 4 + + + True + + + NoControl + + + 22, 161 + + + 115, 16 + + + 19 + + + Outputzに対応する + + + CheckOutputz + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 5 + + + True + + + NoControl + + + 22, 326 + + + 178, 16 + + + 18 + + + BASIC認証への変更を許可する + + + CheckEnableBasicAuth + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 6 + + + 262, 125 + + + 125, 19 + + + 17 + + + search.twitter.com + + + TwitterSearchAPIText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 7 + + + True + + + NoControl + + + 22, 128 + + + 228, 12 + + + 16 + + + Twitter SearchAPI URL (search.twitter.com) + + + Label31 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 8 + + + 262, 100 + + + 125, 19 + + + 15 + + + api.twitter.com + + + TwitterAPIText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 9 + + + True + + + NoControl + + + 22, 103 + + + 174, 12 + + + 14 + + + Twitter API URL (api.twitter.com) + + + Label8 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 10 + + + True + + + NoControl + + + 22, 78 + + + 145, 16 + + + 13 + + + 通信にHTTPSを使用する + + + CheckUseSsl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 11 + + + True + + + NoControl + + + 22, 51 + + + 349, 12 + + + 12 + + + ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 + + + Label64 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 12 + + + 262, 18 + + + 125, 19 + + + 11 + + + ConnectionTimeOut + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 13 + + + True + + + NoControl + + + 22, 20 + + + 131, 12 + + + 10 + + + タイムアウトまでの時間(秒) + + + Label63 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 14 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 53 + + + False + + + ConnectionPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 7 + + + 227, 41 + + + 65, 19 + + + 3 + + + UserstreamPeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + UserStreamPanel + + + 0 + + + True + + + NoControl + + + 22, 20 + + + 157, 16 + + + 1 + + + 起動時に自動的に接続する + + + StartupUserstreamCheck + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + UserStreamPanel + + + 1 + + + True + + + NoControl + + + 22, 45 + + + 145, 12 + + + 2 + + + 発言一覧への反映間隔(秒) + + + Label83 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + UserStreamPanel + + + 2 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 44 + + + False + + + UserStreamPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 8 + + + True + + + NoControl + + + 22, 22 + + + 166, 16 + + + 37 + + + 読み込んだポストを既読にする + + + StartupReaded + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + StartupPanel + + + 0 + + + True + + + NoControl + + + 22, 70 + + + 174, 16 + + + 41 + + + 片思いユーザーリストを取得する + + + CheckStartupFollowers + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + StartupPanel + + + 1 + + + True + + + NoControl + + + 22, 47 + + + 129, 16 + + + 39 + + + 最新版のチェックをする + + + CheckStartupVersion + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + StartupPanel + + + 2 + + + True + + + NoControl + + + 22, 93 + + + 124, 16 + + + 43 + + + Favoritesを取得する + + + chkGetFav + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + StartupPanel + + + 3 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 44 + + + False + + + StartupPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 9 + + + True + + + NoControl + + + 216, 134 + + + 131, 12 + + + 104 + + + 再起動後有効になります。 + + + Label47 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 0 + + + True + + + NoControl + + + 264, 90 + + + 44, 12 + + + 100 + + + Label63 + + + LabelDateTimeFormatApplied + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 1 + + + True + + + NoControl + + + 217, 90 + + + 44, 12 + + + 99 + + + Sample: + + + Label62 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 2 + + + Top, Bottom, Left, Right + + + yyyy/MM/dd H:mm:ss + + + yy/M/d H:mm:ss + + + H:mm:ss yy/M/d + + + M/d H:mm:ss + + + M/d H:mm + + + H:mm:ss M/d + + + H:mm:ss + + + H:mm + + + tt h:mm + + + M/d tt h:mm:ss + + + M/d tt h:mm + + + 216, 67 + + + 199, 20 + + + 98 + + + CmbDateTimeFormat + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 3 + + + True + + + NoControl + + + 22, 70 + + + 113, 12 + + + 97 + + + リストの日時フォーマット + + + Label23 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 4 + + + True + + + NoControl + + + 22, 108 + + + 163, 12 + + + 101 + + + リストのアイコンサイズ(初期値16) + + + Label11 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 5 + + + none + + + 16*16 + + + 24*24 + + + 48*48 + + + 48*48(2Column) + + + 252, 105 + + + 163, 20 + + + 103 + + + IconSize + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 6 + + + False + + + 216, 106 + + + 34, 19 + + + 102 + + + TextBox3 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 7 + + + True + + + NoControl + + + 22, 203 + + + 203, 16 + + + 96 + + + ソート順を変更できないようにロックする + + + CheckSortOrderLock + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 8 + + + True + + + NoControl + + + 22, 178 + + + 154, 16 + + + 94 + + + リストの区切り線を表示する + + + CheckShowGrid + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 9 + + + True + + + NoControl + + + 22, 153 + + + 143, 16 + + + 92 + + + 自分の発言を既読にする + + + chkReadOwnPost + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 10 + + + True + + + NoControl + + + 22, 42 + + + 226, 16 + + + 84 + + + 未読ポストのフォントと色を変更する(低速) + + + chkUnreadStyle + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 11 + + + True + + + NoControl + + + 22, 21 + + + 162, 16 + + + 82 + + + 片思いを色分けして表示する + + + OneWayLv + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 12 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 86 + + + False + + + TweetPrvPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 10 + + + True + + + NoControl + + + 4, 15 + + + 48, 16 + + + 0 + + + 有効 + + + HotkeyCheck + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 0 + + + True + + + NoControl + + + 340, 16 + + + 13, 14 + + + 6 + + + 0 + + + HotkeyCode + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 1 + + + Disable + + + 257, 13 + + + 77, 19 + + + 5 + + + HotkeyText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 2 + + + True + + + NoControl + + + 211, 15 + + + 42, 16 + + + 4 + + + Win + + + HotkeyWin + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 3 + + + True + + + NoControl + + + 168, 15 + + + 39, 16 + + + 3 + + + Alt + + + HotkeyAlt + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 4 + + + True + + + NoControl + + + 116, 15 + + + 48, 16 + + + 2 + + + Shift + + + HotkeyShift + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 5 + + + True + + + NoControl + + + 69, 15 + + + 43, 16 + + + 1 + + + Ctrl + + + HotkeyCtrl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox3 + + + 6 + + + 19, 282 + + + 474, 41 + + + 76 + + + ホットキー + + + GroupBox3 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 0 + + + True + + + NoControl + + + 22, 253 + + + 157, 16 + + + 75 + + + #タグの入力補助を使用する + + + CheckHashSupple + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 1 + + + True + + + NoControl + + + 22, 229 + + + 153, 16 + + + 73 + + + @IDの入力補助を使用する + + + CheckAtIdSupple + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 2 + + + True + + + NoControl + + + 26, 210 + + + 340, 12 + + + 71 + + + 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 + + + Label57 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 3 + + + True + + + NoControl + + + 22, 188 + + + 183, 16 + + + 70 + + + Fav操作結果を厳密にチェックする + + + CheckFavRestrict + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 4 + + + NoControl + + + 418, 157 + + + 75, 21 + + + 65 + + + 参照 + + + Button3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 5 + + + True + + + NoControl + + + 22, 20 + + + 113, 16 + + + 40 + + + サウンドを再生する + + + PlaySnd + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 6 + + + NoControl + + + 22, 42 + + + 408, 22 + + + 41 + + + タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 + + + Label15 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 7 + + + 184, 160 + + + 228, 19 + + + 64 + + + BrowserPathText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 8 + + + True + + + NoControl + + + 22, 71 + + + 100, 16 + + + 43 + + + 未読管理を行う + + + UReadMng + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 9 + + + True + + + NoControl + + + 21, 164 + + + 60, 12 + + + 63 + + + ブラウザパス + + + Label44 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 10 + + + True + + + NoControl + + + 22, 114 + + + 171, 16 + + + 47 + + + ×ボタンを押したときに終了する + + + CheckCloseToExit + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 11 + + + True + + + NoControl + + + 22, 137 + + + 170, 16 + + + 49 + + + 最小化したときにアイコン化する + + + CheckMinimizeToTray + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 12 + + + True + + + NoControl + + + 22, 92 + + + 145, 16 + + + 45 + + + 新着時に未読をクリアする + + + CheckReadOldPosts + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 13 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 52 + + + False + + + ActionPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 11 + + + 通知なし + + + アイコン変更 + + + アイコン変更&点滅 + + + 215, 142 + + + 136, 20 + + + 94 + + + ReplyIconStateCombo + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 0 + + + True + + + NoControl + + + 22, 145 + + + 134, 12 + + + 93 + + + 未読Mentions通知アイコン + + + Label72 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 1 + + + True + + + NoControl + + + 22, 166 + + + 256, 16 + + + 96 + + + Mentionsの新着があるときにウインドウを点滅する + + + ChkNewMentionsBlink + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 2 + + + True + + + NoControl + + + 22, 118 + + + 161, 16 + + + 92 + + + タブに未読アイコンを表示する + + + chkTabIconDisp + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 3 + + + True + + + NoControl + + + 22, 191 + + + 243, 16 + + + 60 + + + 画像リンクがあった場合にサムネイルを表示する + + + CheckPreviewEnable + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 4 + + + True + + + NoControl + + + 83, 290 + + + 115, 12 + + + 84 + + + Apply after restarting + + + Label81 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 5 + + + OS Default + + + Japanese + + + English + + + Simplified Chinese + + + 215, 285 + + + 136, 20 + + + 85 + + + LanguageCombo + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 6 + + + True + + + NoControl + + + 22, 290 + + + 53, 12 + + + 83 + + + Language + + + Label13 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 7 + + + True + + + NoControl + + + 22, 263 + + + 133, 16 + + + 82 + + + 常に最前面に表示する + + + CheckAlwaysTop + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 8 + + + True + + + NoControl + + + 22, 238 + + + 343, 16 + + + 64 + + + 発言詳細を等幅フォントで表示(AA対応、フォント適用不具合あり) + + + CheckMonospace + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 9 + + + True + + + NoControl + + + 22, 66 + + + 249, 16 + + + 48 + + + 画面最小化・アイコン時のみバルーンを表示する + + + CheckBalloonLimit + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 10 + + + True + + + NoControl + + + 22, 20 + + + 130, 12 + + + 43 + + + 新着バルーンのユーザー名 + + + Label10 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 11 + + + (なし) + + + バージョン + + + 最終発言 + + + @未読数 + + + 未読数 + + + 未読数(@未読数) + + + 全未読/全発言数 + + + 発言数/フォロー数/フォロワー数 + + + 215, 88 + + + 197, 20 + + + 50 + + + ComboDispTitle + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 12 + + + True + + + NoControl + + + 22, 91 + + + 60, 12 + + + 49 + + + タイトルバー + + + Label45 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 13 + + + なし + + + ユーザーID + + + ニックネーム + + + 215, 15 + + + 136, 20 + + + 44 + + + cmbNameBalloon + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 14 + + + True + + + NoControl + + + 22, 43 + + + 235, 16 + + + 46 + + + タイトルバーとツールチップにユーザー名を表示 + + + CheckDispUsername + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 15 + + + True + + + False + + + NoControl + + + 22, 215 + + + 180, 16 + + + 62 + + + 発言詳細部にアイコンを表示する + + + CheckBox3 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 16 + + + Fill + + + False + + + 0, 0 + + + 525, 368 + + + 50 + + + False + + + PreviewPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 12 + + + SplitContainer1.Panel2 + + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1 + + + 1 + + + 701, 368 + + + 172 + + + 0 + + + SplitContainer1 + + + System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 2 + + + 17, 17 + + + 140, 17 + + + NoControl + + + 623, 374 + + + 75, 23 + + + 4 + + + キャンセル + + + Cancel + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + + + NoControl + + + 541, 374 + + + 75, 23 + + + 3 + + + OK + + + Save + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + True + + + 82 + + + 6, 12 + + + 701, 403 + + + CenterParent + + + 設定 + + + FontDialog1 + + + System.Windows.Forms.FontDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ColorDialog1 + + + System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + AppendSettingDialog + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file Copied: trunk/Tween/AppendSettingDialog.vb (from rev 1230, branches/SettingDialog/Tween/AppendSettingDialog.vb) =================================================================== --- trunk/Tween/AppendSettingDialog.vb (rev 0) +++ trunk/Tween/AppendSettingDialog.vb 2010-12-20 13:02:09 UTC (rev 1231) @@ -0,0 +1,2214 @@ +? +Imports System.Threading + +Public Class AppendSettingDialog + + Private Shared _instance As New AppendSettingDialog + Private tw As Twitter + 'Private _MyuserID As String + 'Private _Mypassword As String + Private _MytimelinePeriod As Integer + Private _MyDMPeriod As Integer + Private _MyPubSearchPeriod As Integer + Private _MyListsPeriod As Integer + Private _MyLogDays As Integer + Private _MyLogUnit As LogUnitEnum + Private _MyReaded As Boolean + Private _MyIconSize As IconSizes + Private _MyStatusText As String + Private _MyRecommendStatusText As String + Private _MyUnreadManage As Boolean + Private _MyPlaySound As Boolean + Private _MyOneWayLove As Boolean + Private _fntUnread As Font + Private _clUnread As Color + Private _fntReaded As Font + Private _clReaded As Color + Private _clFav As Color + Private _clOWL As Color + Private _clRetweet As Color + Private _fntDetail As Font + Private _clSelf As Color + Private _clAtSelf As Color + Private _clTarget As Color + Private _clAtTarget As Color + Private _clAtFromTarget As Color + Private _clAtTo As Color + Private _clInputBackcolor As Color + Private _clInputFont As Color + Private _fntInputFont As Font + Private _clListBackcolor As Color + Private _clDetailBackcolor As Color + Private _clDetail As Color + Private _clDetailLink As Color + Private _MyNameBalloon As NameBalloonEnum + Private _MyPostCtrlEnter As Boolean + Private _MyPostShiftEnter As Boolean + Private _usePostMethod As Boolean + Private _countApi As Integer + Private _countApiReply As Integer + Private _browserpath As String + 'Private _MyCheckReply As Boolean + Private _MyUseRecommendStatus As Boolean + Private _MyDispUsername As Boolean + Private _MyDispLatestPost As DispTitleEnum + Private _MySortOrderLock As Boolean + Private _MyMinimizeToTray As Boolean + Private _MyCloseToExit As Boolean + Private _MyTinyUrlResolve As Boolean + Private _MyProxyType As HttpConnection.ProxyType + Private _MyProxyAddress As String + Private _MyProxyPort As Integer + Private _MyProxyUser As String + Private _MyProxyPassword As String + Private _MyMaxPostNum As Integer + Private _MyPeriodAdjust As Boolean + Private _MyStartupVersion As Boolean + Private _MyStartupFollowers As Boolean + Private _MyRestrictFavCheck As Boolean + Private _MyAlwaysTop As Boolean + Private _MyUrlConvertAuto As Boolean + Private _MyOutputz As Boolean + Private _MyOutputzKey As String + Private _MyOutputzUrlmode As OutputzUrlmode + Private _MyNicoms As Boolean + Private _MyUnreadStyle As Boolean + Private _MyDateTimeFormat As String + Private _MyDefaultTimeOut As Integer + 'Private _MyProtectNotInclude As Boolean + Private _MyLimitBalloon As Boolean + Private _MyPostAndGet As Boolean + Private _MyReplyPeriod As Integer + Private _MyAutoShortUrlFirst As UrlConverter + Private _MyTabIconDisp As Boolean + Private _MyReplyIconState As REPLY_ICONSTATE + Private _MyReadOwnPost As Boolean + Private _MyGetFav As Boolean + Private _MyMonoSpace As Boolean + Private _MyReadOldPosts As Boolean + Private _MyUseSsl As Boolean + Private _MyBitlyId As String + Private _MyBitlyPw As String + Private _MyShowGrid As Boolean + Private _MyUseAtIdSupplement As Boolean + Private _MyUseHashSupplement As Boolean + Private _MyLanguage As String + Private _MyIsOAuth As Boolean + Private _MyTwitterApiUrl As String + Private _MyTwitterSearchApiUrl As String + Private _MyPreviewEnable As Boolean + Private _MoreCountApi As Integer + Private _FirstCountApi As Integer + Private _MyUseAdditonalCount As Boolean + Private _SearchCountApi As Integer + Private _FavoritesCountApi As Integer + Private _MyRetweetNoConfirm As Boolean + Private _MyUserstreamStartup As Boolean + Private _MyUserstreamPeriod As Integer + + Private _ValidationError As Boolean = False + + Private _curPanel As Panel = Nothing + Private Sub TreeView1_AfterSelect(ByVal sender As System.Object, ByVal e As System.Windows.Forms.TreeViewEventArgs) Handles TreeView1.AfterSelect + Dim NodeName As String = TreeView1.SelectedNode.Name + If _curPanel IsNot Nothing Then + _curPanel.Enabled = False + _curPanel.Visible = False + _curPanel = Nothing + End If + Select Case NodeName + Case "BasedNode" + _curPanel = BasedPanel + Case "PeriodNode" + _curPanel = GetPeriodPanel + Case "StartUpNode" + _curPanel = StartupPanel + Case "GetCountNode" + _curPanel = GetCountPanel + Case "UserStreamNode" + _curPanel = UserStreamPanel + Case "ActionNode" + _curPanel = ActionPanel + Case "TweetActNode" + _curPanel = TweetActPanel + Case "PreviewNode" + _curPanel = PreviewPanel + Case "TweetPrvNode" + _curPanel = TweetPrvPanel + Case "FontNode" + _curPanel = FontPanel + Case "FontNode2" + _curPanel = FontPanel2 + Case "ConnectionNode" + _curPanel = ConnectionPanel + Case "ProxyNode" + _curPanel = ProxyPanel + End Select + _curPanel.Enabled = True + _curPanel.Visible = True + End Sub + + Private Sub Save_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Save.Click + If TweenMain.IsNetworkAvailable() AndAlso _ + (ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Bitly OrElse ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Jmp) AndAlso _ + (Not String.IsNullOrEmpty(TextBitlyId.Text) OrElse Not String.IsNullOrEmpty(TextBitlyPw.Text)) Then + If Not BitlyValidation(TextBitlyId.Text, TextBitlyPw.Text) Then + MessageBox.Show(My.Resources.SettingSave_ClickText1) + _ValidationError = True + TreeView1.SelectedNode.Name = "TweetActNode" ' 動作タブを選択 + TextBitlyId.Focus() + Exit Sub + Else + _ValidationError = False + End If + Else + _ValidationError = False + End If + Try + _MyUserstreamPeriod = CType(Me.UserstreamPeriod.Text, Integer) + _MyUserstreamStartup = Me.StartupUserstreamCheck.Checked + _MyIsOAuth = AuthOAuthRadio.Checked + _MytimelinePeriod = CType(TimelinePeriod.Text, Integer) + _MyDMPeriod = CType(DMPeriod.Text, Integer) + _MyPubSearchPeriod = CType(PubSearchPeriod.Text, Integer) + _MyListsPeriod = CType(ListsPeriod.Text, Integer) + _MyReplyPeriod = CType(ReplyPeriod.Text, Integer) + _MyMaxPostNum = 125 + + _MyReaded = StartupReaded.Checked + Select Case IconSize.SelectedIndex + Case 0 + _MyIconSize = IconSizes.IconNone + Case 1 + _MyIconSize = IconSizes.Icon16 + Case 2 + _MyIconSize = IconSizes.Icon24 + Case 3 + _MyIconSize = IconSizes.Icon48 + Case 4 + _MyIconSize = IconSizes.Icon48_2 + End Select + _MyStatusText = StatusText.Text + _MyPlaySound = PlaySnd.Checked + _MyUnreadManage = UReadMng.Checked + _MyOneWayLove = OneWayLv.Checked + + _fntUnread = lblUnread.Font '未使用 + _clUnread = lblUnread.ForeColor + _fntReaded = lblListFont.Font 'リストフォントとして使用 + _clReaded = lblListFont.ForeColor + _clFav = lblFav.ForeColor + _clOWL = lblOWL.ForeColor + _clRetweet = lblRetweet.ForeColor + _fntDetail = lblDetail.Font + _clSelf = lblSelf.BackColor + _clAtSelf = lblAtSelf.BackColor + _clTarget = lblTarget.BackColor + _clAtTarget = lblAtTarget.BackColor + _clAtFromTarget = lblAtFromTarget.BackColor + _clAtTo = lblAtTo.BackColor + _clInputBackcolor = lblInputBackcolor.BackColor + _clInputFont = lblInputFont.ForeColor + _clListBackcolor = lblListBackcolor.BackColor + _clDetailBackcolor = lblDetailBackcolor.BackColor + _clDetail = lblDetail.ForeColor + _clDetailLink = lblDetailLink.ForeColor + _fntInputFont = lblInputFont.Font + Select Case cmbNameBalloon.SelectedIndex + Case 0 + _MyNameBalloon = NameBalloonEnum.None + Case 1 + _MyNameBalloon = NameBalloonEnum.UserID + Case 2 + _MyNameBalloon = NameBalloonEnum.NickName + End Select + '_MyPostCtrlEnter = CheckPostCtrlEnter.Checked + '_MyPostShiftEnter = CheckPostShiftEnter.Checked + If ComboBoxPostKeySelect.SelectedIndex = 2 Then + _MyPostShiftEnter = True + _MyPostCtrlEnter = False + ElseIf ComboBoxPostKeySelect.SelectedIndex = 1 Then + _MyPostCtrlEnter = True + _MyPostShiftEnter = False + Else + _MyPostCtrlEnter = False + _MyPostShiftEnter = False + End If + _usePostMethod = False + _countApi = CType(TextCountApi.Text, Integer) + _countApiReply = CType(TextCountApiReply.Text, Integer) + _browserpath = BrowserPathText.Text.Trim + '_MyCheckReply = CheckboxReply.Checked + _MyPostAndGet = CheckPostAndGet.Checked + _MyUseRecommendStatus = CheckUseRecommendStatus.Checked + _MyDispUsername = CheckDispUsername.Checked + _MyCloseToExit = CheckCloseToExit.Checked + _MyMinimizeToTray = CheckMinimizeToTray.Checked + Select Case ComboDispTitle.SelectedIndex + Case 0 'None + _MyDispLatestPost = DispTitleEnum.None + Case 1 'Ver + _MyDispLatestPost = DispTitleEnum.Ver + Case 2 'Post + _MyDispLatestPost = DispTitleEnum.Post + Case 3 'RepCount + _MyDispLatestPost = DispTitleEnum.UnreadRepCount + Case 4 'AllCount + _MyDispLatestPost = DispTitleEnum.UnreadAllCount + Case 5 'Rep+All + _MyDispLatestPost = DispTitleEnum.UnreadAllRepCount + Case 6 'Unread/All + _MyDispLatestPost = DispTitleEnum.UnreadCountAllCount + Case 7 'Count of Status/Follow/Follower + _MyDispLatestPost = DispTitleEnum.OwnStatus + End Select + _MySortOrderLock = CheckSortOrderLock.Checked + _MyTinyUrlResolve = CheckTinyURL.Checked + ShortUrl.IsResolve = _MyTinyUrlResolve + If RadioProxyNone.Checked Then + _MyProxyType = HttpConnection.ProxyType.None + ElseIf RadioProxyIE.Checked Then + _MyProxyType = HttpConnection.ProxyType.IE + Else + _MyProxyType = HttpConnection.ProxyType.Specified + End If + _MyProxyAddress = TextProxyAddress.Text.Trim() + _MyProxyPort = Integer.Parse(TextProxyPort.Text.Trim()) + _MyProxyUser = TextProxyUser.Text.Trim() + _MyProxyPassword = TextProxyPassword.Text.Trim() + _MyPeriodAdjust = CheckPeriodAdjust.Checked + _MyStartupVersion = CheckStartupVersion.Checked + _MyStartupFollowers = CheckStartupFollowers.Checked + _MyRestrictFavCheck = CheckFavRestrict.Checked + _MyAlwaysTop = CheckAlwaysTop.Checked + _MyUrlConvertAuto = CheckAutoConvertUrl.Checked + _MyOutputz = CheckOutputz.Checked + _MyOutputzKey = TextBoxOutputzKey.Text.Trim() + + Select Case ComboBoxOutputzUrlmode.SelectedIndex + Case 0 + _MyOutputzUrlmode = OutputzUrlmode.twittercom + Case 1 + _MyOutputzUrlmode = OutputzUrlmode.twittercomWithUsername + End Select + + _MyNicoms = CheckNicoms.Checked + _MyUnreadStyle = chkUnreadStyle.Checked + _MyDateTimeFormat = CmbDateTimeFormat.Text + _MyDefaultTimeOut = CType(ConnectionTimeOut.Text, Integer) + '_MyProtectNotInclude = CheckProtectNotInclude.Checked + _MyRetweetNoConfirm = CheckRetweetNoConfirm.Checked + _MyLimitBalloon = CheckBalloonLimit.Checked + _MyAutoShortUrlFirst = CType(ComboBoxAutoShortUrlFirst.SelectedIndex, UrlConverter) + _MyTabIconDisp = chkTabIconDisp.Checked + _MyReadOwnPost = chkReadOwnPost.Checked + _MyGetFav = chkGetFav.Checked + _MyMonoSpace = CheckMonospace.Checked + _MyReadOldPosts = CheckReadOldPosts.Checked + _MyUseSsl = CheckUseSsl.Checked + _MyBitlyId = TextBitlyId.Text + _MyBitlyPw = TextBitlyPw.Text + _MyShowGrid = CheckShowGrid.Checked + _MyUseAtIdSupplement = CheckAtIdSupple.Checked + _MyUseHashSupplement = CheckHashSupple.Checked + _MyPreviewEnable = CheckPreviewEnable.Checked + _MyTwitterApiUrl = TwitterAPIText.Text.Trim + _MyTwitterSearchApiUrl = TwitterSearchAPIText.Text.Trim + Select Case ReplyIconStateCombo.SelectedIndex + Case 0 + _MyReplyIconState = REPLY_ICONSTATE.None + Case 1 + _MyReplyIconState = REPLY_ICONSTATE.StaticIcon + Case 2 + _MyReplyIconState = REPLY_ICONSTATE.BlinkIcon + End Select + Select Case LanguageCombo.SelectedIndex + Case 0 + _MyLanguage = "OS" + Case 1 + _MyLanguage = "ja" + Case 2 + _MyLanguage = "en" + Case 3 + _MyLanguage = "zh-CN" + Case Else + _MyLanguage = "en" + End Select + _HotkeyEnabled = Me.HotkeyCheck.Checked + _HotkeyMod = Keys.None + If Me.HotkeyAlt.Checked Then _HotkeyMod = _HotkeyMod Or Keys.Alt + If Me.HotkeyShift.Checked Then _HotkeyMod = _HotkeyMod Or Keys.Shift + If Me.HotkeyCtrl.Checked Then _HotkeyMod = _HotkeyMod Or Keys.Control + If Me.HotkeyWin.Checked Then _HotkeyMod = _HotkeyMod Or Keys.LWin + If IsNumeric(HotkeyCode.Text) Then _HotkeyValue = CInt(HotkeyCode.Text) + _HotkeyKey = DirectCast(HotkeyText.Tag, Keys) + _BlinkNewMentions = ChkNewMentionsBlink.Checked + _MyUseAdditonalCount = UseChangeGetCount.Checked + _MoreCountApi = CType(GetMoreTextCountApi.Text, Integer) + _FirstCountApi = CType(FirstTextCountApi.Text, Integer) + _SearchCountApi = CType(SearchTextCountApi.Text, Integer) + _FavoritesCountApi = CType(FavoritesTextCountApi.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.Save_ClickText3) + Me.DialogResult = Windows.Forms.DialogResult.Cancel + Exit Sub + End Try + End Sub + + Private Sub Setting_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing + If tw IsNot Nothing AndAlso tw.Username = "" AndAlso e.CloseReason = CloseReason.None Then + If MessageBox.Show(My.Resources.Setting_FormClosing1, "Confirm", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) = Windows.Forms.DialogResult.Cancel Then + e.Cancel = True + End If + End If + If _ValidationError Then + e.Cancel = True + End If + End Sub + + Private Sub Setting_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load + tw = DirectCast(Me.Owner, TweenMain).TwitterInstance + Dim uname As String = tw.Username + Dim pw As String = tw.Password + Dim tk As String = tw.AccessToken + Dim tks As String = tw.AccessTokenSecret + If Not Me._MyIsOAuth Then + 'BASIC認証時のみ表示 + Me.AuthStateLabel.Enabled = False + Me.AuthUserLabel.Enabled = False + Me.AuthClearButton.Enabled = False + Me.AuthOAuthRadio.Checked = False + Me.AuthBasicRadio.Checked = True + Me.CheckEnableBasicAuth.Checked = True + Me.AuthBasicRadio.Enabled = True + tw.Initialize(uname, pw) + Else + Me.AuthStateLabel.Enabled = True + Me.AuthUserLabel.Enabled = True + Me.AuthClearButton.Enabled = True + Me.AuthOAuthRadio.Checked = True + Me.AuthBasicRadio.Checked = False + tw.Initialize(tk, tks, uname) + End If + + Username.Text = uname + Password.Text = pw + If tw.Username = "" Then + Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 + Me.AuthUserLabel.Text = "" + Else + Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click3 + Me.AuthUserLabel.Text = tw.Username + End If + + Me.StartupUserstreamCheck.Checked = _MyUserstreamStartup + Me.UserstreamPeriod.Text = _MyUserstreamPeriod.ToString() + TimelinePeriod.Text = _MytimelinePeriod.ToString() + ReplyPeriod.Text = _MyReplyPeriod.ToString() + DMPeriod.Text = _MyDMPeriod.ToString() + PubSearchPeriod.Text = _MyPubSearchPeriod.ToString() + ListsPeriod.Text = _MyListsPeriod.ToString() + + StartupReaded.Checked = _MyReaded + Select Case _MyIconSize + Case IconSizes.IconNone + IconSize.SelectedIndex = 0 + Case IconSizes.Icon16 + IconSize.SelectedIndex = 1 + Case IconSizes.Icon24 + IconSize.SelectedIndex = 2 + Case IconSizes.Icon48 + IconSize.SelectedIndex = 3 + Case IconSizes.Icon48_2 + IconSize.SelectedIndex = 4 + End Select + StatusText.Text = _MyStatusText + UReadMng.Checked = _MyUnreadManage + If _MyUnreadManage = False Then + StartupReaded.Enabled = False + Else + StartupReaded.Enabled = True + End If + PlaySnd.Checked = _MyPlaySound + OneWayLv.Checked = _MyOneWayLove + + lblListFont.Font = _fntReaded + lblUnread.Font = _fntUnread + lblUnread.ForeColor = _clUnread + lblListFont.ForeColor = _clReaded + lblFav.ForeColor = _clFav + lblOWL.ForeColor = _clOWL + lblRetweet.ForeColor = _clRetweet + lblDetail.Font = _fntDetail + lblSelf.BackColor = _clSelf + lblAtSelf.BackColor = _clAtSelf + lblTarget.BackColor = _clTarget + lblAtTarget.BackColor = _clAtTarget + lblAtFromTarget.BackColor = _clAtFromTarget + lblAtTo.BackColor = _clAtTo + lblInputBackcolor.BackColor = _clInputBackcolor + lblInputFont.ForeColor = _clInputFont + lblInputFont.Font = _fntInputFont + lblListBackcolor.BackColor = _clListBackcolor + lblDetailBackcolor.BackColor = _clDetailBackcolor + lblDetail.ForeColor = _clDetail + lblDetailLink.ForeColor = _clDetailLink + + Select Case _MyNameBalloon + Case NameBalloonEnum.None + cmbNameBalloon.SelectedIndex = 0 + Case NameBalloonEnum.UserID + cmbNameBalloon.SelectedIndex = 1 + Case NameBalloonEnum.NickName + cmbNameBalloon.SelectedIndex = 2 + End Select + + If _MyPostCtrlEnter Then + ComboBoxPostKeySelect.SelectedIndex = 1 + Else + If _MyPostShiftEnter Then + ComboBoxPostKeySelect.SelectedIndex = 2 + Else + ComboBoxPostKeySelect.SelectedIndex = 0 + End If + End If + + TextCountApi.Text = _countApi.ToString + TextCountApiReply.Text = _countApiReply.ToString + BrowserPathText.Text = _browserpath + 'CheckboxReply.Checked = _MyCheckReply + CheckPostAndGet.Checked = _MyPostAndGet + CheckUseRecommendStatus.Checked = _MyUseRecommendStatus + CheckDispUsername.Checked = _MyDispUsername + CheckCloseToExit.Checked = _MyCloseToExit + CheckMinimizeToTray.Checked = _MyMinimizeToTray + Select Case _MyDispLatestPost + Case DispTitleEnum.None + ComboDispTitle.SelectedIndex = 0 + Case DispTitleEnum.Ver + ComboDispTitle.SelectedIndex = 1 + Case DispTitleEnum.Post + ComboDispTitle.SelectedIndex = 2 + Case DispTitleEnum.UnreadRepCount + ComboDispTitle.SelectedIndex = 3 + Case DispTitleEnum.UnreadAllCount + ComboDispTitle.SelectedIndex = 4 + Case DispTitleEnum.UnreadAllRepCount + ComboDispTitle.SelectedIndex = 5 + Case DispTitleEnum.UnreadCountAllCount + ComboDispTitle.SelectedIndex = 6 + Case DispTitleEnum.OwnStatus + ComboDispTitle.SelectedIndex = 7 + End Select + CheckSortOrderLock.Checked = _MySortOrderLock + CheckTinyURL.Checked = _MyTinyUrlResolve + Select Case _MyProxyType + Case HttpConnection.ProxyType.None + RadioProxyNone.Checked = True + Case HttpConnection.ProxyType.IE + RadioProxyIE.Checked = True + Case Else + RadioProxySpecified.Checked = True + End Select + Dim chk As Boolean = RadioProxySpecified.Checked + LabelProxyAddress.Enabled = chk + TextProxyAddress.Enabled = chk + LabelProxyPort.Enabled = chk + TextProxyPort.Enabled = chk + LabelProxyUser.Enabled = chk + TextProxyUser.Enabled = chk + LabelProxyPassword.Enabled = chk + TextProxyPassword.Enabled = chk + + TextProxyAddress.Text = _MyProxyAddress + TextProxyPort.Text = _MyProxyPort.ToString + TextProxyUser.Text = _MyProxyUser + TextProxyPassword.Text = _MyProxyPassword + + CheckPeriodAdjust.Checked = _MyPeriodAdjust + CheckStartupVersion.Checked = _MyStartupVersion + CheckStartupFollowers.Checked = _MyStartupFollowers + CheckFavRestrict.Checked = _MyRestrictFavCheck + CheckAlwaysTop.Checked = _MyAlwaysTop + CheckAutoConvertUrl.Checked = _MyUrlConvertAuto + CheckOutputz.Checked = _MyOutputz + TextBoxOutputzKey.Text = _MyOutputzKey + + Select Case _MyOutputzUrlmode + Case OutputzUrlmode.twittercom + ComboBoxOutputzUrlmode.SelectedIndex = 0 + Case OutputzUrlmode.twittercomWithUsername + ComboBoxOutputzUrlmode.SelectedIndex = 1 + End Select + + CheckNicoms.Checked = _MyNicoms + chkUnreadStyle.Checked = _MyUnreadStyle + CmbDateTimeFormat.Text = _MyDateTimeFormat + ConnectionTimeOut.Text = _MyDefaultTimeOut.ToString + 'CheckProtectNotInclude.Checked = _MyProtectNotInclude + CheckRetweetNoConfirm.Checked = _MyRetweetNoConfirm + CheckBalloonLimit.Checked = _MyLimitBalloon + ComboBoxAutoShortUrlFirst.SelectedIndex = _MyAutoShortUrlFirst + chkTabIconDisp.Checked = _MyTabIconDisp + chkReadOwnPost.Checked = _MyReadOwnPost + chkGetFav.Checked = _MyGetFav + CheckMonospace.Checked = _MyMonoSpace + CheckReadOldPosts.Checked = _MyReadOldPosts + CheckUseSsl.Checked = _MyUseSsl + TextBitlyId.Text = _MyBitlyId + TextBitlyPw.Text = _MyBitlyPw + TextBitlyId.Modified = False + TextBitlyPw.Modified = False + CheckShowGrid.Checked = _MyShowGrid + CheckAtIdSupple.Checked = _MyUseAtIdSupplement + CheckHashSupple.Checked = _MyUseHashSupplement + CheckPreviewEnable.Checked = _MyPreviewEnable + TwitterAPIText.Text = _MyTwitterApiUrl + TwitterSearchAPIText.Text = _MyTwitterSearchApiUrl + Select Case _MyReplyIconState + Case REPLY_ICONSTATE.None + ReplyIconStateCombo.SelectedIndex = 0 + Case REPLY_ICONSTATE.StaticIcon + ReplyIconStateCombo.SelectedIndex = 1 + Case REPLY_ICONSTATE.BlinkIcon + ReplyIconStateCombo.SelectedIndex = 2 + End Select + Select Case _MyLanguage + Case "OS" + LanguageCombo.SelectedIndex = 0 + Case "ja" + LanguageCombo.SelectedIndex = 1 + Case "en" + LanguageCombo.SelectedIndex = 2 + Case "zh-CN" + LanguageCombo.SelectedIndex = 3 + Case Else + LanguageCombo.SelectedIndex = 0 + End Select + HotkeyCheck.Checked = _HotkeyEnabled + HotkeyAlt.Checked = ((_HotkeyMod And Keys.Alt) = Keys.Alt) + HotkeyCtrl.Checked = ((_HotkeyMod And Keys.Control) = Keys.Control) + HotkeyShift.Checked = ((_HotkeyMod And Keys.Shift) = Keys.Shift) + HotkeyWin.Checked = ((_HotkeyMod And Keys.LWin) = Keys.LWin) + HotkeyCode.Text = _HotkeyValue.ToString + HotkeyText.Text = _HotkeyKey.ToString + HotkeyText.Tag = _HotkeyKey + HotkeyAlt.Enabled = HotkeyEnabled + HotkeyShift.Enabled = HotkeyEnabled + HotkeyCtrl.Enabled = HotkeyEnabled + HotkeyWin.Enabled = HotkeyEnabled + HotkeyText.Enabled = HotkeyEnabled + HotkeyCode.Enabled = HotkeyEnabled + ChkNewMentionsBlink.Checked = _BlinkNewMentions + + TreeView1.SelectedNode = TreeView1.Nodes(0) + ActiveControl = Username + + CheckOutputz_CheckedChanged(sender, e) + + GetMoreTextCountApi.Text = _MoreCountApi.ToString + FirstTextCountApi.Text = _FirstCountApi.ToString + SearchTextCountApi.Text = _SearchCountApi.ToString + FavoritesTextCountApi.Text = _FavoritesCountApi.ToString + UseChangeGetCount.Checked = _MyUseAdditonalCount + Label28.Enabled = UseChangeGetCount.Checked + Label30.Enabled = UseChangeGetCount.Checked + Label53.Enabled = UseChangeGetCount.Checked + Label66.Enabled = UseChangeGetCount.Checked + GetMoreTextCountApi.Enabled = UseChangeGetCount.Checked + FirstTextCountApi.Enabled = UseChangeGetCount.Checked + SearchTextCountApi.Enabled = UseChangeGetCount.Checked + FavoritesTextCountApi.Enabled = UseChangeGetCount.Checked + End Sub + + Private Sub UserstreamPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles UserstreamPeriod.Validating + Dim prd As Integer + Try + prd = CType(UserstreamPeriod.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.UserstreamPeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If prd < 0 OrElse prd > 60 Then + MessageBox.Show(My.Resources.UserstreamPeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End If + CalcApiUsing() + End Sub + + Private Sub TimelinePeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TimelinePeriod.Validating + Dim prd As Integer + Try + prd = CType(TimelinePeriod.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then + MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText2) + e.Cancel = True + Exit Sub + End If + CalcApiUsing() + End Sub + + Private Sub ReplyPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ReplyPeriod.Validating + Dim prd As Integer + Try + prd = CType(ReplyPeriod.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then + MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText2) + e.Cancel = True + Exit Sub + End If + CalcApiUsing() + End Sub + + Private Sub DMPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles DMPeriod.Validating + Dim prd As Integer + Try + prd = CType(DMPeriod.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.DMPeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then + MessageBox.Show(My.Resources.DMPeriod_ValidatingText2) + e.Cancel = True + Exit Sub + End If + CalcApiUsing() + End Sub + + Private Sub PubSearchPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles PubSearchPeriod.Validating + Dim prd As Integer + Try + prd = CType(PubSearchPeriod.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.PubSearchPeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If prd <> 0 AndAlso (prd < 30 OrElse prd > 6000) Then + MessageBox.Show(My.Resources.PubSearchPeriod_ValidatingText2) + e.Cancel = True + End If + End Sub + + Private Sub ListsPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ListsPeriod.Validating + Dim prd As Integer + Try + prd = CType(ListsPeriod.Text, Integer) + Catch ex As Exception + MessageBox.Show(My.Resources.DMPeriod_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then + MessageBox.Show(My.Resources.DMPeriod_ValidatingText2) + e.Cancel = True + Exit Sub + End If + CalcApiUsing() + End Sub + + Private Sub UReadMng_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles UReadMng.CheckedChanged + If UReadMng.Checked = True Then + StartupReaded.Enabled = True + Else + StartupReaded.Enabled = False + End If + End Sub + + Private Sub btnFontAndColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnInputFont.Click + Dim Btn As Button = CType(sender, Button) + Dim rtn As DialogResult + + FontDialog1.AllowVerticalFonts = False + FontDialog1.AllowScriptChange = True + FontDialog1.AllowSimulations = True + FontDialog1.AllowVectorFonts = True + FontDialog1.FixedPitchOnly = False + FontDialog1.FontMustExist = True + FontDialog1.ScriptsOnly = False + FontDialog1.ShowApply = False + FontDialog1.ShowEffects = True + FontDialog1.ShowColor = True + + Select Case Btn.Name + Case "btnUnread" + FontDialog1.Color = lblUnread.ForeColor + FontDialog1.Font = lblUnread.Font + Case "btnDetail" + FontDialog1.Color = lblDetail.ForeColor + FontDialog1.Font = lblDetail.Font + Case "btnListFont" + FontDialog1.Color = lblListFont.ForeColor + FontDialog1.Font = lblListFont.Font + Case "btnInputFont" + FontDialog1.Color = lblInputFont.ForeColor + FontDialog1.Font = lblInputFont.Font + End Select + + Try + rtn = FontDialog1.ShowDialog + Catch ex As ArgumentException + MessageBox.Show(ex.Message) + Exit Sub + End Try + + If rtn = Windows.Forms.DialogResult.Cancel Then Exit Sub + + Select Case Btn.Name + Case "btnUnread" + lblUnread.ForeColor = FontDialog1.Color + lblUnread.Font = FontDialog1.Font + Case "btnDetail" + lblDetail.ForeColor = FontDialog1.Color + lblDetail.Font = FontDialog1.Font + Case "btnListFont" + lblListFont.ForeColor = FontDialog1.Color + lblListFont.Font = FontDialog1.Font + Case "btnInputFont" + lblInputFont.ForeColor = FontDialog1.Color + lblInputFont.Font = FontDialog1.Font + End Select + + End Sub + + Private Sub btnColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSelf.Click, btnAtSelf.Click, btnTarget.Click, btnAtTarget.Click, btnAtFromTarget.Click, btnFav.Click, btnOWL.Click, btnInputBackcolor.Click, btnAtTo.Click, btnListBack.Click, btnDetailBack.Click, btnDetailLink.Click, btnRetweet.Click + Dim Btn As Button = CType(sender, Button) + Dim rtn As DialogResult + + ColorDialog1.AllowFullOpen = True + ColorDialog1.AnyColor = True + ColorDialog1.FullOpen = False + ColorDialog1.SolidColorOnly = False + + Select Case Btn.Name + Case "btnSelf" + ColorDialog1.Color = lblSelf.BackColor + Case "btnAtSelf" + ColorDialog1.Color = lblAtSelf.BackColor + Case "btnTarget" + ColorDialog1.Color = lblTarget.BackColor + Case "btnAtTarget" + ColorDialog1.Color = lblAtTarget.BackColor + Case "btnAtFromTarget" + ColorDialog1.Color = lblAtFromTarget.BackColor + Case "btnFav" + ColorDialog1.Color = lblFav.ForeColor + Case "btnOWL" + ColorDialog1.Color = lblOWL.ForeColor + Case "btnRetweet" + ColorDialog1.Color = lblRetweet.ForeColor + Case "btnInputBackcolor" + ColorDialog1.Color = lblInputBackcolor.BackColor + Case "btnAtTo" + ColorDialog1.Color = lblAtTo.BackColor + Case "btnListBack" + ColorDialog1.Color = lblListBackcolor.BackColor + Case "btnDetailBack" + ColorDialog1.Color = lblDetailBackcolor.BackColor + Case "btnDetailLink" + ColorDialog1.Color = lblDetailLink.ForeColor + End Select + + rtn = ColorDialog1.ShowDialog + + If rtn = Windows.Forms.DialogResult.Cancel Then Exit Sub + + Select Case Btn.Name + Case "btnSelf" + lblSelf.BackColor = ColorDialog1.Color + Case "btnAtSelf" + lblAtSelf.BackColor = ColorDialog1.Color + Case "btnTarget" + lblTarget.BackColor = ColorDialog1.Color + Case "btnAtTarget" + lblAtTarget.BackColor = ColorDialog1.Color + Case "btnAtFromTarget" + lblAtFromTarget.BackColor = ColorDialog1.Color + Case "btnFav" + lblFav.ForeColor = ColorDialog1.Color + Case "btnOWL" + lblOWL.ForeColor = ColorDialog1.Color + Case "btnRetweet" + lblRetweet.ForeColor = ColorDialog1.Color + Case "btnInputBackcolor" + lblInputBackcolor.BackColor = ColorDialog1.Color + Case "btnAtTo" + lblAtTo.BackColor = ColorDialog1.Color + Case "btnListBack" + lblListBackcolor.BackColor = ColorDialog1.Color + Case "btnDetailBack" + lblDetailBackcolor.BackColor = ColorDialog1.Color + Case "btnDetailLink" + lblDetailLink.ForeColor = ColorDialog1.Color + End Select + End Sub + + Public Property UserstreamPeriodInt() As Integer + Get + Return _MyUserstreamPeriod + End Get + Set(ByVal value As Integer) + _MyUserstreamPeriod = value + End Set + End Property + + Public Property UserstreamStartup() As Boolean + Get + Return Me._MyUserstreamStartup + End Get + Set(ByVal value As Boolean) + Me._MyUserstreamStartup = value + End Set + End Property + + Public Property TimelinePeriodInt() As Integer + Get + Return _MytimelinePeriod + End Get + Set(ByVal value As Integer) + _MytimelinePeriod = value + End Set + End Property + + Public Property ReplyPeriodInt() As Integer + Get + Return _MyReplyPeriod + End Get + Set(ByVal value As Integer) + _MyReplyPeriod = value + End Set + End Property + + Public Property DMPeriodInt() As Integer + Get + Return _MyDMPeriod + End Get + Set(ByVal value As Integer) + _MyDMPeriod = value + End Set + End Property + + Public Property PubSearchPeriodInt() As Integer + Get + Return _MyPubSearchPeriod + End Get + Set(ByVal value As Integer) + _MyPubSearchPeriod = value + End Set + End Property + + Public Property ListsPeriodInt() As Integer + Get + Return _MyListsPeriod + End Get + Set(ByVal value As Integer) + _MyListsPeriod = value + End Set + End Property + + Public Property Readed() As Boolean + Get + Return _MyReaded + End Get + Set(ByVal value As Boolean) + _MyReaded = value + End Set + End Property + + Public Property IconSz() As IconSizes + Get + Return _MyIconSize + End Get + Set(ByVal value As IconSizes) + _MyIconSize = value + End Set + End Property + + Public Property Status() As String + Get + Return _MyStatusText + End Get + Set(ByVal value As String) + _MyStatusText = value + End Set + End Property + + Public Property UnreadManage() As Boolean + Get + Return _MyUnreadManage + End Get + Set(ByVal value As Boolean) + _MyUnreadManage = value + End Set + End Property + + Public Property PlaySound() As Boolean + Get + Return _MyPlaySound + End Get + Set(ByVal value As Boolean) + _MyPlaySound = value + End Set + End Property + + Public Property OneWayLove() As Boolean + Get + Return _MyOneWayLove + End Get + Set(ByVal value As Boolean) + _MyOneWayLove = value + End Set + End Property + + '''''未使用 + Public Property FontUnread() As Font + Get + Return _fntUnread + End Get + Set(ByVal value As Font) + _fntUnread = value + '無視 + End Set + End Property + + Public Property ColorUnread() As Color + Get + Return _clUnread + End Get + Set(ByVal value As Color) + _clUnread = value + End Set + End Property + + '''''リストフォントとして使用 + Public Property FontReaded() As Font + Get + Return _fntReaded + End Get + Set(ByVal value As Font) + _fntReaded = value + End Set + End Property + + Public Property ColorReaded() As Color + Get + Return _clReaded + End Get + Set(ByVal value As Color) + _clReaded = value + End Set + End Property + + Public Property ColorFav() As Color + Get + Return _clFav + End Get + Set(ByVal value As Color) + _clFav = value + End Set + End Property + + Public Property ColorOWL() As Color + Get + Return _clOWL + End Get + Set(ByVal value As Color) + _clOWL = value + End Set + End Property + + Public Property ColorRetweet() As Color + Get + Return _clRetweet + End Get + Set(ByVal value As Color) + _clRetweet = value + End Set + End Property + + Public Property FontDetail() As Font + Get + Return _fntDetail + End Get + Set(ByVal value As Font) + _fntDetail = value + End Set + End Property + + Public Property ColorDetail() As Color + Get + Return _clDetail + End Get + Set(ByVal value As Color) + _clDetail = value + End Set + End Property + + Public Property ColorDetailLink() As Color + Get + Return _clDetailLink + End Get + Set(ByVal value As Color) + _clDetailLink = value + End Set + End Property + + Public Property ColorSelf() As Color + Get + Return _clSelf + End Get + Set(ByVal value As Color) + _clSelf = value + End Set + End Property + + Public Property ColorAtSelf() As Color + Get + Return _clAtSelf + End Get + Set(ByVal value As Color) + _clAtSelf = value + End Set + End Property + + Public Property ColorTarget() As Color + Get + Return _clTarget + End Get + Set(ByVal value As Color) + _clTarget = value + End Set + End Property + + Public Property ColorAtTarget() As Color + Get + Return _clAtTarget + End Get + Set(ByVal value As Color) + _clAtTarget = value + End Set + End Property + + Public Property ColorAtFromTarget() As Color + Get + Return _clAtFromTarget + End Get + Set(ByVal value As Color) + _clAtFromTarget = value + End Set + End Property + + Public Property ColorAtTo() As Color + Get + Return _clAtTo + End Get + Set(ByVal value As Color) + _clAtTo = value + End Set + End Property + + Public Property ColorInputBackcolor() As Color + Get + Return _clInputBackcolor + End Get + Set(ByVal value As Color) + _clInputBackcolor = value + End Set + End Property + + Public Property ColorInputFont() As Color + Get + Return _clInputFont + End Get + Set(ByVal value As Color) + _clInputFont = value + End Set + End Property + + Public Property FontInputFont() As Font + Get + Return _fntInputFont + End Get + Set(ByVal value As Font) + _fntInputFont = value + End Set + End Property + + Public Property ColorListBackcolor() As Color + Get + Return _clListBackcolor + End Get + Set(ByVal value As Color) + _clListBackcolor = value + End Set + End Property + + Public Property ColorDetailBackcolor() As Color + Get + Return _clDetailBackcolor + End Get + Set(ByVal value As Color) + _clDetailBackcolor = value + End Set + End Property + + Public Property NameBalloon() As NameBalloonEnum + Get + Return _MyNameBalloon + End Get + Set(ByVal value As NameBalloonEnum) + _MyNameBalloon = value + End Set + End Property + + Public Property PostCtrlEnter() As Boolean + Get + Return _MyPostCtrlEnter + End Get + Set(ByVal value As Boolean) + _MyPostCtrlEnter = value + End Set + End Property + + Public Property PostShiftEnter() As Boolean + Get + Return _MyPostShiftEnter + End Get + Set(ByVal value As Boolean) + _MyPostShiftEnter = value + End Set + End Property + + Public Property CountApi() As Integer + Get + Return _countApi + End Get + Set(ByVal value As Integer) + _countApi = value + End Set + End Property + + Public Property CountApiReply() As Integer + Get + Return _countApiReply + End Get + Set(ByVal value As Integer) + _countApiReply = value + End Set + End Property + + Public Property MoreCountApi() As Integer + Get + Return _MoreCountApi + End Get + Set(ByVal value As Integer) + _MoreCountApi = value + End Set + End Property + + Public Property FirstCountApi() As Integer + Get + Return _FirstCountApi + End Get + Set(ByVal value As Integer) + _FirstCountApi = value + End Set + End Property + + Public Property SearchCountApi() As Integer + Get + Return _SearchCountApi + End Get + Set(ByVal value As Integer) + _SearchCountApi = value + End Set + End Property + + Public Property FavoritesCountApi() As Integer + Get + Return _FavoritesCountApi + End Get + Set(ByVal value As Integer) + _FavoritesCountApi = value + End Set + End Property + + Public Property PostAndGet() As Boolean + Get + Return _MyPostAndGet + End Get + Set(ByVal value As Boolean) + _MyPostAndGet = value + End Set + End Property + + Public Property UseRecommendStatus() As Boolean + Get + Return _MyUseRecommendStatus + End Get + Set(ByVal value As Boolean) + _MyUseRecommendStatus = value + End Set + End Property + + Public Property RecommendStatusText() As String + Get + Return _MyRecommendStatusText + End Get + Set(ByVal value As String) + _MyRecommendStatusText = value + End Set + End Property + + Public Property DispUsername() As Boolean + Get + Return _MyDispUsername + End Get + Set(ByVal value As Boolean) + _MyDispUsername = value + End Set + End Property + + Public Property CloseToExit() As Boolean + Get + Return _MyCloseToExit + End Get + Set(ByVal value As Boolean) + _MyCloseToExit = value + End Set + End Property + + Public Property MinimizeToTray() As Boolean + Get + Return _MyMinimizeToTray + End Get + Set(ByVal value As Boolean) + _MyMinimizeToTray = value + End Set + End Property + + Public Property DispLatestPost() As DispTitleEnum + Get + Return _MyDispLatestPost + End Get + Set(ByVal value As DispTitleEnum) + _MyDispLatestPost = value + End Set + End Property + + Public Property BrowserPath() As String + Get + Return _browserpath + End Get + Set(ByVal value As String) + _browserpath = value + End Set + End Property + + Public Property TinyUrlResolve() As Boolean + Get + Return _MyTinyUrlResolve + End Get + Set(ByVal value As Boolean) + _MyTinyUrlResolve = value + End Set + End Property + + Private Sub CheckUseRecommendStatus_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckUseRecommendStatus.CheckedChanged + If CheckUseRecommendStatus.Checked = True Then + StatusText.Enabled = False + Else + StatusText.Enabled = True + End If + End Sub + + Public Property SortOrderLock() As Boolean + Get + Return _MySortOrderLock + End Get + Set(ByVal value As Boolean) + _MySortOrderLock = value + End Set + End Property + + Public Property SelectedProxyType() As HttpConnection.ProxyType + Get + Return _MyProxyType + End Get + Set(ByVal value As HttpConnection.ProxyType) + _MyProxyType = value + End Set + End Property + + Public Property ProxyAddress() As String + Get + Return _MyProxyAddress + End Get + Set(ByVal value As String) + _MyProxyAddress = value + End Set + End Property + + Public Property ProxyPort() As Integer + Get + Return _MyProxyPort + End Get + Set(ByVal value As Integer) + _MyProxyPort = value + End Set + End Property + + Public Property ProxyUser() As String + Get + Return _MyProxyUser + End Get + Set(ByVal value As String) + _MyProxyUser = value + End Set + End Property + + Public Property ProxyPassword() As String + Get + Return _MyProxyPassword + End Get + Set(ByVal value As String) + _MyProxyPassword = value + End Set + End Property + + Public Property PeriodAdjust() As Boolean + Get + Return _MyPeriodAdjust + End Get + Set(ByVal value As Boolean) + _MyPeriodAdjust = value + End Set + End Property + + Public Property StartupVersion() As Boolean + Get + Return _MyStartupVersion + End Get + Set(ByVal value As Boolean) + _MyStartupVersion = value + End Set + End Property + + Public Property StartupFollowers() As Boolean + Get + Return _MyStartupFollowers + End Get + Set(ByVal value As Boolean) + _MyStartupFollowers = value + End Set + End Property + + Public Property RestrictFavCheck() As Boolean + Get + Return _MyRestrictFavCheck + End Get + Set(ByVal value As Boolean) + _MyRestrictFavCheck = value + End Set + End Property + + Public Property AlwaysTop() As Boolean + Get + Return _MyAlwaysTop + End Get + Set(ByVal value As Boolean) + _MyAlwaysTop = value + End Set + End Property + + Public Property UrlConvertAuto() As Boolean + Get + Return _MyUrlConvertAuto + End Get + Set(ByVal value As Boolean) + _MyUrlConvertAuto = value + End Set + End Property + Public Property OutputzEnabled() As Boolean + Get + Return _MyOutputz + End Get + Set(ByVal value As Boolean) + _MyOutputz = value + End Set + End Property + Public Property OutputzKey() As String + Get + Return _MyOutputzKey + End Get + Set(ByVal value As String) + _MyOutputzKey = value + End Set + End Property + Public Property OutputzUrlmode() As OutputzUrlmode + Get + Return _MyOutputzUrlmode + End Get + Set(ByVal value As OutputzUrlmode) + _MyOutputzUrlmode = value + End Set + End Property + + Public Property Nicoms() As Boolean + Get + Return _MyNicoms + End Get + Set(ByVal value As Boolean) + _MyNicoms = value + End Set + End Property + Public Property AutoShortUrlFirst() As UrlConverter + Get + Return _MyAutoShortUrlFirst + End Get + Set(ByVal value As UrlConverter) + _MyAutoShortUrlFirst = value + End Set + End Property + + Public Property UseUnreadStyle() As Boolean + Get + Return _MyUnreadStyle + End Get + Set(ByVal value As Boolean) + _MyUnreadStyle = value + End Set + End Property + + Public Property DateTimeFormat() As String + Get + Return _MyDateTimeFormat + End Get + Set(ByVal value As String) + _MyDateTimeFormat = value + End Set + End Property + + Public Property DefaultTimeOut() As Integer + Get + Return _MyDefaultTimeOut + End Get + Set(ByVal value As Integer) + _MyDefaultTimeOut = value + End Set + End Property + + 'Public Property ProtectNotInclude() As Boolean + ' Get + ' Return _MyProtectNotInclude + ' End Get + ' Set(ByVal value As Boolean) + ' _MyProtectNotInclude = value + ' End Set + 'End Property + + Public Property RetweetNoConfirm() As Boolean + Get + Return _MyRetweetNoConfirm + End Get + Set(ByVal value As Boolean) + _MyRetweetNoConfirm = value + End Set + End Property + + Public Property TabIconDisp() As Boolean + Get + Return _MyTabIconDisp + End Get + Set(ByVal value As Boolean) + _MyTabIconDisp = value + End Set + End Property + + Public Property ReplyIconState() As REPLY_ICONSTATE + Get + Return _MyReplyIconState + End Get + Set(ByVal value As REPLY_ICONSTATE) + _MyReplyIconState = value + End Set + End Property + + Public Property ReadOwnPost() As Boolean + Get + Return _MyReadOwnPost + End Get + Set(ByVal value As Boolean) + _MyReadOwnPost = value + End Set + End Property + + Public Property GetFav() As Boolean + Get + Return _MyGetFav + End Get + Set(ByVal value As Boolean) + _MyGetFav = value + End Set + End Property + + Public Property IsMonospace() As Boolean + Get + Return _MyMonoSpace + End Get + Set(ByVal value As Boolean) + _MyMonoSpace = value + End Set + End Property + + Public Property ReadOldPosts() As Boolean + Get + Return _MyReadOldPosts + End Get + Set(ByVal value As Boolean) + _MyReadOldPosts = value + End Set + End Property + + Public Property UseSsl() As Boolean + Get + Return _MyUseSsl + End Get + Set(ByVal value As Boolean) + _MyUseSsl = value + End Set + End Property + + Public Property BitlyUser() As String + Get + Return _MyBitlyId + End Get + Set(ByVal value As String) + _MyBitlyId = value + End Set + End Property + + Public Property BitlyPwd() As String + Get + Return _MyBitlyPw + End Get + Set(ByVal value As String) + _MyBitlyPw = value + End Set + End Property + + Public Property ShowGrid() As Boolean + Get + Return _MyShowGrid + End Get + Set(ByVal value As Boolean) + _MyShowGrid = value + End Set + End Property + + Public Property UseAtIdSupplement() As Boolean + Get + Return _MyUseAtIdSupplement + End Get + Set(ByVal value As Boolean) + _MyUseAtIdSupplement = value + End Set + End Property + + Public Property UseHashSupplement() As Boolean + Get + Return _MyUseHashSupplement + End Get + Set(ByVal value As Boolean) + _MyUseHashSupplement = value + End Set + End Property + + Public Property PreviewEnable() As Boolean + Get + Return _MyPreviewEnable + End Get + Set(ByVal value As Boolean) + _MyPreviewEnable = value + End Set + End Property + + Public Property UseAdditionalCount() As Boolean + Get + Return _MyUseAdditonalCount + End Get + Set(ByVal value As Boolean) + _MyUseAdditonalCount = value + End Set + End Property + + Public Property TwitterApiUrl() As String + Get + Return _MyTwitterApiUrl + End Get + Set(ByVal value As String) + _MyTwitterApiUrl = value + End Set + End Property + + Public Property TwitterSearchApiUrl() As String + Get + Return _MyTwitterSearchApiUrl + End Get + Set(ByVal value As String) + _MyTwitterSearchApiUrl = value + End Set + End Property + + Public Property Language() As String + Get + Return _MyLanguage + End Get + Set(ByVal value As String) + _MyLanguage = value + End Set + End Property + + Public Property IsOAuth() As Boolean + Get + Return _MyIsOAuth + End Get + Set(ByVal value As Boolean) + _MyIsOAuth = value + End Set + End Property + + Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click + Dim filedlg As New OpenFileDialog() + + filedlg.Filter = My.Resources.Button3_ClickText1 + filedlg.FilterIndex = 1 + filedlg.Title = My.Resources.Button3_ClickText2 + filedlg.RestoreDirectory = True + + If filedlg.ShowDialog() = Windows.Forms.DialogResult.OK Then + BrowserPathText.Text = filedlg.FileName + End If + End Sub + + Private Sub RadioProxySpecified_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioProxySpecified.CheckedChanged + Dim chk As Boolean = RadioProxySpecified.Checked + LabelProxyAddress.Enabled = chk + TextProxyAddress.Enabled = chk + LabelProxyPort.Enabled = chk + TextProxyPort.Enabled = chk + LabelProxyUser.Enabled = chk + TextProxyUser.Enabled = chk + LabelProxyPassword.Enabled = chk + TextProxyPassword.Enabled = chk + End Sub + + Private Sub TextProxyPort_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextProxyPort.Validating + Dim port As Integer + If TextProxyPort.Text.Trim() = "" Then TextProxyPort.Text = "0" + If Integer.TryParse(TextProxyPort.Text.Trim(), port) = False Then + MessageBox.Show(My.Resources.TextProxyPort_ValidatingText1) + e.Cancel = True + Exit Sub + End If + If port < 0 Or port > 65535 Then + MessageBox.Show(My.Resources.TextProxyPort_ValidatingText2) + e.Cancel = True + Exit Sub + End If + End Sub + + Private Sub CheckOutputz_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckOutputz.CheckedChanged + If CheckOutputz.Checked = True Then + Label59.Enabled = True + Label60.Enabled = True + TextBoxOutputzKey.Enabled = True + ComboBoxOutputzUrlmode.Enabled = True + Else + Label59.Enabled = False + Label60.Enabled = False + TextBoxOutputzKey.Enabled = False + ComboBoxOutputzUrlmode.Enabled = False + End If + End Sub + + Private Sub TextBoxOutputzKey_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextBoxOutputzKey.Validating + If CheckOutputz.Checked Then + TextBoxOutputzKey.Text = Trim(TextBoxOutputzKey.Text) + If TextBoxOutputzKey.Text.Length = 0 Then + MessageBox.Show(My.Resources.TextBoxOutputzKey_Validating) + e.Cancel = True + Exit Sub + End If + End If + End Sub + + Private Function CreateDateTimeFormatSample() As Boolean + Try + LabelDateTimeFormatApplied.Text = DateTime.Now.ToString(CmbDateTimeFormat.Text) + Catch ex As FormatException + LabelDateTimeFormatApplied.Text = My.Resources.CreateDateTimeFormatSampleText1 + Return False + End Try + Return True + End Function + + Private Sub CmbDateTimeFormat_TextUpdate(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbDateTimeFormat.TextUpdate + CreateDateTimeFormatSample() + End Sub + + Private Sub CmbDateTimeFormat_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbDateTimeFormat.SelectedIndexChanged + CreateDateTimeFormatSample() + End Sub + + Private Sub CmbDateTimeFormat_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles CmbDateTimeFormat.Validating + If Not CreateDateTimeFormatSample() Then + MessageBox.Show(My.Resources.CmbDateTimeFormat_Validating) + e.Cancel = True + End If + End Sub + + Private Sub ConnectionTimeOut_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ConnectionTimeOut.Validating + Dim tm As Integer + Try + tm = CInt(ConnectionTimeOut.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.ConnectionTimeOut_ValidatingText1) + e.Cancel = True + Exit Sub + End Try + + If tm < HttpTimeOut.MinValue OrElse tm > HttpTimeOut.MaxValue Then + MessageBox.Show(My.Resources.ConnectionTimeOut_ValidatingText1) + e.Cancel = True + End If + End Sub + + Private Sub LabelDateTimeFormatApplied_VisibleChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles LabelDateTimeFormatApplied.VisibleChanged + CreateDateTimeFormatSample() + End Sub + + Private Sub TextCountApi_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextCountApi.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(TextCountApi.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If cnt < 20 OrElse cnt > 200 Then + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub + + Private Sub TextCountApiReply_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextCountApiReply.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(TextCountApiReply.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If cnt < 20 OrElse cnt > 200 Then + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub + + Public Property LimitBalloon() As Boolean + Get + Return _MyLimitBalloon + End Get + Set(ByVal value As Boolean) + _MyLimitBalloon = value + End Set + End Property + + Private Sub ComboBoxAutoShortUrlFirst_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBoxAutoShortUrlFirst.SelectedIndexChanged + If ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Bitly OrElse _ + ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Jmp Then + TextBitlyId.Enabled = True + TextBitlyPw.Enabled = True + Else + TextBitlyId.Enabled = False + TextBitlyPw.Enabled = False + End If + End Sub + + Private Sub ButtonBackToDefaultFontColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonBackToDefaultFontColor.Click, ButtonBackToDefaultFontColor2.Click + lblUnread.ForeColor = System.Drawing.SystemColors.ControlText + lblUnread.Font = New Font(SystemFonts.DefaultFont, FontStyle.Bold Or FontStyle.Underline) + + lblListFont.ForeColor = System.Drawing.SystemColors.ControlText + lblListFont.Font = System.Drawing.SystemFonts.DefaultFont + + lblDetail.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.ControlText) + lblDetail.Font = System.Drawing.SystemFonts.DefaultFont + + lblInputFont.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.ControlText) + lblInputFont.Font = System.Drawing.SystemFonts.DefaultFont + + lblSelf.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.AliceBlue) + + lblAtSelf.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.AntiqueWhite) + + lblTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LemonChiffon) + + lblAtTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LavenderBlush) + + lblAtFromTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Honeydew) + + lblFav.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Red) + + lblOWL.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Blue) + + lblInputBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LemonChiffon) + + lblAtTo.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Pink) + + lblListBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Window) + + lblDetailBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Window) + + lblDetailLink.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Blue) + + lblRetweet.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Green) + End Sub + + Private Sub AuthorizeButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthorizeButton.Click + Dim user As String = Me.Username.Text.Trim + Dim pwd As String = Me.Password.Text.Trim + If String.IsNullOrEmpty(user) OrElse String.IsNullOrEmpty(pwd) Then + MessageBox.Show(My.Resources.Save_ClickText1) + Exit Sub + End If + + '現在の設定内容で通信 + Dim ptype As HttpConnection.ProxyType + If RadioProxyNone.Checked Then + ptype = HttpConnection.ProxyType.None + ElseIf RadioProxyIE.Checked Then + ptype = HttpConnection.ProxyType.IE + Else + ptype = HttpConnection.ProxyType.Specified + End If + Dim padr As String = TextProxyAddress.Text.Trim() + Dim pport As Integer = Integer.Parse(TextProxyPort.Text.Trim()) + Dim pusr As String = TextProxyUser.Text.Trim() + Dim ppw As String = TextProxyPassword.Text.Trim() + + '通信基底クラス初期化 + HttpConnection.InitializeConnection(20, ptype, padr, pport, pusr, ppw) + HttpTwitter.TwitterUrl = TwitterAPIText.Text.Trim + HttpTwitter.TwitterSearchUrl = TwitterSearchAPIText.Text.Trim + If Me.AuthBasicRadio.Checked Then + tw.Initialize("", "") + Else + tw.Initialize("", "", "") + End If + Dim rslt As String = tw.Authenticate(user, pwd) + If String.IsNullOrEmpty(rslt) Then + MessageBox.Show(My.Resources.AuthorizeButton_Click1, "Authenticate", MessageBoxButtons.OK) + Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click3 + Me.AuthUserLabel.Text = tw.Username + Else + MessageBox.Show(My.Resources.AuthorizeButton_Click2 + Environment.NewLine + rslt, "Authenticate", MessageBoxButtons.OK) + Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 + Me.AuthUserLabel.Text = "" + End If + CalcApiUsing() + End Sub + + Private Sub AuthClearButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthClearButton.Click + tw.ClearAuthInfo() + Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 + Me.AuthUserLabel.Text = "" + CalcApiUsing() + End Sub + + Private Sub AuthOAuthRadio_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthOAuthRadio.CheckedChanged + If tw Is Nothing Then Exit Sub + If AuthBasicRadio.Checked Then + 'BASIC認証時のみ表示 + tw.Initialize("", "") + Me.AuthStateLabel.Enabled = False + Me.AuthUserLabel.Enabled = False + Me.AuthClearButton.Enabled = False + Else + tw.Initialize("", "", "") + Me.AuthStateLabel.Enabled = True + Me.AuthUserLabel.Enabled = True + Me.AuthClearButton.Enabled = True + End If + Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 + Me.AuthUserLabel.Text = "" + CalcApiUsing() + End Sub + + Private Sub DisplayApiMaxCount() + If TwitterApiInfo.MaxCount > -1 Then + LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, TwitterApiInfo.UsingCount, TwitterApiInfo.MaxCount) + Else + LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, TwitterApiInfo.UsingCount, "???") + End If + End Sub + + Private Sub CalcApiUsing() + Dim UsingApi As Integer = 0 + Dim tmp As Integer + Dim ListsTabNum As Integer = 0 + + Try + ' 初回起動時などにNothingの場合あり + ListsTabNum = TabInformations.GetInstance.GetTabsByType(TabUsageType.Lists).Count + Catch ex As Exception + Exit Sub + End Try + + ' Recent計算 0は手動更新 + If Integer.TryParse(TimelinePeriod.Text, tmp) Then + If tmp <> 0 Then + UsingApi += 3600 \ tmp + End If + End If + + ' Reply計算 0は手動更新 + If Integer.TryParse(ReplyPeriod.Text, tmp) Then + If tmp <> 0 Then + UsingApi += 3600 \ tmp + End If + End If + + ' DM計算 0は手動更新 送受信両方 + If Integer.TryParse(DMPeriod.Text, tmp) Then + If tmp <> 0 Then + UsingApi += (3600 \ tmp) * 2 + End If + End If + + ' Listsタブ計算 0は手動更新 + If Integer.TryParse(ListsPeriod.Text, tmp) Then + If tmp <> 0 Then + UsingApi += (3600 \ tmp) * ListsTabNum + End If + End If + + If tw IsNot Nothing Then + If TwitterApiInfo.MaxCount = -1 Then + If Twitter.AccountState = ACCOUNT_STATE.Valid Then + TwitterApiInfo.UsingCount = UsingApi + Dim proc As New Thread(New Threading.ThreadStart(Sub() + tw.GetInfoApi(Nothing) '取得エラー時はinfoCountは初期状態(値:-1) + If Me.IsHandleCreated Then Invoke(New MethodInvoker(AddressOf DisplayApiMaxCount)) + End Sub)) + proc.Start() + Else + LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, UsingApi, "???") + End If + Else + LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, UsingApi, TwitterApiInfo.MaxCount) + End If + End If + + + LabelPostAndGet.Visible = CheckPostAndGet.Checked + + End Sub + + Private Sub CheckPostAndGet_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckPostAndGet.CheckedChanged + CalcApiUsing() + End Sub + + Private Sub Setting_Shown(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Shown + Do + Thread.Sleep(10) + If Me.Disposing OrElse Me.IsDisposed Then Exit Sub + Loop Until Me.IsHandleCreated + CalcApiUsing() + End Sub + + Private Sub ButtonApiCalc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonApiCalc.Click + CalcApiUsing() + End Sub + + Private Sub New() + + ' この呼び出しはデザイナーで必要です。 + InitializeComponent() + + ' InitializeComponent() 呼び出しの後で初期化を追加します。 + + End Sub + + Public Shared ReadOnly Property Instance As AppendSettingDialog + Get + Return _instance + End Get + End Property + + Private Function BitlyValidation(ByVal id As String, ByVal apikey As String) As Boolean + If String.IsNullOrEmpty(id) OrElse String.IsNullOrEmpty(apikey) Then + Return False + End If + + Dim req As String = "http://api.bit.ly/v3/validate" + Dim content As String = "" + Dim param As New Dictionary(Of String, String) + + param.Add("login", "tweenapi") + param.Add("apiKey", "R_c5ee0e30bdfff88723c4457cc331886b") + param.Add("x_login", id) + param.Add("x_apiKey", apikey) + param.Add("format", "txt") + + If Not (New HttpVarious).PostData(req, param, content) Then + Return True ' 通信エラーの場合はとりあえずチェックを通ったことにする + ElseIf content.Trim() = "1" Then + Return True ' 検証成功 + ElseIf content.Trim() = "0" Then + Return False ' 検証失敗 APIキーとIDの組み合わせが違う + Else + Return True ' 規定外応答:通信エラーの可能性があるためとりあえずチェックを通ったことにする + End If + End Function + + Private Sub Cancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cancel.Click + _ValidationError = False + End Sub + + Public Property HotkeyEnabled As Boolean + Public Property HotkeyKey As Keys + Public Property HotkeyValue As Integer + Public Property HotkeyMod As Keys + + Private Sub HotkeyText_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles HotkeyText.KeyDown + 'KeyValueで判定する。 + '表示文字とのテーブルを用意すること + HotkeyText.Text = e.KeyCode.ToString + HotkeyCode.Text = e.KeyValue.ToString + HotkeyText.Tag = e.KeyCode + e.Handled = True + e.SuppressKeyPress = True + End Sub + + Private Sub HotkeyCheck_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles HotkeyCheck.CheckedChanged + HotkeyCtrl.Enabled = HotkeyCheck.Checked + HotkeyAlt.Enabled = HotkeyCheck.Checked + HotkeyShift.Enabled = HotkeyCheck.Checked + HotkeyWin.Enabled = HotkeyCheck.Checked + HotkeyText.Enabled = HotkeyCheck.Checked + HotkeyCode.Enabled = HotkeyCheck.Checked + End Sub + + Public Property BlinkNewMentions As Boolean + + Private Sub GetMoreTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles GetMoreTextCountApi.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(GetMoreTextCountApi.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub + + Private Sub UseChangeGetCount_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles UseChangeGetCount.CheckedChanged + GetMoreTextCountApi.Enabled = UseChangeGetCount.Checked + FirstTextCountApi.Enabled = UseChangeGetCount.Checked + Label28.Enabled = UseChangeGetCount.Checked + Label30.Enabled = UseChangeGetCount.Checked + Label53.Enabled = UseChangeGetCount.Checked + Label66.Enabled = UseChangeGetCount.Checked + SearchTextCountApi.Enabled = UseChangeGetCount.Checked + FavoritesTextCountApi.Enabled = UseChangeGetCount.Checked + End Sub + + Private Sub FirstTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles FirstTextCountApi.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(FirstTextCountApi.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub + + Private Sub CheckEnableBasicAuth_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckEnableBasicAuth.CheckedChanged + AuthBasicRadio.Enabled = CheckEnableBasicAuth.Checked + End Sub + + Private Sub SearchTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles SearchTextCountApi.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(SearchTextCountApi.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextsearchCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 100) Then + MessageBox.Show(My.Resources.TextSearchCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub + + Private Sub FavoritesTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles FavoritesTextCountApi.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(FavoritesTextCountApi.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub +End Class \ No newline at end of file Copied: trunk/Tween/AppendSettingDialog.zh-CHS.resx (from rev 1230, branches/SettingDialog/Tween/AppendSettingDialog.zh-CHS.resx) =================================================================== --- trunk/Tween/AppendSettingDialog.zh-CHS.resx (rev 0) +++ trunk/Tween/AppendSettingDialog.zh-CHS.resx 2010-12-20 13:02:09 UTC (rev 1231) @@ -0,0 +1,919 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + 41, 12 + + + 用?名 + + + 29, 12 + + + 密? + + + 确定 + + + 取消 + + + 101, 12 + + + 消息更新?隔(秒) + + + 私信更新?隔(秒) + + + 101, 12 + + + 启???取的消息 + + + 72, 16 + + + 置?已? + + + 173, 12 + + + 列表中的?像??大小(默?16) + + + 101, 12 + + + 消息文末自?附加 + + + 48, 16 + + + 播放 + + + 41, 12 + + + 提示音 + + + 307, 13 + + + ???置的提示音,只要启用“播放”??就能被播放。 + + + 启用 + + + 113, 12 + + + 用?色区分?向?注 + + + 字体和?色?置 + + + 文本色 + + + 53, 12 + + + ?推消息 + + + 恢?默?? + + + 文本色 + + + 65, 12 + + + 消息??接 + + + 75, 22 + + + 字体&&?色 + + + 65, 12 + + + ?入框字体 + + + 125, 12 + + + ?入框激活?的背景色 + + + 75, 22 + + + 字体&&?色 + + + 53, 12 + + + 未?字体 + + + ?中消息所@的消息 + + + 77, 12 + + + 消息?背景色 + + + 普通消息 + + + 先中消息所@人的其它消息 + + + @??中人的消息 + + + 101, 12 + + + ?中人的其它消息 + + + @?自己的消息 + + + 自己的消息 + + + 75, 22 + + + 字体&&?色 + + + 65, 12 + + + 消息?文本 + + + 文本色 + + + 77, 12 + + + ?向?注消息 + + + 文本色 + + + 53, 12 + + + 收藏消息 + + + 75, 22 + + + 字体&&?色 + + + 53, 12 + + + 列表字体 + + + + + + 用?ID + + + 昵称 + + + 137, 12 + + + 新消息气球提示的用?名 + + + 132, 16 + + + 推荐使用[TWNv○○] + + + 125, 12 + + + 列表中的日期??格式 + + + 48, 16 + + + ?示 + + + 101, 12 + + + 消息?的?像?? + + + 108, 16 + + + 使用Ctrl+Enter + + + 143, 12 + + + ?送快捷?(默?是Enter) + + + 未?管理 + + + 启用 + + + 149, 12 + + + 有更新的消息?清除旧未? + + + 启用 + + + 101, 12 + + + 点?窗口上的×? + + + 退出程序 + + + 77, 12 + + + 窗口最小化? + + + ?小?托??? + + + 65, 12 + + + ??器路径 + + + 84, 16 + + + ?示用?名 + + + 101, 12 + + + ???和浮?提示 + + + 41, 12 + + + ??? + + + (无) + + + 版本号 + + + 最后一条消息 + + + @的未?数 + + + 未?数 + + + 未?数(@的未?数) + + + ?未?数/?消息数 + + + 消息数/好友数/?注数 + + + 101, 12 + + + 重启之后才生效。 + + + ?? + + + 77, 12 + + + ?助?入#Tag + + + 48, 16 + + + 启用 + + + ?助?入@ID + + + 48, 16 + + + 启用 + + + 119, 12 + + + URL自??短?先使用 + + + 138, 16 + + + 不包含Protect者消息 + + + 101, 12 + + + ?制?推的文本? + + + 72, 16 + + + 自??短 + + + 95, 12 + + + ?短?入框的URL + + + 323, 12 + + + 会重新?取原消息来??Fav?果。会?加流量,推荐??。 + + + 125, 12 + + + 是否?格??收藏?果 + + + 48, 16 + + + ?? + + + 48, 16 + + + 展? + + + 95, 12 + + + ?理?短网址URL + + + ?? + + + 行? + + + 77, 12 + + + ?示?片?? + + + 48, 16 + + + 启用 + + + 65, 12 + + + 重启后生效 + + + 48, 16 + + + 启用 + + + 65, 12 + + + ?在最前面 + + + 77, 12 + + + ?列排序方式 + + + 48, 16 + + + 固定 + + + 消息?列表格? + + + 48, 16 + + + ?示 + + + 173, 12 + + + 消息?文本字体等?化(支持AA) + + + 132, 16 + + + 启用(可能会有??) + + + 113, 12 + + + 自己的消息自?已? + + + 48, 16 + + + 启用 + + + 无通知 + + + 只有?色?化 + + + ?色?化&?? + + + 137, 12 + + + 有未?回??的通知?? + + + 113, 12 + + + 有新回??画面?? + + + 113, 12 + + + ??上?示未??? + + + 48, 16 + + + ?? + + + 48, 16 + + + 启用 + + + 77, 12 + + + 气球提示只在 + + + 72, 16 + + + 最小化? + + + 161, 12 + + + 未?文本?式(字体和?色上) + + + 48, 16 + + + 启用 + + + ?示 + + + 字体与?色 + + + 附加 + + + 重新?算 + + + 251, 12 + + + 成功刷新消息、?送消息?都会消耗API配?。 + + + 101, 12 + + + 列表更新?隔(秒) + + + 登?方法 + + + 清除 + + + 已登? + + + 登?状? + + + 登? + + + 101, 12 + + + 搜索更新?隔(秒) + + + 101, 12 + + + 回?更新?隔(秒) + + + ?推?更新 + + + 143, 12 + + + 默??取推数/回??取数 + + + 161, 12 + + + 启???取?向?注用?列表 + + + 48, 16 + + + ?取 + + + 89, 12 + + + 启??版本更新 + + + 48, 16 + + + ?? + + + 72, 16 + + + 自??整 + + + 89, 12 + + + 启???取收藏 + + + 48, 16 + + + ?取 + + + 生效 + + + 143, 21 + + + 215, 12 + + + Search API URL (search.twitter.com) + + + 143, 21 + + + 102, 16 + + + 使用HTTPS通信 + + + 317, 12 + + + ※刷新?繁出?超?的???整?更大的?。默?是20秒。 + + + 77, 12 + + + 超???(秒) + + + 代理?置 + + + 281, 12 + + + ※代理不需要登????,?将用?名密??留空。 + + + 47, 12 + + + 密?(&W) + + + 59, 12 + + + 用?名(&U) + + + 47, 12 + + + 端口(&P) + + + 47, 12 + + + 地址(&X) + + + 59, 16 + + + 自定? + + + 179, 16 + + + 使用InternetExplorer的?置 + + + 59, 16 + + + 不使用 + + + 216, 16 + + + 使用nico.ms?短Niconico?画的URL + + + 59, 12 + + + ?出到URL + + + 53, 12 + + + ?活咒? + + + 90, 16 + + + ??Outputz + + + ?置 + + + BASIC認証への変更を許可する + + + 前データの更新/初回の更新 + + + 次の項目の更新時の取得数を個別に設定する + + + Favorites/PublicSearchの取得数 + + + Shift+Enterにする + + \ No newline at end of file Modified: trunk/Tween/PictureService.vb =================================================================== --- trunk/Tween/PictureService.vb 2010-12-20 11:32:19 UTC (rev 1230) +++ trunk/Tween/PictureService.vb 2010-12-20 13:02:09 UTC (rev 1231) @@ -13,7 +13,7 @@ Return "Err:" + ex.Message End Try If Not file.Exists Then Return "Err:File isn't exists." - Dim st As Setting = Setting.Instance + Dim st As AppendSettingDialog = AppendSettingDialog.Instance Dim ret As String = "" Dim upResult As Boolean = False Select Case service Deleted: trunk/Tween/Setting.Designer.vb =================================================================== --- trunk/Tween/Setting.Designer.vb 2010-12-20 11:32:19 UTC (rev 1230) +++ trunk/Tween/Setting.Designer.vb 2010-12-20 13:02:09 UTC (rev 1231) @@ -1,2060 +0,0 @@ -?Option Strict On - _ -Partial Class Setting - Inherits System.Windows.Forms.Form - - 'フォームがコンポーネントの一覧をクリーンアップするために dispose をオーバーライドします。 - _ - Protected Overrides Sub Dispose(ByVal disposing As Boolean) - Try - If disposing AndAlso components IsNot Nothing Then - components.Dispose() - End If - Finally - MyBase.Dispose(disposing) - End Try - End Sub - - 'Windows フォーム デザイナで必要です。 - Private components As System.ComponentModel.IContainer - - 'メモ: 以下のプロシージャは Windows フォーム デザイナで必要です。 - 'Windows フォーム デザイナを使用して変更できます。 - 'コード エディタを使って変更しないでください。 - _ - Private Sub InitializeComponent() - Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Setting)) - Me.Label1 = New System.Windows.Forms.Label() - Me.Label2 = New System.Windows.Forms.Label() - Me.Username = New System.Windows.Forms.TextBox() - Me.Password = New System.Windows.Forms.TextBox() - Me.Save = New System.Windows.Forms.Button() - Me.Cancel = New System.Windows.Forms.Button() - Me.Label3 = New System.Windows.Forms.Label() - Me.TimelinePeriod = New System.Windows.Forms.TextBox() - Me.DMPeriod = New System.Windows.Forms.TextBox() - Me.Label5 = New System.Windows.Forms.Label() - Me.Label9 = New System.Windows.Forms.Label() - Me.StartupReaded = New System.Windows.Forms.CheckBox() - Me.Label11 = New System.Windows.Forms.Label() - Me.Label12 = New System.Windows.Forms.Label() - Me.StatusText = New System.Windows.Forms.TextBox() - Me.PlaySnd = New System.Windows.Forms.CheckBox() - Me.Label14 = New System.Windows.Forms.Label() - Me.Label15 = New System.Windows.Forms.Label() - Me.OneWayLv = New System.Windows.Forms.CheckBox() - Me.Label16 = New System.Windows.Forms.Label() - Me.GroupBox1 = New System.Windows.Forms.GroupBox() - Me.btnRetweet = New System.Windows.Forms.Button() - Me.lblRetweet = New System.Windows.Forms.Label() - Me.Label80 = New System.Windows.Forms.Label() - Me.ButtonBackToDefaultFontColor = New System.Windows.Forms.Button() - Me.btnDetailLink = New System.Windows.Forms.Button() - Me.lblDetailLink = New System.Windows.Forms.Label() - Me.Label18 = New System.Windows.Forms.Label() - Me.btnInputFont = New System.Windows.Forms.Button() - Me.lblInputFont = New System.Windows.Forms.Label() - Me.Label65 = New System.Windows.Forms.Label() - Me.btnInputBackcolor = New System.Windows.Forms.Button() - Me.lblInputBackcolor = New System.Windows.Forms.Label() - Me.Label52 = New System.Windows.Forms.Label() - Me.btnUnread = New System.Windows.Forms.Button() - Me.lblUnread = New System.Windows.Forms.Label() - Me.Label20 = New System.Windows.Forms.Label() - Me.btnAtTo = New System.Windows.Forms.Button() - Me.lblAtTo = New System.Windows.Forms.Label() - Me.Label49 = New System.Windows.Forms.Label() - Me.btnDetailBack = New System.Windows.Forms.Button() - Me.lblDetailBackcolor = New System.Windows.Forms.Label() - Me.Label37 = New System.Windows.Forms.Label() - Me.btnListBack = New System.Windows.Forms.Button() - Me.lblListBackcolor = New System.Windows.Forms.Label() - Me.Label19 = New System.Windows.Forms.Label() - Me.btnAtFromTarget = New System.Windows.Forms.Button() - Me.lblAtFromTarget = New System.Windows.Forms.Label() - Me.Label28 = New System.Windows.Forms.Label() - Me.btnAtTarget = New System.Windows.Forms.Button() - Me.lblAtTarget = New System.Windows.Forms.Label() - Me.Label30 = New System.Windows.Forms.Label() - Me.btnTarget = New System.Windows.Forms.Button() - Me.lblTarget = New System.Windows.Forms.Label() - Me.Label32 = New System.Windows.Forms.Label() - Me.btnAtSelf = New System.Windows.Forms.Button() - Me.lblAtSelf = New System.Windows.Forms.Label() - Me.Label34 = New System.Windows.Forms.Label() - Me.btnSelf = New System.Windows.Forms.Button() - Me.lblSelf = New System.Windows.Forms.Label() - Me.Label36 = New System.Windows.Forms.Label() - Me.btnDetail = New System.Windows.Forms.Button() - Me.lblDetail = New System.Windows.Forms.Label() - Me.Label26 = New System.Windows.Forms.Label() - Me.btnOWL = New System.Windows.Forms.Button() - Me.lblOWL = New System.Windows.Forms.Label() - Me.Label24 = New System.Windows.Forms.Label() - Me.btnFav = New System.Windows.Forms.Button() - Me.lblFav = New System.Windows.Forms.Label() - Me.Label22 = New System.Windows.Forms.Label() - Me.btnListFont = New System.Windows.Forms.Button() - Me.lblListFont = New System.Windows.Forms.Label() - Me.Label61 = New System.Windows.Forms.Label() - Me.FontDialog1 = New System.Windows.Forms.FontDialog() - Me.ColorDialog1 = New System.Windows.Forms.ColorDialog() - Me.cmbNameBalloon = New System.Windows.Forms.ComboBox() - Me.Label10 = New System.Windows.Forms.Label() - Me.CheckUseRecommendStatus = New System.Windows.Forms.CheckBox() - Me.CmbDateTimeFormat = New System.Windows.Forms.ComboBox() - Me.Label23 = New System.Windows.Forms.Label() - Me.CheckBox3 = New System.Windows.Forms.CheckBox() - Me.Label25 = New System.Windows.Forms.Label() - Me.Label27 = New System.Windows.Forms.Label() - Me.TextBox3 = New System.Windows.Forms.TextBox() - Me.IconSize = New System.Windows.Forms.ComboBox() - Me.Label38 = New System.Windows.Forms.Label() - Me.UReadMng = New System.Windows.Forms.CheckBox() - Me.Label39 = New System.Windows.Forms.Label() - Me.CheckReadOldPosts = New System.Windows.Forms.CheckBox() - Me.Label40 = New System.Windows.Forms.Label() - Me.CheckCloseToExit = New System.Windows.Forms.CheckBox() - Me.Label41 = New System.Windows.Forms.Label() - Me.CheckMinimizeToTray = New System.Windows.Forms.CheckBox() - Me.BrowserPathText = New System.Windows.Forms.TextBox() - Me.Label44 = New System.Windows.Forms.Label() - Me.CheckDispUsername = New System.Windows.Forms.CheckBox() - Me.Label46 = New System.Windows.Forms.Label() - Me.Label45 = New System.Windows.Forms.Label() - Me.ComboDispTitle = New System.Windows.Forms.ComboBox() - Me.Label47 = New System.Windows.Forms.Label() - Me.TabControl1 = New System.Windows.Forms.TabControl() - Me.TabPage1 = New System.Windows.Forms.TabPage() - Me.GroupBox4 = New System.Windows.Forms.GroupBox() - Me.UserstreamPeriod = New System.Windows.Forms.TextBox() - Me.Label83 = New System.Windows.Forms.Label() - Me.Label70 = New System.Windows.Forms.Label() - Me.StartupUserstreamCheck = New System.Windows.Forms.CheckBox() - Me.ButtonApiCalc = New System.Windows.Forms.Button() - Me.LabelPostAndGet = New System.Windows.Forms.Label() - Me.LabelApiUsing = New System.Windows.Forms.Label() - Me.Label33 = New System.Windows.Forms.Label() - Me.ListsPeriod = New System.Windows.Forms.TextBox() - Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() - Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() - Me.Label6 = New System.Windows.Forms.Label() - Me.AuthClearButton = New System.Windows.Forms.Button() - Me.AuthUserLabel = New System.Windows.Forms.Label() - Me.AuthStateLabel = New System.Windows.Forms.Label() - Me.Label4 = New System.Windows.Forms.Label() - Me.AuthorizeButton = New System.Windows.Forms.Button() - Me.TextCountApiReply = New System.Windows.Forms.TextBox() - Me.Label7 = New System.Windows.Forms.Label() - Me.PubSearchPeriod = New System.Windows.Forms.TextBox() - Me.Label69 = New System.Windows.Forms.Label() - Me.ReplyPeriod = New System.Windows.Forms.TextBox() - Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() - Me.Label67 = New System.Windows.Forms.Label() - Me.TextCountApi = New System.Windows.Forms.TextBox() - Me.Label54 = New System.Windows.Forms.Label() - Me.CheckStartupFollowers = New System.Windows.Forms.CheckBox() - Me.Label51 = New System.Windows.Forms.Label() - Me.CheckStartupVersion = New System.Windows.Forms.CheckBox() - Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() - Me.Label74 = New System.Windows.Forms.Label() - Me.chkGetFav = New System.Windows.Forms.CheckBox() - Me.TabPage2 = New System.Windows.Forms.TabPage() - Me.ComboBoxPostKeySelect = New System.Windows.Forms.ComboBox() - Me.CheckRetweetNoConfirm = New System.Windows.Forms.CheckBox() - Me.Label42 = New System.Windows.Forms.Label() - Me.GroupBox3 = New System.Windows.Forms.GroupBox() - Me.HotkeyCheck = New System.Windows.Forms.CheckBox() - Me.HotkeyCode = New System.Windows.Forms.Label() - Me.HotkeyText = New System.Windows.Forms.TextBox() - Me.HotkeyWin = New System.Windows.Forms.CheckBox() - Me.HotkeyAlt = New System.Windows.Forms.CheckBox() - Me.HotkeyShift = New System.Windows.Forms.CheckBox() - Me.HotkeyCtrl = New System.Windows.Forms.CheckBox() - Me.Label82 = New System.Windows.Forms.Label() - Me.CheckHashSupple = New System.Windows.Forms.CheckBox() - Me.Label79 = New System.Windows.Forms.Label() - Me.CheckAtIdSupple = New System.Windows.Forms.CheckBox() - Me.TextBitlyPw = New System.Windows.Forms.TextBox() - Me.Label77 = New System.Windows.Forms.Label() - Me.TextBitlyId = New System.Windows.Forms.TextBox() - Me.Label76 = New System.Windows.Forms.Label() - Me.ComboBoxAutoShortUrlFirst = New System.Windows.Forms.ComboBox() - Me.Label71 = New System.Windows.Forms.Label() - Me.CheckAutoConvertUrl = New System.Windows.Forms.CheckBox() - Me.Label29 = New System.Windows.Forms.Label() - Me.Label57 = New System.Windows.Forms.Label() - Me.Label56 = New System.Windows.Forms.Label() - Me.CheckFavRestrict = New System.Windows.Forms.CheckBox() - Me.CheckTinyURL = New System.Windows.Forms.CheckBox() - Me.Label50 = New System.Windows.Forms.Label() - Me.Button3 = New System.Windows.Forms.Button() - Me.TabPage3 = New System.Windows.Forms.TabPage() - Me.Label35 = New System.Windows.Forms.Label() - Me.CheckPreviewEnable = New System.Windows.Forms.CheckBox() - Me.Label81 = New System.Windows.Forms.Label() - Me.LanguageCombo = New System.Windows.Forms.ComboBox() - Me.Label13 = New System.Windows.Forms.Label() - Me.CheckAlwaysTop = New System.Windows.Forms.CheckBox() - Me.Label58 = New System.Windows.Forms.Label() - Me.Label21 = New System.Windows.Forms.Label() - Me.CheckSortOrderLock = New System.Windows.Forms.CheckBox() - Me.Label78 = New System.Windows.Forms.Label() - Me.CheckShowGrid = New System.Windows.Forms.CheckBox() - Me.Label75 = New System.Windows.Forms.Label() - Me.CheckMonospace = New System.Windows.Forms.CheckBox() - Me.Label73 = New System.Windows.Forms.Label() - Me.chkReadOwnPost = New System.Windows.Forms.CheckBox() - Me.ReplyIconStateCombo = New System.Windows.Forms.ComboBox() - Me.Label72 = New System.Windows.Forms.Label() - Me.Label43 = New System.Windows.Forms.Label() - Me.Label48 = New System.Windows.Forms.Label() - Me.ChkNewMentionsBlink = New System.Windows.Forms.CheckBox() - Me.chkTabIconDisp = New System.Windows.Forms.CheckBox() - Me.Label68 = New System.Windows.Forms.Label() - Me.CheckBalloonLimit = New System.Windows.Forms.CheckBox() - Me.LabelDateTimeFormatApplied = New System.Windows.Forms.Label() - Me.Label62 = New System.Windows.Forms.Label() - Me.Label17 = New System.Windows.Forms.Label() - Me.chkUnreadStyle = New System.Windows.Forms.CheckBox() - Me.TabPage4 = New System.Windows.Forms.TabPage() - Me.TabPage5 = New System.Windows.Forms.TabPage() - Me.CheckEnableBasicAuth = New System.Windows.Forms.CheckBox() - Me.TwitterSearchAPIText = New System.Windows.Forms.TextBox() - Me.Label31 = New System.Windows.Forms.Label() - Me.TwitterAPIText = New System.Windows.Forms.TextBox() - Me.Label8 = New System.Windows.Forms.Label() - Me.CheckUseSsl = New System.Windows.Forms.CheckBox() - Me.Label64 = New System.Windows.Forms.Label() - Me.ConnectionTimeOut = New System.Windows.Forms.TextBox() - Me.Label63 = New System.Windows.Forms.Label() - Me.GroupBox2 = New System.Windows.Forms.GroupBox() - Me.Label55 = New System.Windows.Forms.Label() - Me.TextProxyPassword = New System.Windows.Forms.TextBox() - Me.LabelProxyPassword = New System.Windows.Forms.Label() - Me.TextProxyUser = New System.Windows.Forms.TextBox() - Me.LabelProxyUser = New System.Windows.Forms.Label() - Me.TextProxyPort = New System.Windows.Forms.TextBox() - Me.LabelProxyPort = New System.Windows.Forms.Label() - Me.TextProxyAddress = New System.Windows.Forms.TextBox() - Me.LabelProxyAddress = New System.Windows.Forms.Label() - Me.RadioProxySpecified = New System.Windows.Forms.RadioButton() - Me.RadioProxyIE = New System.Windows.Forms.RadioButton() - Me.RadioProxyNone = New System.Windows.Forms.RadioButton() - Me.TabPage6 = New System.Windows.Forms.TabPage() - Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() - Me.SearchTextCountApi = New System.Windows.Forms.TextBox() - Me.Label66 = New System.Windows.Forms.Label() - Me.FirstTextCountApi = New System.Windows.Forms.TextBox() - Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() - Me.Label53 = New System.Windows.Forms.Label() - Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() - Me.CheckNicoms = New System.Windows.Forms.CheckBox() - Me.Label60 = New System.Windows.Forms.Label() - Me.ComboBoxOutputzUrlmode = New System.Windows.Forms.ComboBox() - Me.Label59 = New System.Windows.Forms.Label() - Me.TextBoxOutputzKey = New System.Windows.Forms.TextBox() - Me.CheckOutputz = New System.Windows.Forms.CheckBox() - Me.GroupBox1.SuspendLayout() - Me.TabControl1.SuspendLayout() - Me.TabPage1.SuspendLayout() - Me.GroupBox4.SuspendLayout() - Me.TabPage2.SuspendLayout() - Me.GroupBox3.SuspendLayout() - Me.TabPage3.SuspendLayout() - Me.TabPage4.SuspendLayout() - Me.TabPage5.SuspendLayout() - Me.GroupBox2.SuspendLayout() - Me.TabPage6.SuspendLayout() - Me.SuspendLayout() - ' - 'Label1 - ' - resources.ApplyResources(Me.Label1, "Label1") - Me.Label1.Name = "Label1" - ' - 'Label2 - ' - resources.ApplyResources(Me.Label2, "Label2") - Me.Label2.Name = "Label2" - ' - 'Username - ' - resources.ApplyResources(Me.Username, "Username") - Me.Username.Name = "Username" - ' - 'Password - ' - resources.ApplyResources(Me.Password, "Password") - Me.Password.Name = "Password" - Me.Password.UseSystemPasswordChar = True - ' - 'Save - ' - resources.ApplyResources(Me.Save, "Save") - Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK - Me.Save.Name = "Save" - Me.Save.UseVisualStyleBackColor = True - ' - 'Cancel - ' - resources.ApplyResources(Me.Cancel, "Cancel") - Me.Cancel.CausesValidation = False - Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel - Me.Cancel.Name = "Cancel" - Me.Cancel.UseVisualStyleBackColor = True - ' - 'Label3 - ' - resources.ApplyResources(Me.Label3, "Label3") - Me.Label3.Name = "Label3" - ' - 'TimelinePeriod - ' - resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") - Me.TimelinePeriod.Name = "TimelinePeriod" - ' - 'DMPeriod - ' - resources.ApplyResources(Me.DMPeriod, "DMPeriod") - Me.DMPeriod.Name = "DMPeriod" - ' - 'Label5 - ' - resources.ApplyResources(Me.Label5, "Label5") - Me.Label5.Name = "Label5" - ' - 'Label9 - ' - resources.ApplyResources(Me.Label9, "Label9") - Me.Label9.Name = "Label9" - ' - 'StartupReaded - ' - resources.ApplyResources(Me.StartupReaded, "StartupReaded") - Me.StartupReaded.Name = "StartupReaded" - Me.StartupReaded.UseVisualStyleBackColor = True - ' - 'Label11 - ' - resources.ApplyResources(Me.Label11, "Label11") - Me.Label11.Name = "Label11" - ' - 'Label12 - ' - resources.ApplyResources(Me.Label12, "Label12") - Me.Label12.Name = "Label12" - ' - 'StatusText - ' - resources.ApplyResources(Me.StatusText, "StatusText") - Me.StatusText.Name = "StatusText" - ' - 'PlaySnd - ' - resources.ApplyResources(Me.PlaySnd, "PlaySnd") - Me.PlaySnd.Name = "PlaySnd" - Me.PlaySnd.UseVisualStyleBackColor = True - ' - 'Label14 - ' - resources.ApplyResources(Me.Label14, "Label14") - Me.Label14.Name = "Label14" - ' - 'Label15 - ' - resources.ApplyResources(Me.Label15, "Label15") - Me.Label15.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label15.Name = "Label15" - ' - 'OneWayLv - ' - resources.ApplyResources(Me.OneWayLv, "OneWayLv") - Me.OneWayLv.Name = "OneWayLv" - Me.OneWayLv.UseVisualStyleBackColor = True - ' - 'Label16 - ' - resources.ApplyResources(Me.Label16, "Label16") - Me.Label16.Name = "Label16" - ' - 'GroupBox1 - ' - resources.ApplyResources(Me.GroupBox1, "GroupBox1") - Me.GroupBox1.Controls.Add(Me.btnRetweet) - Me.GroupBox1.Controls.Add(Me.lblRetweet) - Me.GroupBox1.Controls.Add(Me.Label80) - Me.GroupBox1.Controls.Add(Me.ButtonBackToDefaultFontColor) - Me.GroupBox1.Controls.Add(Me.btnDetailLink) - Me.GroupBox1.Controls.Add(Me.lblDetailLink) - Me.GroupBox1.Controls.Add(Me.Label18) - Me.GroupBox1.Controls.Add(Me.btnInputFont) - Me.GroupBox1.Controls.Add(Me.lblInputFont) - Me.GroupBox1.Controls.Add(Me.Label65) - Me.GroupBox1.Controls.Add(Me.btnInputBackcolor) - Me.GroupBox1.Controls.Add(Me.lblInputBackcolor) - Me.GroupBox1.Controls.Add(Me.Label52) - Me.GroupBox1.Controls.Add(Me.btnUnread) - Me.GroupBox1.Controls.Add(Me.lblUnread) - Me.GroupBox1.Controls.Add(Me.Label20) - Me.GroupBox1.Controls.Add(Me.btnAtTo) - Me.GroupBox1.Controls.Add(Me.lblAtTo) - Me.GroupBox1.Controls.Add(Me.Label49) - Me.GroupBox1.Controls.Add(Me.btnDetailBack) - Me.GroupBox1.Controls.Add(Me.lblDetailBackcolor) - Me.GroupBox1.Controls.Add(Me.Label37) - Me.GroupBox1.Controls.Add(Me.btnListBack) - Me.GroupBox1.Controls.Add(Me.lblListBackcolor) - Me.GroupBox1.Controls.Add(Me.Label19) - Me.GroupBox1.Controls.Add(Me.btnAtFromTarget) - Me.GroupBox1.Controls.Add(Me.lblAtFromTarget) - Me.GroupBox1.Controls.Add(Me.Label28) - Me.GroupBox1.Controls.Add(Me.btnAtTarget) - Me.GroupBox1.Controls.Add(Me.lblAtTarget) - Me.GroupBox1.Controls.Add(Me.Label30) - Me.GroupBox1.Controls.Add(Me.btnTarget) - Me.GroupBox1.Controls.Add(Me.lblTarget) - Me.GroupBox1.Controls.Add(Me.Label32) - Me.GroupBox1.Controls.Add(Me.btnAtSelf) - Me.GroupBox1.Controls.Add(Me.lblAtSelf) - Me.GroupBox1.Controls.Add(Me.Label34) - Me.GroupBox1.Controls.Add(Me.btnSelf) - Me.GroupBox1.Controls.Add(Me.lblSelf) - Me.GroupBox1.Controls.Add(Me.Label36) - Me.GroupBox1.Controls.Add(Me.btnDetail) - Me.GroupBox1.Controls.Add(Me.lblDetail) - Me.GroupBox1.Controls.Add(Me.Label26) - Me.GroupBox1.Controls.Add(Me.btnOWL) - Me.GroupBox1.Controls.Add(Me.lblOWL) - Me.GroupBox1.Controls.Add(Me.Label24) - Me.GroupBox1.Controls.Add(Me.btnFav) - Me.GroupBox1.Controls.Add(Me.lblFav) - Me.GroupBox1.Controls.Add(Me.Label22) - Me.GroupBox1.Controls.Add(Me.btnListFont) - Me.GroupBox1.Controls.Add(Me.lblListFont) - Me.GroupBox1.Controls.Add(Me.Label61) - Me.GroupBox1.Name = "GroupBox1" - Me.GroupBox1.TabStop = False - ' - 'btnRetweet - ' - resources.ApplyResources(Me.btnRetweet, "btnRetweet") - Me.btnRetweet.Name = "btnRetweet" - Me.btnRetweet.UseVisualStyleBackColor = True - ' - 'lblRetweet - ' - resources.ApplyResources(Me.lblRetweet, "lblRetweet") - Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblRetweet.Name = "lblRetweet" - ' - 'Label80 - ' - resources.ApplyResources(Me.Label80, "Label80") - Me.Label80.Name = "Label80" - ' - 'ButtonBackToDefaultFontColor - ' - resources.ApplyResources(Me.ButtonBackToDefaultFontColor, "ButtonBackToDefaultFontColor") - Me.ButtonBackToDefaultFontColor.Name = "ButtonBackToDefaultFontColor" - Me.ButtonBackToDefaultFontColor.UseVisualStyleBackColor = True - ' - 'btnDetailLink - ' - resources.ApplyResources(Me.btnDetailLink, "btnDetailLink") - Me.btnDetailLink.Name = "btnDetailLink" - Me.btnDetailLink.UseVisualStyleBackColor = True - ' - 'lblDetailLink - ' - resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") - Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblDetailLink.Name = "lblDetailLink" - ' - 'Label18 - ' - resources.ApplyResources(Me.Label18, "Label18") - Me.Label18.Name = "Label18" - ' - 'btnInputFont - ' - resources.ApplyResources(Me.btnInputFont, "btnInputFont") - Me.btnInputFont.Name = "btnInputFont" - Me.btnInputFont.UseVisualStyleBackColor = True - ' - 'lblInputFont - ' - resources.ApplyResources(Me.lblInputFont, "lblInputFont") - Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblInputFont.Name = "lblInputFont" - ' - 'Label65 - ' - resources.ApplyResources(Me.Label65, "Label65") - Me.Label65.Name = "Label65" - ' - 'btnInputBackcolor - ' - resources.ApplyResources(Me.btnInputBackcolor, "btnInputBackcolor") - Me.btnInputBackcolor.Name = "btnInputBackcolor" - Me.btnInputBackcolor.UseVisualStyleBackColor = True - ' - 'lblInputBackcolor - ' - resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") - Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblInputBackcolor.Name = "lblInputBackcolor" - ' - 'Label52 - ' - resources.ApplyResources(Me.Label52, "Label52") - Me.Label52.Name = "Label52" - ' - 'btnUnread - ' - resources.ApplyResources(Me.btnUnread, "btnUnread") - Me.btnUnread.Name = "btnUnread" - Me.btnUnread.UseVisualStyleBackColor = True - ' - 'lblUnread - ' - resources.ApplyResources(Me.lblUnread, "lblUnread") - Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblUnread.Name = "lblUnread" - ' - 'Label20 - ' - resources.ApplyResources(Me.Label20, "Label20") - Me.Label20.Name = "Label20" - ' - 'btnAtTo - ' - resources.ApplyResources(Me.btnAtTo, "btnAtTo") - Me.btnAtTo.Name = "btnAtTo" - Me.btnAtTo.UseVisualStyleBackColor = True - ' - 'lblAtTo - ' - resources.ApplyResources(Me.lblAtTo, "lblAtTo") - Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtTo.Name = "lblAtTo" - ' - 'Label49 - ' - resources.ApplyResources(Me.Label49, "Label49") - Me.Label49.Name = "Label49" - ' - 'btnDetailBack - ' - resources.ApplyResources(Me.btnDetailBack, "btnDetailBack") - Me.btnDetailBack.Name = "btnDetailBack" - Me.btnDetailBack.UseVisualStyleBackColor = True - ' - 'lblDetailBackcolor - ' - resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") - Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblDetailBackcolor.Name = "lblDetailBackcolor" - ' - 'Label37 - ' - resources.ApplyResources(Me.Label37, "Label37") - Me.Label37.Name = "Label37" - ' - 'btnListBack - ' - resources.ApplyResources(Me.btnListBack, "btnListBack") - Me.btnListBack.Name = "btnListBack" - Me.btnListBack.UseVisualStyleBackColor = True - ' - 'lblListBackcolor - ' - resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") - Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblListBackcolor.Name = "lblListBackcolor" - ' - 'Label19 - ' - resources.ApplyResources(Me.Label19, "Label19") - Me.Label19.Name = "Label19" - ' - 'btnAtFromTarget - ' - resources.ApplyResources(Me.btnAtFromTarget, "btnAtFromTarget") - Me.btnAtFromTarget.Name = "btnAtFromTarget" - Me.btnAtFromTarget.UseVisualStyleBackColor = True - ' - 'lblAtFromTarget - ' - resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") - Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtFromTarget.Name = "lblAtFromTarget" - ' - 'Label28 - ' - resources.ApplyResources(Me.Label28, "Label28") - Me.Label28.Name = "Label28" - ' - 'btnAtTarget - ' - resources.ApplyResources(Me.btnAtTarget, "btnAtTarget") - Me.btnAtTarget.Name = "btnAtTarget" - Me.btnAtTarget.UseVisualStyleBackColor = True - ' - 'lblAtTarget - ' - resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") - Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtTarget.Name = "lblAtTarget" - ' - 'Label30 - ' - resources.ApplyResources(Me.Label30, "Label30") - Me.Label30.Name = "Label30" - ' - 'btnTarget - ' - resources.ApplyResources(Me.btnTarget, "btnTarget") - Me.btnTarget.Name = "btnTarget" - Me.btnTarget.UseVisualStyleBackColor = True - ' - 'lblTarget - ' - resources.ApplyResources(Me.lblTarget, "lblTarget") - Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblTarget.Name = "lblTarget" - ' - 'Label32 - ' - resources.ApplyResources(Me.Label32, "Label32") - Me.Label32.Name = "Label32" - ' - 'btnAtSelf - ' - resources.ApplyResources(Me.btnAtSelf, "btnAtSelf") - Me.btnAtSelf.Name = "btnAtSelf" - Me.btnAtSelf.UseVisualStyleBackColor = True - ' - 'lblAtSelf - ' - resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") - Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtSelf.Name = "lblAtSelf" - ' - 'Label34 - ' - resources.ApplyResources(Me.Label34, "Label34") - Me.Label34.Name = "Label34" - ' - 'btnSelf - ' - resources.ApplyResources(Me.btnSelf, "btnSelf") - Me.btnSelf.Name = "btnSelf" - Me.btnSelf.UseVisualStyleBackColor = True - ' - 'lblSelf - ' - resources.ApplyResources(Me.lblSelf, "lblSelf") - Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblSelf.Name = "lblSelf" - ' - 'Label36 - ' - resources.ApplyResources(Me.Label36, "Label36") - Me.Label36.Name = "Label36" - ' - 'btnDetail - ' - resources.ApplyResources(Me.btnDetail, "btnDetail") - Me.btnDetail.Name = "btnDetail" - Me.btnDetail.UseVisualStyleBackColor = True - ' - 'lblDetail - ' - resources.ApplyResources(Me.lblDetail, "lblDetail") - Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblDetail.Name = "lblDetail" - ' - 'Label26 - ' - resources.ApplyResources(Me.Label26, "Label26") - Me.Label26.Name = "Label26" - ' - 'btnOWL - ' - resources.ApplyResources(Me.btnOWL, "btnOWL") - Me.btnOWL.Name = "btnOWL" - Me.btnOWL.UseVisualStyleBackColor = True - ' - 'lblOWL - ' - resources.ApplyResources(Me.lblOWL, "lblOWL") - Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblOWL.Name = "lblOWL" - ' - 'Label24 - ' - resources.ApplyResources(Me.Label24, "Label24") - Me.Label24.Name = "Label24" - ' - 'btnFav - ' - resources.ApplyResources(Me.btnFav, "btnFav") - Me.btnFav.Name = "btnFav" - Me.btnFav.UseVisualStyleBackColor = True - ' - 'lblFav - ' - resources.ApplyResources(Me.lblFav, "lblFav") - Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblFav.Name = "lblFav" - ' - 'Label22 - ' - resources.ApplyResources(Me.Label22, "Label22") - Me.Label22.Name = "Label22" - ' - 'btnListFont - ' - resources.ApplyResources(Me.btnListFont, "btnListFont") - Me.btnListFont.Name = "btnListFont" - Me.btnListFont.UseVisualStyleBackColor = True - ' - 'lblListFont - ' - resources.ApplyResources(Me.lblListFont, "lblListFont") - Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblListFont.Name = "lblListFont" - ' - 'Label61 - ' - resources.ApplyResources(Me.Label61, "Label61") - Me.Label61.Name = "Label61" - ' - 'cmbNameBalloon - ' - resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") - Me.cmbNameBalloon.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.cmbNameBalloon.FormattingEnabled = True - Me.cmbNameBalloon.Items.AddRange(New Object() {resources.GetString("cmbNameBalloon.Items"), resources.GetString("cmbNameBalloon.Items1"), resources.GetString("cmbNameBalloon.Items2")}) - Me.cmbNameBalloon.Name = "cmbNameBalloon" - ' - 'Label10 - ' - resources.ApplyResources(Me.Label10, "Label10") - Me.Label10.Name = "Label10" - ' - 'CheckUseRecommendStatus - ' - resources.ApplyResources(Me.CheckUseRecommendStatus, "CheckUseRecommendStatus") - Me.CheckUseRecommendStatus.Name = "CheckUseRecommendStatus" - Me.CheckUseRecommendStatus.UseVisualStyleBackColor = True - ' - 'CmbDateTimeFormat - ' - resources.ApplyResources(Me.CmbDateTimeFormat, "CmbDateTimeFormat") - Me.CmbDateTimeFormat.Items.AddRange(New Object() {resources.GetString("CmbDateTimeFormat.Items"), resources.GetString("CmbDateTimeFormat.Items1"), resources.GetString("CmbDateTimeFormat.Items2"), resources.GetString("CmbDateTimeFormat.Items3"), resources.GetString("CmbDateTimeFormat.Items4"), resources.GetString("CmbDateTimeFormat.Items5"), resources.GetString("CmbDateTimeFormat.Items6"), resources.GetString("CmbDateTimeFormat.Items7"), resources.GetString("CmbDateTimeFormat.Items8"), resources.GetString("CmbDateTimeFormat.Items9"), resources.GetString("CmbDateTimeFormat.Items10")}) - Me.CmbDateTimeFormat.Name = "CmbDateTimeFormat" - ' - 'Label23 - ' - resources.ApplyResources(Me.Label23, "Label23") - Me.Label23.Name = "Label23" - ' - 'CheckBox3 - ' - resources.ApplyResources(Me.CheckBox3, "CheckBox3") - Me.CheckBox3.Name = "CheckBox3" - Me.CheckBox3.UseVisualStyleBackColor = True - ' - 'Label25 - ' - resources.ApplyResources(Me.Label25, "Label25") - Me.Label25.Name = "Label25" - ' - 'Label27 - ' - resources.ApplyResources(Me.Label27, "Label27") - Me.Label27.Name = "Label27" - ' - 'TextBox3 - ' - resources.ApplyResources(Me.TextBox3, "TextBox3") - Me.TextBox3.Name = "TextBox3" - ' - 'IconSize - ' - resources.ApplyResources(Me.IconSize, "IconSize") - Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.IconSize.FormattingEnabled = True - Me.IconSize.Items.AddRange(New Object() {resources.GetString("IconSize.Items"), resources.GetString("IconSize.Items1"), resources.GetString("IconSize.Items2"), resources.GetString("IconSize.Items3"), resources.GetString("IconSize.Items4")}) - Me.IconSize.Name = "IconSize" - ' - 'Label38 - ' - resources.ApplyResources(Me.Label38, "Label38") - Me.Label38.Name = "Label38" - ' - 'UReadMng - ' - resources.ApplyResources(Me.UReadMng, "UReadMng") - Me.UReadMng.Name = "UReadMng" - Me.UReadMng.UseVisualStyleBackColor = True - ' - 'Label39 - ' - resources.ApplyResources(Me.Label39, "Label39") - Me.Label39.Name = "Label39" - ' - 'CheckReadOldPosts - ' - resources.ApplyResources(Me.CheckReadOldPosts, "CheckReadOldPosts") - Me.CheckReadOldPosts.Name = "CheckReadOldPosts" - Me.CheckReadOldPosts.UseVisualStyleBackColor = True - ' - 'Label40 - ' - resources.ApplyResources(Me.Label40, "Label40") - Me.Label40.Name = "Label40" - ' - 'CheckCloseToExit - ' - resources.ApplyResources(Me.CheckCloseToExit, "CheckCloseToExit") - Me.CheckCloseToExit.Name = "CheckCloseToExit" - Me.CheckCloseToExit.UseVisualStyleBackColor = True - ' - 'Label41 - ' - resources.ApplyResources(Me.Label41, "Label41") - Me.Label41.Name = "Label41" - ' - 'CheckMinimizeToTray - ' - resources.ApplyResources(Me.CheckMinimizeToTray, "CheckMinimizeToTray") - Me.CheckMinimizeToTray.Name = "CheckMinimizeToTray" - Me.CheckMinimizeToTray.UseVisualStyleBackColor = True - ' - 'BrowserPathText - ' - resources.ApplyResources(Me.BrowserPathText, "BrowserPathText") - Me.BrowserPathText.Name = "BrowserPathText" - ' - 'Label44 - ' - resources.ApplyResources(Me.Label44, "Label44") - Me.Label44.Name = "Label44" - ' - 'CheckDispUsername - ' - resources.ApplyResources(Me.CheckDispUsername, "CheckDispUsername") - Me.CheckDispUsername.Name = "CheckDispUsername" - Me.CheckDispUsername.UseVisualStyleBackColor = True - ' - 'Label46 - ' - resources.ApplyResources(Me.Label46, "Label46") - Me.Label46.Name = "Label46" - ' - 'Label45 - ' - resources.ApplyResources(Me.Label45, "Label45") - Me.Label45.Name = "Label45" - ' - 'ComboDispTitle - ' - resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") - Me.ComboDispTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboDispTitle.FormattingEnabled = True - Me.ComboDispTitle.Items.AddRange(New Object() {resources.GetString("ComboDispTitle.Items"), resources.GetString("ComboDispTitle.Items1"), resources.GetString("ComboDispTitle.Items2"), resources.GetString("ComboDispTitle.Items3"), resources.GetString("ComboDispTitle.Items4"), resources.GetString("ComboDispTitle.Items5"), resources.GetString("ComboDispTitle.Items6"), resources.GetString("ComboDispTitle.Items7")}) - Me.ComboDispTitle.Name = "ComboDispTitle" - ' - 'Label47 - ' - resources.ApplyResources(Me.Label47, "Label47") - Me.Label47.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label47.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label47.Name = "Label47" - ' - 'TabControl1 - ' - resources.ApplyResources(Me.TabControl1, "TabControl1") - Me.TabControl1.Controls.Add(Me.TabPage1) - Me.TabControl1.Controls.Add(Me.TabPage2) - Me.TabControl1.Controls.Add(Me.TabPage3) - Me.TabControl1.Controls.Add(Me.TabPage4) - Me.TabControl1.Controls.Add(Me.TabPage5) - Me.TabControl1.Controls.Add(Me.TabPage6) - Me.TabControl1.Name = "TabControl1" - Me.TabControl1.SelectedIndex = 0 - ' - 'TabPage1 - ' - resources.ApplyResources(Me.TabPage1, "TabPage1") - Me.TabPage1.Controls.Add(Me.TimelinePeriod) - Me.TabPage1.Controls.Add(Me.Label9) - Me.TabPage1.Controls.Add(Me.Label3) - Me.TabPage1.Controls.Add(Me.StartupReaded) - Me.TabPage1.Controls.Add(Me.GroupBox4) - Me.TabPage1.Controls.Add(Me.ButtonApiCalc) - Me.TabPage1.Controls.Add(Me.LabelPostAndGet) - Me.TabPage1.Controls.Add(Me.LabelApiUsing) - Me.TabPage1.Controls.Add(Me.Label33) - Me.TabPage1.Controls.Add(Me.ListsPeriod) - Me.TabPage1.Controls.Add(Me.AuthBasicRadio) - Me.TabPage1.Controls.Add(Me.AuthOAuthRadio) - Me.TabPage1.Controls.Add(Me.Label6) - Me.TabPage1.Controls.Add(Me.AuthClearButton) - Me.TabPage1.Controls.Add(Me.AuthUserLabel) - Me.TabPage1.Controls.Add(Me.AuthStateLabel) - Me.TabPage1.Controls.Add(Me.Label4) - Me.TabPage1.Controls.Add(Me.AuthorizeButton) - Me.TabPage1.Controls.Add(Me.TextCountApiReply) - Me.TabPage1.Controls.Add(Me.Label7) - Me.TabPage1.Controls.Add(Me.PubSearchPeriod) - Me.TabPage1.Controls.Add(Me.Label69) - Me.TabPage1.Controls.Add(Me.ReplyPeriod) - Me.TabPage1.Controls.Add(Me.CheckPostAndGet) - Me.TabPage1.Controls.Add(Me.Label67) - Me.TabPage1.Controls.Add(Me.TextCountApi) - Me.TabPage1.Controls.Add(Me.Label54) - Me.TabPage1.Controls.Add(Me.CheckStartupFollowers) - Me.TabPage1.Controls.Add(Me.Label51) - Me.TabPage1.Controls.Add(Me.CheckStartupVersion) - Me.TabPage1.Controls.Add(Me.CheckPeriodAdjust) - Me.TabPage1.Controls.Add(Me.Label1) - Me.TabPage1.Controls.Add(Me.Label2) - Me.TabPage1.Controls.Add(Me.Username) - Me.TabPage1.Controls.Add(Me.Password) - Me.TabPage1.Controls.Add(Me.Label5) - Me.TabPage1.Controls.Add(Me.DMPeriod) - Me.TabPage1.Controls.Add(Me.Label74) - Me.TabPage1.Controls.Add(Me.chkGetFav) - Me.TabPage1.Name = "TabPage1" - Me.TabPage1.UseVisualStyleBackColor = True - ' - 'GroupBox4 - ' - resources.ApplyResources(Me.GroupBox4, "GroupBox4") - Me.GroupBox4.Controls.Add(Me.UserstreamPeriod) - Me.GroupBox4.Controls.Add(Me.Label83) - Me.GroupBox4.Controls.Add(Me.Label70) - Me.GroupBox4.Controls.Add(Me.StartupUserstreamCheck) - Me.GroupBox4.Name = "GroupBox4" - Me.GroupBox4.TabStop = False - ' - 'UserstreamPeriod - ' - resources.ApplyResources(Me.UserstreamPeriod, "UserstreamPeriod") - Me.UserstreamPeriod.Name = "UserstreamPeriod" - ' - 'Label83 - ' - resources.ApplyResources(Me.Label83, "Label83") - Me.Label83.Name = "Label83" - ' - 'Label70 - ' - resources.ApplyResources(Me.Label70, "Label70") - Me.Label70.Name = "Label70" - ' - 'StartupUserstreamCheck - ' - resources.ApplyResources(Me.StartupUserstreamCheck, "StartupUserstreamCheck") - Me.StartupUserstreamCheck.Name = "StartupUserstreamCheck" - Me.StartupUserstreamCheck.UseVisualStyleBackColor = True - ' - 'ButtonApiCalc - ' - resources.ApplyResources(Me.ButtonApiCalc, "ButtonApiCalc") - Me.ButtonApiCalc.Name = "ButtonApiCalc" - Me.ButtonApiCalc.UseVisualStyleBackColor = True - ' - 'LabelPostAndGet - ' - resources.ApplyResources(Me.LabelPostAndGet, "LabelPostAndGet") - Me.LabelPostAndGet.Name = "LabelPostAndGet" - ' - 'LabelApiUsing - ' - resources.ApplyResources(Me.LabelApiUsing, "LabelApiUsing") - Me.LabelApiUsing.Name = "LabelApiUsing" - ' - 'Label33 - ' - resources.ApplyResources(Me.Label33, "Label33") - Me.Label33.Name = "Label33" - ' - 'ListsPeriod - ' - resources.ApplyResources(Me.ListsPeriod, "ListsPeriod") - Me.ListsPeriod.Name = "ListsPeriod" - ' - 'AuthBasicRadio - ' - resources.ApplyResources(Me.AuthBasicRadio, "AuthBasicRadio") - Me.AuthBasicRadio.Name = "AuthBasicRadio" - Me.AuthBasicRadio.UseVisualStyleBackColor = True - ' - 'AuthOAuthRadio - ' - resources.ApplyResources(Me.AuthOAuthRadio, "AuthOAuthRadio") - Me.AuthOAuthRadio.Checked = True - Me.AuthOAuthRadio.Name = "AuthOAuthRadio" - Me.AuthOAuthRadio.TabStop = True - Me.AuthOAuthRadio.UseVisualStyleBackColor = True - ' - 'Label6 - ' - resources.ApplyResources(Me.Label6, "Label6") - Me.Label6.Name = "Label6" - ' - 'AuthClearButton - ' - resources.ApplyResources(Me.AuthClearButton, "AuthClearButton") - Me.AuthClearButton.Name = "AuthClearButton" - Me.AuthClearButton.UseVisualStyleBackColor = True - ' - 'AuthUserLabel - ' - resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") - Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.AuthUserLabel.Name = "AuthUserLabel" - ' - 'AuthStateLabel - ' - resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") - Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.AuthStateLabel.Name = "AuthStateLabel" - ' - 'Label4 - ' - resources.ApplyResources(Me.Label4, "Label4") - Me.Label4.Name = "Label4" - ' - 'AuthorizeButton - ' - resources.ApplyResources(Me.AuthorizeButton, "AuthorizeButton") - Me.AuthorizeButton.Name = "AuthorizeButton" - Me.AuthorizeButton.UseVisualStyleBackColor = True - ' - 'TextCountApiReply - ' - resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") - Me.TextCountApiReply.Name = "TextCountApiReply" - ' - 'Label7 - ' - resources.ApplyResources(Me.Label7, "Label7") - Me.Label7.Name = "Label7" - ' - 'PubSearchPeriod - ' - resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") - Me.PubSearchPeriod.Name = "PubSearchPeriod" - ' - 'Label69 - ' - resources.ApplyResources(Me.Label69, "Label69") - Me.Label69.Name = "Label69" - ' - 'ReplyPeriod - ' - resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") - Me.ReplyPeriod.Name = "ReplyPeriod" - ' - 'CheckPostAndGet - ' - resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") - Me.CheckPostAndGet.Name = "CheckPostAndGet" - Me.CheckPostAndGet.UseVisualStyleBackColor = True - ' - 'Label67 - ' - resources.ApplyResources(Me.Label67, "Label67") - Me.Label67.Name = "Label67" - ' - 'TextCountApi - ' - resources.ApplyResources(Me.TextCountApi, "TextCountApi") - Me.TextCountApi.Name = "TextCountApi" - ' - 'Label54 - ' - resources.ApplyResources(Me.Label54, "Label54") - Me.Label54.Name = "Label54" - ' - 'CheckStartupFollowers - ' - resources.ApplyResources(Me.CheckStartupFollowers, "CheckStartupFollowers") - Me.CheckStartupFollowers.Name = "CheckStartupFollowers" - Me.CheckStartupFollowers.UseVisualStyleBackColor = True - ' - 'Label51 - ' - resources.ApplyResources(Me.Label51, "Label51") - Me.Label51.Name = "Label51" - ' - 'CheckStartupVersion - ' - resources.ApplyResources(Me.CheckStartupVersion, "CheckStartupVersion") - Me.CheckStartupVersion.Name = "CheckStartupVersion" - Me.CheckStartupVersion.UseVisualStyleBackColor = True - ' - 'CheckPeriodAdjust - ' - resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") - Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" - Me.CheckPeriodAdjust.UseVisualStyleBackColor = True - ' - 'Label74 - ' - resources.ApplyResources(Me.Label74, "Label74") - Me.Label74.Name = "Label74" - ' - 'chkGetFav - ' - resources.ApplyResources(Me.chkGetFav, "chkGetFav") - Me.chkGetFav.Name = "chkGetFav" - Me.chkGetFav.UseVisualStyleBackColor = True - ' - 'TabPage2 - ' - resources.ApplyResources(Me.TabPage2, "TabPage2") - Me.TabPage2.Controls.Add(Me.ComboBoxPostKeySelect) - Me.TabPage2.Controls.Add(Me.CheckRetweetNoConfirm) - Me.TabPage2.Controls.Add(Me.Label42) - Me.TabPage2.Controls.Add(Me.GroupBox3) - Me.TabPage2.Controls.Add(Me.Label82) - Me.TabPage2.Controls.Add(Me.CheckHashSupple) - Me.TabPage2.Controls.Add(Me.Label79) - Me.TabPage2.Controls.Add(Me.CheckAtIdSupple) - Me.TabPage2.Controls.Add(Me.TextBitlyPw) - Me.TabPage2.Controls.Add(Me.Label77) - Me.TabPage2.Controls.Add(Me.TextBitlyId) - Me.TabPage2.Controls.Add(Me.Label76) - Me.TabPage2.Controls.Add(Me.ComboBoxAutoShortUrlFirst) - Me.TabPage2.Controls.Add(Me.Label71) - Me.TabPage2.Controls.Add(Me.CheckAutoConvertUrl) - Me.TabPage2.Controls.Add(Me.Label29) - Me.TabPage2.Controls.Add(Me.Label57) - Me.TabPage2.Controls.Add(Me.Label56) - Me.TabPage2.Controls.Add(Me.CheckFavRestrict) - Me.TabPage2.Controls.Add(Me.CheckTinyURL) - Me.TabPage2.Controls.Add(Me.Label50) - Me.TabPage2.Controls.Add(Me.Button3) - Me.TabPage2.Controls.Add(Me.PlaySnd) - Me.TabPage2.Controls.Add(Me.Label14) - Me.TabPage2.Controls.Add(Me.Label15) - Me.TabPage2.Controls.Add(Me.Label38) - Me.TabPage2.Controls.Add(Me.BrowserPathText) - Me.TabPage2.Controls.Add(Me.UReadMng) - Me.TabPage2.Controls.Add(Me.Label44) - Me.TabPage2.Controls.Add(Me.CheckCloseToExit) - Me.TabPage2.Controls.Add(Me.Label40) - Me.TabPage2.Controls.Add(Me.CheckMinimizeToTray) - Me.TabPage2.Controls.Add(Me.Label41) - Me.TabPage2.Controls.Add(Me.Label27) - Me.TabPage2.Controls.Add(Me.Label39) - Me.TabPage2.Controls.Add(Me.CheckReadOldPosts) - Me.TabPage2.Controls.Add(Me.Label12) - Me.TabPage2.Controls.Add(Me.StatusText) - Me.TabPage2.Controls.Add(Me.CheckUseRecommendStatus) - Me.TabPage2.Name = "TabPage2" - Me.TabPage2.UseVisualStyleBackColor = True - ' - 'ComboBoxPostKeySelect - ' - resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") - Me.ComboBoxPostKeySelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxPostKeySelect.FormattingEnabled = True - Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {resources.GetString("ComboBoxPostKeySelect.Items"), resources.GetString("ComboBoxPostKeySelect.Items1"), resources.GetString("ComboBoxPostKeySelect.Items2")}) - Me.ComboBoxPostKeySelect.Name = "ComboBoxPostKeySelect" - ' - 'CheckRetweetNoConfirm - ' - resources.ApplyResources(Me.CheckRetweetNoConfirm, "CheckRetweetNoConfirm") - Me.CheckRetweetNoConfirm.Name = "CheckRetweetNoConfirm" - Me.CheckRetweetNoConfirm.UseVisualStyleBackColor = True - ' - 'Label42 - ' - resources.ApplyResources(Me.Label42, "Label42") - Me.Label42.Name = "Label42" - ' - 'GroupBox3 - ' - resources.ApplyResources(Me.GroupBox3, "GroupBox3") - Me.GroupBox3.Controls.Add(Me.HotkeyCheck) - Me.GroupBox3.Controls.Add(Me.HotkeyCode) - Me.GroupBox3.Controls.Add(Me.HotkeyText) - Me.GroupBox3.Controls.Add(Me.HotkeyWin) - Me.GroupBox3.Controls.Add(Me.HotkeyAlt) - Me.GroupBox3.Controls.Add(Me.HotkeyShift) - Me.GroupBox3.Controls.Add(Me.HotkeyCtrl) - Me.GroupBox3.Name = "GroupBox3" - Me.GroupBox3.TabStop = False - ' - 'HotkeyCheck - ' - resources.ApplyResources(Me.HotkeyCheck, "HotkeyCheck") - Me.HotkeyCheck.Name = "HotkeyCheck" - Me.HotkeyCheck.UseVisualStyleBackColor = True - ' - 'HotkeyCode - ' - resources.ApplyResources(Me.HotkeyCode, "HotkeyCode") - Me.HotkeyCode.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.HotkeyCode.Name = "HotkeyCode" - ' - 'HotkeyText - ' - resources.ApplyResources(Me.HotkeyText, "HotkeyText") - Me.HotkeyText.Name = "HotkeyText" - Me.HotkeyText.ReadOnly = True - ' - 'HotkeyWin - ' - resources.ApplyResources(Me.HotkeyWin, "HotkeyWin") - Me.HotkeyWin.Name = "HotkeyWin" - Me.HotkeyWin.UseVisualStyleBackColor = True - ' - 'HotkeyAlt - ' - resources.ApplyResources(Me.HotkeyAlt, "HotkeyAlt") - Me.HotkeyAlt.Name = "HotkeyAlt" - Me.HotkeyAlt.UseVisualStyleBackColor = True - ' - 'HotkeyShift - ' - resources.ApplyResources(Me.HotkeyShift, "HotkeyShift") - Me.HotkeyShift.Name = "HotkeyShift" - Me.HotkeyShift.UseVisualStyleBackColor = True - ' - 'HotkeyCtrl - ' - resources.ApplyResources(Me.HotkeyCtrl, "HotkeyCtrl") - Me.HotkeyCtrl.Name = "HotkeyCtrl" - Me.HotkeyCtrl.UseVisualStyleBackColor = True - ' - 'Label82 - ' - resources.ApplyResources(Me.Label82, "Label82") - Me.Label82.Name = "Label82" - ' - 'CheckHashSupple - ' - resources.ApplyResources(Me.CheckHashSupple, "CheckHashSupple") - Me.CheckHashSupple.Name = "CheckHashSupple" - Me.CheckHashSupple.UseVisualStyleBackColor = True - ' - 'Label79 - ' - resources.ApplyResources(Me.Label79, "Label79") - Me.Label79.Name = "Label79" - ' - 'CheckAtIdSupple - ' - resources.ApplyResources(Me.CheckAtIdSupple, "CheckAtIdSupple") - Me.CheckAtIdSupple.Name = "CheckAtIdSupple" - Me.CheckAtIdSupple.UseVisualStyleBackColor = True - ' - 'TextBitlyPw - ' - resources.ApplyResources(Me.TextBitlyPw, "TextBitlyPw") - Me.TextBitlyPw.Name = "TextBitlyPw" - ' - 'Label77 - ' - resources.ApplyResources(Me.Label77, "Label77") - Me.Label77.Name = "Label77" - ' - 'TextBitlyId - ' - resources.ApplyResources(Me.TextBitlyId, "TextBitlyId") - Me.TextBitlyId.Name = "TextBitlyId" - ' - 'Label76 - ' - resources.ApplyResources(Me.Label76, "Label76") - Me.Label76.Name = "Label76" - ' - 'ComboBoxAutoShortUrlFirst - ' - resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") - Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True - Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4")}) - Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" - ' - 'Label71 - ' - resources.ApplyResources(Me.Label71, "Label71") - Me.Label71.Name = "Label71" - ' - 'CheckAutoConvertUrl - ' - resources.ApplyResources(Me.CheckAutoConvertUrl, "CheckAutoConvertUrl") - Me.CheckAutoConvertUrl.Name = "CheckAutoConvertUrl" - Me.CheckAutoConvertUrl.UseVisualStyleBackColor = True - ' - 'Label29 - ' - resources.ApplyResources(Me.Label29, "Label29") - Me.Label29.Name = "Label29" - ' - 'Label57 - ' - resources.ApplyResources(Me.Label57, "Label57") - Me.Label57.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label57.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label57.Name = "Label57" - ' - 'Label56 - ' - resources.ApplyResources(Me.Label56, "Label56") - Me.Label56.Name = "Label56" - ' - 'CheckFavRestrict - ' - resources.ApplyResources(Me.CheckFavRestrict, "CheckFavRestrict") - Me.CheckFavRestrict.Name = "CheckFavRestrict" - Me.CheckFavRestrict.UseVisualStyleBackColor = True - ' - 'CheckTinyURL - ' - resources.ApplyResources(Me.CheckTinyURL, "CheckTinyURL") - Me.CheckTinyURL.Name = "CheckTinyURL" - Me.CheckTinyURL.UseVisualStyleBackColor = True - ' - 'Label50 - ' - resources.ApplyResources(Me.Label50, "Label50") - Me.Label50.Name = "Label50" - ' - 'Button3 - ' - resources.ApplyResources(Me.Button3, "Button3") - Me.Button3.Name = "Button3" - Me.Button3.UseVisualStyleBackColor = True - ' - 'TabPage3 - ' - resources.ApplyResources(Me.TabPage3, "TabPage3") - Me.TabPage3.Controls.Add(Me.Label35) - Me.TabPage3.Controls.Add(Me.CheckPreviewEnable) - Me.TabPage3.Controls.Add(Me.Label81) - Me.TabPage3.Controls.Add(Me.LanguageCombo) - Me.TabPage3.Controls.Add(Me.Label13) - Me.TabPage3.Controls.Add(Me.CheckAlwaysTop) - Me.TabPage3.Controls.Add(Me.Label58) - Me.TabPage3.Controls.Add(Me.Label21) - Me.TabPage3.Controls.Add(Me.CheckSortOrderLock) - Me.TabPage3.Controls.Add(Me.Label78) - Me.TabPage3.Controls.Add(Me.CheckShowGrid) - Me.TabPage3.Controls.Add(Me.Label75) - Me.TabPage3.Controls.Add(Me.CheckMonospace) - Me.TabPage3.Controls.Add(Me.Label73) - Me.TabPage3.Controls.Add(Me.chkReadOwnPost) - Me.TabPage3.Controls.Add(Me.ReplyIconStateCombo) - Me.TabPage3.Controls.Add(Me.Label72) - Me.TabPage3.Controls.Add(Me.Label43) - Me.TabPage3.Controls.Add(Me.Label48) - Me.TabPage3.Controls.Add(Me.ChkNewMentionsBlink) - Me.TabPage3.Controls.Add(Me.chkTabIconDisp) - Me.TabPage3.Controls.Add(Me.Label68) - Me.TabPage3.Controls.Add(Me.CheckBalloonLimit) - Me.TabPage3.Controls.Add(Me.LabelDateTimeFormatApplied) - Me.TabPage3.Controls.Add(Me.Label62) - Me.TabPage3.Controls.Add(Me.Label17) - Me.TabPage3.Controls.Add(Me.chkUnreadStyle) - Me.TabPage3.Controls.Add(Me.Label10) - Me.TabPage3.Controls.Add(Me.ComboDispTitle) - Me.TabPage3.Controls.Add(Me.Label47) - Me.TabPage3.Controls.Add(Me.CmbDateTimeFormat) - Me.TabPage3.Controls.Add(Me.Label45) - Me.TabPage3.Controls.Add(Me.Label23) - Me.TabPage3.Controls.Add(Me.cmbNameBalloon) - Me.TabPage3.Controls.Add(Me.Label46) - Me.TabPage3.Controls.Add(Me.CheckDispUsername) - Me.TabPage3.Controls.Add(Me.Label11) - Me.TabPage3.Controls.Add(Me.Label16) - Me.TabPage3.Controls.Add(Me.OneWayLv) - Me.TabPage3.Controls.Add(Me.Label25) - Me.TabPage3.Controls.Add(Me.IconSize) - Me.TabPage3.Controls.Add(Me.CheckBox3) - Me.TabPage3.Controls.Add(Me.TextBox3) - Me.TabPage3.Name = "TabPage3" - Me.TabPage3.UseVisualStyleBackColor = True - ' - 'Label35 - ' - resources.ApplyResources(Me.Label35, "Label35") - Me.Label35.Name = "Label35" - ' - 'CheckPreviewEnable - ' - resources.ApplyResources(Me.CheckPreviewEnable, "CheckPreviewEnable") - Me.CheckPreviewEnable.Name = "CheckPreviewEnable" - Me.CheckPreviewEnable.UseVisualStyleBackColor = True - ' - 'Label81 - ' - resources.ApplyResources(Me.Label81, "Label81") - Me.Label81.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label81.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label81.Name = "Label81" - ' - 'LanguageCombo - ' - resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") - Me.LanguageCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.LanguageCombo.FormattingEnabled = True - Me.LanguageCombo.Items.AddRange(New Object() {resources.GetString("LanguageCombo.Items"), resources.GetString("LanguageCombo.Items1"), resources.GetString("LanguageCombo.Items2"), resources.GetString("LanguageCombo.Items3")}) - Me.LanguageCombo.Name = "LanguageCombo" - ' - 'Label13 - ' - resources.ApplyResources(Me.Label13, "Label13") - Me.Label13.Name = "Label13" - ' - 'CheckAlwaysTop - ' - resources.ApplyResources(Me.CheckAlwaysTop, "CheckAlwaysTop") - Me.CheckAlwaysTop.Name = "CheckAlwaysTop" - Me.CheckAlwaysTop.UseVisualStyleBackColor = True - ' - 'Label58 - ' - resources.ApplyResources(Me.Label58, "Label58") - Me.Label58.Name = "Label58" - ' - 'Label21 - ' - resources.ApplyResources(Me.Label21, "Label21") - Me.Label21.Name = "Label21" - ' - 'CheckSortOrderLock - ' - resources.ApplyResources(Me.CheckSortOrderLock, "CheckSortOrderLock") - Me.CheckSortOrderLock.Name = "CheckSortOrderLock" - Me.CheckSortOrderLock.UseVisualStyleBackColor = True - ' - 'Label78 - ' - resources.ApplyResources(Me.Label78, "Label78") - Me.Label78.Name = "Label78" - ' - 'CheckShowGrid - ' - resources.ApplyResources(Me.CheckShowGrid, "CheckShowGrid") - Me.CheckShowGrid.Name = "CheckShowGrid" - Me.CheckShowGrid.UseVisualStyleBackColor = True - ' - 'Label75 - ' - resources.ApplyResources(Me.Label75, "Label75") - Me.Label75.Name = "Label75" - ' - 'CheckMonospace - ' - resources.ApplyResources(Me.CheckMonospace, "CheckMonospace") - Me.CheckMonospace.Name = "CheckMonospace" - Me.CheckMonospace.UseVisualStyleBackColor = True - ' - 'Label73 - ' - resources.ApplyResources(Me.Label73, "Label73") - Me.Label73.Name = "Label73" - ' - 'chkReadOwnPost - ' - resources.ApplyResources(Me.chkReadOwnPost, "chkReadOwnPost") - Me.chkReadOwnPost.Name = "chkReadOwnPost" - Me.chkReadOwnPost.UseVisualStyleBackColor = True - ' - 'ReplyIconStateCombo - ' - resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") - Me.ReplyIconStateCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ReplyIconStateCombo.FormattingEnabled = True - Me.ReplyIconStateCombo.Items.AddRange(New Object() {resources.GetString("ReplyIconStateCombo.Items"), resources.GetString("ReplyIconStateCombo.Items1"), resources.GetString("ReplyIconStateCombo.Items2")}) - Me.ReplyIconStateCombo.Name = "ReplyIconStateCombo" - ' - 'Label72 - ' - resources.ApplyResources(Me.Label72, "Label72") - Me.Label72.Name = "Label72" - ' - 'Label43 - ' - resources.ApplyResources(Me.Label43, "Label43") - Me.Label43.Name = "Label43" - ' - 'Label48 - ' - resources.ApplyResources(Me.Label48, "Label48") - Me.Label48.Name = "Label48" - ' - 'ChkNewMentionsBlink - ' - resources.ApplyResources(Me.ChkNewMentionsBlink, "ChkNewMentionsBlink") - Me.ChkNewMentionsBlink.Name = "ChkNewMentionsBlink" - Me.ChkNewMentionsBlink.UseVisualStyleBackColor = True - ' - 'chkTabIconDisp - ' - resources.ApplyResources(Me.chkTabIconDisp, "chkTabIconDisp") - Me.chkTabIconDisp.Name = "chkTabIconDisp" - Me.chkTabIconDisp.UseVisualStyleBackColor = True - ' - 'Label68 - ' - resources.ApplyResources(Me.Label68, "Label68") - Me.Label68.Name = "Label68" - ' - 'CheckBalloonLimit - ' - resources.ApplyResources(Me.CheckBalloonLimit, "CheckBalloonLimit") - Me.CheckBalloonLimit.Name = "CheckBalloonLimit" - Me.CheckBalloonLimit.UseVisualStyleBackColor = True - ' - 'LabelDateTimeFormatApplied - ' - resources.ApplyResources(Me.LabelDateTimeFormatApplied, "LabelDateTimeFormatApplied") - Me.LabelDateTimeFormatApplied.Name = "LabelDateTimeFormatApplied" - ' - 'Label62 - ' - resources.ApplyResources(Me.Label62, "Label62") - Me.Label62.Name = "Label62" - ' - 'Label17 - ' - resources.ApplyResources(Me.Label17, "Label17") - Me.Label17.Name = "Label17" - ' - 'chkUnreadStyle - ' - resources.ApplyResources(Me.chkUnreadStyle, "chkUnreadStyle") - Me.chkUnreadStyle.Name = "chkUnreadStyle" - Me.chkUnreadStyle.UseVisualStyleBackColor = True - ' - 'TabPage4 - ' - resources.ApplyResources(Me.TabPage4, "TabPage4") - Me.TabPage4.Controls.Add(Me.GroupBox1) - Me.TabPage4.Name = "TabPage4" - Me.TabPage4.UseVisualStyleBackColor = True - ' - 'TabPage5 - ' - resources.ApplyResources(Me.TabPage5, "TabPage5") - Me.TabPage5.Controls.Add(Me.CheckEnableBasicAuth) - Me.TabPage5.Controls.Add(Me.TwitterSearchAPIText) - Me.TabPage5.Controls.Add(Me.Label31) - Me.TabPage5.Controls.Add(Me.TwitterAPIText) - Me.TabPage5.Controls.Add(Me.Label8) - Me.TabPage5.Controls.Add(Me.CheckUseSsl) - Me.TabPage5.Controls.Add(Me.Label64) - Me.TabPage5.Controls.Add(Me.ConnectionTimeOut) - Me.TabPage5.Controls.Add(Me.Label63) - Me.TabPage5.Controls.Add(Me.GroupBox2) - Me.TabPage5.Name = "TabPage5" - Me.TabPage5.UseVisualStyleBackColor = True - ' - 'CheckEnableBasicAuth - ' - resources.ApplyResources(Me.CheckEnableBasicAuth, "CheckEnableBasicAuth") - Me.CheckEnableBasicAuth.Name = "CheckEnableBasicAuth" - Me.CheckEnableBasicAuth.UseVisualStyleBackColor = True - ' - 'TwitterSearchAPIText - ' - resources.ApplyResources(Me.TwitterSearchAPIText, "TwitterSearchAPIText") - Me.TwitterSearchAPIText.Name = "TwitterSearchAPIText" - ' - 'Label31 - ' - resources.ApplyResources(Me.Label31, "Label31") - Me.Label31.Name = "Label31" - ' - 'TwitterAPIText - ' - resources.ApplyResources(Me.TwitterAPIText, "TwitterAPIText") - Me.TwitterAPIText.Name = "TwitterAPIText" - ' - 'Label8 - ' - resources.ApplyResources(Me.Label8, "Label8") - Me.Label8.Name = "Label8" - ' - 'CheckUseSsl - ' - resources.ApplyResources(Me.CheckUseSsl, "CheckUseSsl") - Me.CheckUseSsl.Name = "CheckUseSsl" - Me.CheckUseSsl.UseVisualStyleBackColor = True - ' - 'Label64 - ' - resources.ApplyResources(Me.Label64, "Label64") - Me.Label64.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label64.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label64.Name = "Label64" - ' - 'ConnectionTimeOut - ' - resources.ApplyResources(Me.ConnectionTimeOut, "ConnectionTimeOut") - Me.ConnectionTimeOut.Name = "ConnectionTimeOut" - ' - 'Label63 - ' - resources.ApplyResources(Me.Label63, "Label63") - Me.Label63.Name = "Label63" - ' - 'GroupBox2 - ' - resources.ApplyResources(Me.GroupBox2, "GroupBox2") - Me.GroupBox2.Controls.Add(Me.Label55) - Me.GroupBox2.Controls.Add(Me.TextProxyPassword) - Me.GroupBox2.Controls.Add(Me.LabelProxyPassword) - Me.GroupBox2.Controls.Add(Me.TextProxyUser) - Me.GroupBox2.Controls.Add(Me.LabelProxyUser) - Me.GroupBox2.Controls.Add(Me.TextProxyPort) - Me.GroupBox2.Controls.Add(Me.LabelProxyPort) - Me.GroupBox2.Controls.Add(Me.TextProxyAddress) - Me.GroupBox2.Controls.Add(Me.LabelProxyAddress) - Me.GroupBox2.Controls.Add(Me.RadioProxySpecified) - Me.GroupBox2.Controls.Add(Me.RadioProxyIE) - Me.GroupBox2.Controls.Add(Me.RadioProxyNone) - Me.GroupBox2.Name = "GroupBox2" - Me.GroupBox2.TabStop = False - ' - 'Label55 - ' - resources.ApplyResources(Me.Label55, "Label55") - Me.Label55.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label55.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label55.Name = "Label55" - ' - 'TextProxyPassword - ' - resources.ApplyResources(Me.TextProxyPassword, "TextProxyPassword") - Me.TextProxyPassword.Name = "TextProxyPassword" - Me.TextProxyPassword.UseSystemPasswordChar = True - ' - 'LabelProxyPassword - ' - resources.ApplyResources(Me.LabelProxyPassword, "LabelProxyPassword") - Me.LabelProxyPassword.Name = "LabelProxyPassword" - ' - 'TextProxyUser - ' - resources.ApplyResources(Me.TextProxyUser, "TextProxyUser") - Me.TextProxyUser.Name = "TextProxyUser" - ' - 'LabelProxyUser - ' - resources.ApplyResources(Me.LabelProxyUser, "LabelProxyUser") - Me.LabelProxyUser.Name = "LabelProxyUser" - ' - 'TextProxyPort - ' - resources.ApplyResources(Me.TextProxyPort, "TextProxyPort") - Me.TextProxyPort.Name = "TextProxyPort" - ' - 'LabelProxyPort - ' - resources.ApplyResources(Me.LabelProxyPort, "LabelProxyPort") - Me.LabelProxyPort.Name = "LabelProxyPort" - ' - 'TextProxyAddress - ' - resources.ApplyResources(Me.TextProxyAddress, "TextProxyAddress") - Me.TextProxyAddress.Name = "TextProxyAddress" - ' - 'LabelProxyAddress - ' - resources.ApplyResources(Me.LabelProxyAddress, "LabelProxyAddress") - Me.LabelProxyAddress.Name = "LabelProxyAddress" - ' - 'RadioProxySpecified - ' - resources.ApplyResources(Me.RadioProxySpecified, "RadioProxySpecified") - Me.RadioProxySpecified.Name = "RadioProxySpecified" - Me.RadioProxySpecified.UseVisualStyleBackColor = True - ' - 'RadioProxyIE - ' - resources.ApplyResources(Me.RadioProxyIE, "RadioProxyIE") - Me.RadioProxyIE.Checked = True - Me.RadioProxyIE.Name = "RadioProxyIE" - Me.RadioProxyIE.TabStop = True - Me.RadioProxyIE.UseVisualStyleBackColor = True - ' - 'RadioProxyNone - ' - resources.ApplyResources(Me.RadioProxyNone, "RadioProxyNone") - Me.RadioProxyNone.Name = "RadioProxyNone" - Me.RadioProxyNone.UseVisualStyleBackColor = True - ' - 'TabPage6 - ' - resources.ApplyResources(Me.TabPage6, "TabPage6") - Me.TabPage6.Controls.Add(Me.FavoritesTextCountApi) - Me.TabPage6.Controls.Add(Me.SearchTextCountApi) - Me.TabPage6.Controls.Add(Me.Label66) - Me.TabPage6.Controls.Add(Me.FirstTextCountApi) - Me.TabPage6.Controls.Add(Me.GetMoreTextCountApi) - Me.TabPage6.Controls.Add(Me.Label53) - Me.TabPage6.Controls.Add(Me.UseChangeGetCount) - Me.TabPage6.Controls.Add(Me.CheckNicoms) - Me.TabPage6.Controls.Add(Me.Label60) - Me.TabPage6.Controls.Add(Me.ComboBoxOutputzUrlmode) - Me.TabPage6.Controls.Add(Me.Label59) - Me.TabPage6.Controls.Add(Me.TextBoxOutputzKey) - Me.TabPage6.Controls.Add(Me.CheckOutputz) - Me.TabPage6.Name = "TabPage6" - Me.TabPage6.UseVisualStyleBackColor = True - ' - 'FavoritesTextCountApi - ' - resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") - Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" - ' - 'SearchTextCountApi - ' - resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") - Me.SearchTextCountApi.Name = "SearchTextCountApi" - ' - 'Label66 - ' - resources.ApplyResources(Me.Label66, "Label66") - Me.Label66.Name = "Label66" - ' - 'FirstTextCountApi - ' - resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") - Me.FirstTextCountApi.Name = "FirstTextCountApi" - ' - 'GetMoreTextCountApi - ' - resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") - Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" - ' - 'Label53 - ' - resources.ApplyResources(Me.Label53, "Label53") - Me.Label53.Name = "Label53" - ' - 'UseChangeGetCount - ' - resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") - Me.UseChangeGetCount.Name = "UseChangeGetCount" - Me.UseChangeGetCount.UseVisualStyleBackColor = True - ' - 'CheckNicoms - ' - resources.ApplyResources(Me.CheckNicoms, "CheckNicoms") - Me.CheckNicoms.Name = "CheckNicoms" - Me.CheckNicoms.UseVisualStyleBackColor = True - ' - 'Label60 - ' - resources.ApplyResources(Me.Label60, "Label60") - Me.Label60.Name = "Label60" - ' - 'ComboBoxOutputzUrlmode - ' - resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") - Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxOutputzUrlmode.FormattingEnabled = True - Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {resources.GetString("ComboBoxOutputzUrlmode.Items"), resources.GetString("ComboBoxOutputzUrlmode.Items1")}) - Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" - ' - 'Label59 - ' - resources.ApplyResources(Me.Label59, "Label59") - Me.Label59.Name = "Label59" - ' - 'TextBoxOutputzKey - ' - resources.ApplyResources(Me.TextBoxOutputzKey, "TextBoxOutputzKey") - Me.TextBoxOutputzKey.Name = "TextBoxOutputzKey" - ' - 'CheckOutputz - ' - resources.ApplyResources(Me.CheckOutputz, "CheckOutputz") - Me.CheckOutputz.Name = "CheckOutputz" - Me.CheckOutputz.UseVisualStyleBackColor = True - ' - 'Setting - ' - Me.AcceptButton = Me.Save - resources.ApplyResources(Me, "$this") - Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font - Me.CancelButton = Me.Cancel - Me.Controls.Add(Me.TabControl1) - Me.Controls.Add(Me.Cancel) - Me.Controls.Add(Me.Save) - Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog - Me.MaximizeBox = False - Me.MinimizeBox = False - Me.Name = "Setting" - Me.ShowInTaskbar = False - Me.TopMost = True - Me.GroupBox1.ResumeLayout(False) - Me.GroupBox1.PerformLayout() - Me.TabControl1.ResumeLayout(False) - Me.TabPage1.ResumeLayout(False) - Me.TabPage1.PerformLayout() - Me.GroupBox4.ResumeLayout(False) - Me.GroupBox4.PerformLayout() - Me.TabPage2.ResumeLayout(False) - Me.TabPage2.PerformLayout() - Me.GroupBox3.ResumeLayout(False) - Me.GroupBox3.PerformLayout() - Me.TabPage3.ResumeLayout(False) - Me.TabPage3.PerformLayout() - Me.TabPage4.ResumeLayout(False) - Me.TabPage5.ResumeLayout(False) - Me.TabPage5.PerformLayout() - Me.GroupBox2.ResumeLayout(False) - Me.GroupBox2.PerformLayout() - Me.TabPage6.ResumeLayout(False) - Me.TabPage6.PerformLayout() - Me.ResumeLayout(False) - - End Sub - Friend WithEvents Label1 As System.Windows.Forms.Label - Friend WithEvents Label2 As System.Windows.Forms.Label - Friend WithEvents Username As System.Windows.Forms.TextBox - Friend WithEvents Password As System.Windows.Forms.TextBox - Friend WithEvents Save As System.Windows.Forms.Button - Friend WithEvents Cancel As System.Windows.Forms.Button - Friend WithEvents Label3 As System.Windows.Forms.Label - Friend WithEvents TimelinePeriod As System.Windows.Forms.TextBox - Friend WithEvents DMPeriod As System.Windows.Forms.TextBox - Friend WithEvents Label5 As System.Windows.Forms.Label - Friend WithEvents Label9 As System.Windows.Forms.Label - Friend WithEvents StartupReaded As System.Windows.Forms.CheckBox - Friend WithEvents Label11 As System.Windows.Forms.Label - Friend WithEvents Label12 As System.Windows.Forms.Label - Friend WithEvents StatusText As System.Windows.Forms.TextBox - Friend WithEvents PlaySnd As System.Windows.Forms.CheckBox - Friend WithEvents Label14 As System.Windows.Forms.Label - Friend WithEvents Label15 As System.Windows.Forms.Label - Friend WithEvents OneWayLv As System.Windows.Forms.CheckBox - Friend WithEvents Label16 As System.Windows.Forms.Label - Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox - Friend WithEvents btnDetail As System.Windows.Forms.Button - Friend WithEvents lblDetail As System.Windows.Forms.Label - Friend WithEvents Label26 As System.Windows.Forms.Label - Friend WithEvents btnOWL As System.Windows.Forms.Button - Friend WithEvents lblOWL As System.Windows.Forms.Label - Friend WithEvents Label24 As System.Windows.Forms.Label - Friend WithEvents btnFav As System.Windows.Forms.Button - Friend WithEvents lblFav As System.Windows.Forms.Label - Friend WithEvents Label22 As System.Windows.Forms.Label - Friend WithEvents FontDialog1 As System.Windows.Forms.FontDialog - Friend WithEvents ColorDialog1 As System.Windows.Forms.ColorDialog - Friend WithEvents btnAtFromTarget As System.Windows.Forms.Button - Friend WithEvents lblAtFromTarget As System.Windows.Forms.Label - Friend WithEvents Label28 As System.Windows.Forms.Label - Friend WithEvents btnAtTarget As System.Windows.Forms.Button - Friend WithEvents lblAtTarget As System.Windows.Forms.Label - Friend WithEvents Label30 As System.Windows.Forms.Label - Friend WithEvents btnTarget As System.Windows.Forms.Button - Friend WithEvents lblTarget As System.Windows.Forms.Label - Friend WithEvents Label32 As System.Windows.Forms.Label - Friend WithEvents btnAtSelf As System.Windows.Forms.Button - Friend WithEvents lblAtSelf As System.Windows.Forms.Label - Friend WithEvents Label34 As System.Windows.Forms.Label - Friend WithEvents btnSelf As System.Windows.Forms.Button - Friend WithEvents lblSelf As System.Windows.Forms.Label - Friend WithEvents Label36 As System.Windows.Forms.Label - Friend WithEvents cmbNameBalloon As System.Windows.Forms.ComboBox - Friend WithEvents Label10 As System.Windows.Forms.Label - Friend WithEvents btnListBack As System.Windows.Forms.Button - Friend WithEvents lblListBackcolor As System.Windows.Forms.Label - Friend WithEvents Label19 As System.Windows.Forms.Label - Friend WithEvents CheckUseRecommendStatus As System.Windows.Forms.CheckBox - Friend WithEvents CmbDateTimeFormat As System.Windows.Forms.ComboBox - Friend WithEvents Label23 As System.Windows.Forms.Label - Friend WithEvents CheckBox3 As System.Windows.Forms.CheckBox - Friend WithEvents Label25 As System.Windows.Forms.Label - Friend WithEvents Label27 As System.Windows.Forms.Label - Friend WithEvents TextBox3 As System.Windows.Forms.TextBox - Friend WithEvents IconSize As System.Windows.Forms.ComboBox - Friend WithEvents btnDetailBack As System.Windows.Forms.Button - Friend WithEvents lblDetailBackcolor As System.Windows.Forms.Label - Friend WithEvents Label37 As System.Windows.Forms.Label - Friend WithEvents Label38 As System.Windows.Forms.Label - Friend WithEvents UReadMng As System.Windows.Forms.CheckBox - Friend WithEvents Label39 As System.Windows.Forms.Label - Friend WithEvents CheckReadOldPosts As System.Windows.Forms.CheckBox - Friend WithEvents Label40 As System.Windows.Forms.Label - Friend WithEvents CheckCloseToExit As System.Windows.Forms.CheckBox - Friend WithEvents Label41 As System.Windows.Forms.Label - Friend WithEvents CheckMinimizeToTray As System.Windows.Forms.CheckBox - Friend WithEvents BrowserPathText As System.Windows.Forms.TextBox - Friend WithEvents Label44 As System.Windows.Forms.Label - Friend WithEvents CheckDispUsername As System.Windows.Forms.CheckBox - Friend WithEvents Label46 As System.Windows.Forms.Label - Friend WithEvents Label45 As System.Windows.Forms.Label - Friend WithEvents ComboDispTitle As System.Windows.Forms.ComboBox - Friend WithEvents Label47 As System.Windows.Forms.Label - Friend WithEvents TabControl1 As System.Windows.Forms.TabControl - Friend WithEvents TabPage1 As System.Windows.Forms.TabPage - Friend WithEvents TabPage2 As System.Windows.Forms.TabPage - Friend WithEvents TabPage3 As System.Windows.Forms.TabPage - Friend WithEvents TabPage4 As System.Windows.Forms.TabPage - Friend WithEvents Button3 As System.Windows.Forms.Button - Friend WithEvents btnAtTo As System.Windows.Forms.Button - Friend WithEvents lblAtTo As System.Windows.Forms.Label - Friend WithEvents Label49 As System.Windows.Forms.Label - Friend WithEvents CheckTinyURL As System.Windows.Forms.CheckBox - Friend WithEvents Label50 As System.Windows.Forms.Label - Friend WithEvents TabPage5 As System.Windows.Forms.TabPage - Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox - Friend WithEvents RadioProxySpecified As System.Windows.Forms.RadioButton - Friend WithEvents RadioProxyIE As System.Windows.Forms.RadioButton - Friend WithEvents RadioProxyNone As System.Windows.Forms.RadioButton - Friend WithEvents TextProxyPort As System.Windows.Forms.TextBox - Friend WithEvents LabelProxyPort As System.Windows.Forms.Label - Friend WithEvents TextProxyAddress As System.Windows.Forms.TextBox - Friend WithEvents LabelProxyAddress As System.Windows.Forms.Label - Friend WithEvents TextProxyPassword As System.Windows.Forms.TextBox - Friend WithEvents LabelProxyPassword As System.Windows.Forms.Label - Friend WithEvents TextProxyUser As System.Windows.Forms.TextBox - Friend WithEvents LabelProxyUser As System.Windows.Forms.Label - Friend WithEvents Label55 As System.Windows.Forms.Label - Friend WithEvents CheckPeriodAdjust As System.Windows.Forms.CheckBox - Friend WithEvents Label51 As System.Windows.Forms.Label - Friend WithEvents CheckStartupVersion As System.Windows.Forms.CheckBox - Friend WithEvents Label54 As System.Windows.Forms.Label - Friend WithEvents CheckStartupFollowers As System.Windows.Forms.CheckBox - Friend WithEvents Label56 As System.Windows.Forms.Label - Friend WithEvents CheckFavRestrict As System.Windows.Forms.CheckBox - Friend WithEvents Label57 As System.Windows.Forms.Label - Friend WithEvents CheckAutoConvertUrl As System.Windows.Forms.CheckBox - Friend WithEvents Label29 As System.Windows.Forms.Label - Friend WithEvents TabPage6 As System.Windows.Forms.TabPage - Friend WithEvents Label59 As System.Windows.Forms.Label - Friend WithEvents TextBoxOutputzKey As System.Windows.Forms.TextBox - Friend WithEvents CheckOutputz As System.Windows.Forms.CheckBox - Friend WithEvents Label60 As System.Windows.Forms.Label - Friend WithEvents ComboBoxOutputzUrlmode As System.Windows.Forms.ComboBox - Friend WithEvents btnListFont As System.Windows.Forms.Button - Friend WithEvents lblListFont As System.Windows.Forms.Label - Friend WithEvents Label61 As System.Windows.Forms.Label - Friend WithEvents btnUnread As System.Windows.Forms.Button - Friend WithEvents lblUnread As System.Windows.Forms.Label - Friend WithEvents Label20 As System.Windows.Forms.Label - Friend WithEvents Label17 As System.Windows.Forms.Label - Friend WithEvents chkUnreadStyle As System.Windows.Forms.CheckBox - Friend WithEvents LabelDateTimeFormatApplied As System.Windows.Forms.Label - Friend WithEvents Label62 As System.Windows.Forms.Label - Friend WithEvents Label63 As System.Windows.Forms.Label - Friend WithEvents Label64 As System.Windows.Forms.Label - Friend WithEvents ConnectionTimeOut As System.Windows.Forms.TextBox - Friend WithEvents btnInputBackcolor As System.Windows.Forms.Button - Friend WithEvents lblInputBackcolor As System.Windows.Forms.Label - Friend WithEvents Label52 As System.Windows.Forms.Label - Friend WithEvents btnInputFont As System.Windows.Forms.Button - Friend WithEvents lblInputFont As System.Windows.Forms.Label - Friend WithEvents Label65 As System.Windows.Forms.Label - Friend WithEvents Label67 As System.Windows.Forms.Label - Friend WithEvents TextCountApi As System.Windows.Forms.TextBox - Friend WithEvents Label68 As System.Windows.Forms.Label - Friend WithEvents CheckBalloonLimit As System.Windows.Forms.CheckBox - Friend WithEvents CheckPostAndGet As System.Windows.Forms.CheckBox - Friend WithEvents Label69 As System.Windows.Forms.Label - Friend WithEvents ReplyPeriod As System.Windows.Forms.TextBox - Friend WithEvents ComboBoxAutoShortUrlFirst As System.Windows.Forms.ComboBox - Friend WithEvents Label71 As System.Windows.Forms.Label - Friend WithEvents Label48 As System.Windows.Forms.Label - Friend WithEvents chkTabIconDisp As System.Windows.Forms.CheckBox - Friend WithEvents ReplyIconStateCombo As System.Windows.Forms.ComboBox - Friend WithEvents Label72 As System.Windows.Forms.Label - Friend WithEvents Label73 As System.Windows.Forms.Label - Friend WithEvents chkReadOwnPost As System.Windows.Forms.CheckBox - Friend WithEvents Label74 As System.Windows.Forms.Label - Friend WithEvents chkGetFav As System.Windows.Forms.CheckBox - Friend WithEvents Label75 As System.Windows.Forms.Label - Friend WithEvents CheckMonospace As System.Windows.Forms.CheckBox - Friend WithEvents CheckUseSsl As System.Windows.Forms.CheckBox - Friend WithEvents Label76 As System.Windows.Forms.Label - Friend WithEvents TextBitlyPw As System.Windows.Forms.TextBox - Friend WithEvents Label77 As System.Windows.Forms.Label - Friend WithEvents TextBitlyId As System.Windows.Forms.TextBox - Friend WithEvents Label78 As System.Windows.Forms.Label - Friend WithEvents CheckShowGrid As System.Windows.Forms.CheckBox - Friend WithEvents Label21 As System.Windows.Forms.Label - Friend WithEvents CheckSortOrderLock As System.Windows.Forms.CheckBox - Friend WithEvents Label79 As System.Windows.Forms.Label - Friend WithEvents CheckAtIdSupple As System.Windows.Forms.CheckBox - Friend WithEvents CheckAlwaysTop As System.Windows.Forms.CheckBox - Friend WithEvents Label58 As System.Windows.Forms.Label - Friend WithEvents btnDetailLink As System.Windows.Forms.Button - Friend WithEvents lblDetailLink As System.Windows.Forms.Label - Friend WithEvents Label18 As System.Windows.Forms.Label - Friend WithEvents ButtonBackToDefaultFontColor As System.Windows.Forms.Button - Friend WithEvents btnRetweet As System.Windows.Forms.Button - Friend WithEvents lblRetweet As System.Windows.Forms.Label - Friend WithEvents Label80 As System.Windows.Forms.Label - Friend WithEvents LanguageCombo As System.Windows.Forms.ComboBox - Friend WithEvents Label13 As System.Windows.Forms.Label - Friend WithEvents Label81 As System.Windows.Forms.Label - Friend WithEvents TextCountApiReply As System.Windows.Forms.TextBox - Friend WithEvents PubSearchPeriod As System.Windows.Forms.TextBox - Friend WithEvents Label7 As System.Windows.Forms.Label - Friend WithEvents CheckNicoms As System.Windows.Forms.CheckBox - Friend WithEvents Label82 As System.Windows.Forms.Label - Friend WithEvents CheckHashSupple As System.Windows.Forms.CheckBox - Friend WithEvents AuthorizeButton As System.Windows.Forms.Button - Friend WithEvents AuthStateLabel As System.Windows.Forms.Label - Friend WithEvents Label4 As System.Windows.Forms.Label - Friend WithEvents AuthUserLabel As System.Windows.Forms.Label - Friend WithEvents AuthClearButton As System.Windows.Forms.Button - Friend WithEvents AuthBasicRadio As System.Windows.Forms.RadioButton - Friend WithEvents AuthOAuthRadio As System.Windows.Forms.RadioButton - Friend WithEvents Label6 As System.Windows.Forms.Label - Friend WithEvents TwitterSearchAPIText As System.Windows.Forms.TextBox - Friend WithEvents Label31 As System.Windows.Forms.Label - Friend WithEvents TwitterAPIText As System.Windows.Forms.TextBox - Friend WithEvents Label8 As System.Windows.Forms.Label - Friend WithEvents Label33 As System.Windows.Forms.Label - Friend WithEvents ListsPeriod As System.Windows.Forms.TextBox - Friend WithEvents Label35 As System.Windows.Forms.Label - Friend WithEvents CheckPreviewEnable As System.Windows.Forms.CheckBox - Friend WithEvents LabelApiUsing As System.Windows.Forms.Label - Friend WithEvents LabelPostAndGet As System.Windows.Forms.Label - Friend WithEvents ButtonApiCalc As System.Windows.Forms.Button - Friend WithEvents GroupBox3 As System.Windows.Forms.GroupBox - Friend WithEvents HotkeyText As System.Windows.Forms.TextBox - Friend WithEvents HotkeyWin As System.Windows.Forms.CheckBox - Friend WithEvents HotkeyAlt As System.Windows.Forms.CheckBox - Friend WithEvents HotkeyShift As System.Windows.Forms.CheckBox - Friend WithEvents HotkeyCtrl As System.Windows.Forms.CheckBox - Friend WithEvents HotkeyCheck As System.Windows.Forms.CheckBox - Friend WithEvents HotkeyCode As System.Windows.Forms.Label - Friend WithEvents Label43 As System.Windows.Forms.Label - Friend WithEvents ChkNewMentionsBlink As System.Windows.Forms.CheckBox - Friend WithEvents UseChangeGetCount As System.Windows.Forms.CheckBox - Friend WithEvents GetMoreTextCountApi As System.Windows.Forms.TextBox - Friend WithEvents Label53 As System.Windows.Forms.Label - Friend WithEvents FirstTextCountApi As System.Windows.Forms.TextBox - Friend WithEvents CheckEnableBasicAuth As System.Windows.Forms.CheckBox - Friend WithEvents SearchTextCountApi As System.Windows.Forms.TextBox - Friend WithEvents Label66 As System.Windows.Forms.Label - Friend WithEvents FavoritesTextCountApi As System.Windows.Forms.TextBox - Friend WithEvents CheckRetweetNoConfirm As System.Windows.Forms.CheckBox - Friend WithEvents Label42 As System.Windows.Forms.Label - Friend WithEvents ComboBoxPostKeySelect As System.Windows.Forms.ComboBox - Friend WithEvents GroupBox4 As System.Windows.Forms.GroupBox - Friend WithEvents UserstreamPeriod As System.Windows.Forms.TextBox - Friend WithEvents Label83 As System.Windows.Forms.Label - Friend WithEvents Label70 As System.Windows.Forms.Label - Friend WithEvents StartupUserstreamCheck As System.Windows.Forms.CheckBox -End Class Deleted: trunk/Tween/Setting.en.resx =================================================================== --- trunk/Tween/Setting.en.resx 2010-12-20 11:32:19 UTC (rev 1230) +++ trunk/Tween/Setting.en.resx 2010-12-20 13:02:09 UTC (rev 1231) @@ -1,1008 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - 56, 12 - - - Username - - - 54, 12 - - - Password - - - Cancel - - - 170, 12 - - - Timeline Fetching Interval (sec.) - - - 144, 12 - - - DM Fetching Interval (sec.) - - - 135, 12 - - - First-time Reading Posts - - - 81, 16 - - - Make Read - - - 162, 12 - - - Icon size in List (16 in default) - - - 38, 12 - - - Footer - - - 58, 16 - - - Enable - - - 42, 12 - - - Sounds - - - Sounds will play when you enable this option and set sound file for each tabs. - - - 58, 16 - - - Enable - - - 145, 12 - - - Colorize One-way following - - - Fore... - - - 96, 22 - - - Back to Default - - - Fore... - - - 119, 12 - - - Details of Tweet(Link) - - - Font... - - - 97, 12 - - - Font of input field - - - Back... - - - 169, 12 - - - Backcolor of focused input field - - - Font&&Fore... - - - 76, 12 - - - Unread Tweet - - - Back... - - - 78, 12 - - - Replied Tweet - - - Back... - - - 110, 12 - - - Backcolor of Details - - - Back... - - - 90, 12 - - - Backcolor of list - - - Back... - - - 114, 12 - - - Replied User's Tweet - - - Back... - - - 137, 12 - - - Replies for Selected User - - - Back... - - - 120, 12 - - - Selected User's Tweet - - - Back... - - - 84, 12 - - - Replies for You - - - Back... - - - 89, 12 - - - Your Own Tweet - - - Font&&Fore... - - - 90, 12 - - - Details of Tweet - - - Fore... - - - 100, 12 - - - One-way following - - - Fore... - - - 53, 12 - - - Favorited - - - Font&&Fore... - - - 94, 12 - - - Font of tweet list - - - Font && Color - - - None - - - User ID - - - Nickname - - - 103, 12 - - - Username in popup - - - 188, 16 - - - Use Recommended [TWNvNNN] - - - 105, 12 - - - Date Format in List - - - 58, 16 - - - Enable - - - 139, 12 - - - Show Icon in Details Pane - - - 117, 12 - - - Tweet with Ctrl-Enter - - - None - - - 89, 12 - - - Manage Reading - - - 58, 16 - - - Enable - - - 136, 12 - - - Make Read when updated - - - 58, 16 - - - Enable - - - 136, 12 - - - Exit when Closed Window - - - 58, 16 - - - Enable - - - 118, 12 - - - Iconize when Minimize - - - 58, 16 - - - Enable - - - 88, 12 - - - Path to Browser - - - 58, 16 - - - Enable - - - 141, 12 - - - Show Username in Popups - - - 65, 12 - - - Title format - - - None - - - Program Version - - - Latest your post - - - unread @reply items - - - unread items - - - unread items(unread @reply items) - - - unread items/all items - - - Count of Status/Follow/Follower - - - 115, 12 - - - Apply after restarting - - - 117, 12 - - - Refresh Interval (sec) - - - 130, 12 - - - Auto connect in Starting - - - 58, 16 - - - Enable - - - Recalculation - - - 358, 12 - - - Because "Post && fetch" is enabled, the API for each post consumed. - - - 150, 12 - - - Lists Fetching Interval (sec) - - - 70, 12 - - - Auth method - - - Clear - - - 65, 12 - - - Auth status - - - Auth - - - 149, 12 - - - Public Search Interval (sec.) - - - 156, 12 - - - Reply Fetching Interval (sec.) - - - 88, 16 - - - Post && fetch - - - 226, 12 - - - Getting number of tweets/mentions in API - - - 131, 12 - - - Get User List in Starting - - - 58, 16 - - - Enable - - - 158, 12 - - - Check for Updates in Starting - - - 58, 16 - - - Enable - - - 150, 16 - - - Enable Auto-Adjustment - - - 106, 12 - - - Get favs in Starting - - - 58, 16 - - - Enable - - - Basic - - - 62, 16 - - - Disable - - - 89, 12 - - - Retweet confirm - - - 58, 16 - - - Enable - - - Hotkey - - - 11, 439 - - - 142, 12 - - - Use Input #tag supplement - - - 173, 438 - - - 58, 16 - - - Enable - - - 11, 421 - - - 139, 12 - - - Use Input @ID supplement - - - 173, 420 - - - 58, 16 - - - Enable - - - 149, 12 - - - Primary URLshorten service - - - 58, 16 - - - Enable - - - 103, 12 - - - Auto shorten URLs - - - - False - - - - NoControl - - - 382, 28 - - - Refetch tweets and verify whether marked favorites. This option causes traffic incleasement. - - - 138, 12 - - - Marking Favorites Strictly - - - 58, 16 - - - Enable - - - 58, 16 - - - Enable - - - 136, 12 - - - Resolve Shortening URLs - - - Open... - - - Behavior - - - 124, 12 - - - Disp Picture Thumbnail - - - 58, 16 - - - Enable - - - 58, 16 - - - Enable - - - 81, 12 - - - Always on Top - - - 101, 12 - - - Lock Sorting Order - - - 58, 16 - - - Enable - - - 57, 12 - - - Show Grid - - - 51, 16 - - - Show - - - 150, 12 - - - Font in Detail Pane(for AA) - - - 81, 16 - - - Monospace - - - 81, 12 - - - Read own post - - - 58, 16 - - - Enable - - - Don't notify - - - Change icon - - - Change icon&blink - - - 188, 12 - - - Tasktray icon with unread mentions - - - 130, 12 - - - Blink with new mentions - - - 90, 12 - - - Show icon in tab - - - 58, 16 - - - Enable - - - 51, 16 - - - Show - - - 148, 12 - - - Limit the condition of popup - - - 193, 16 - - - only at the minimization and icon - - - 162, 12 - - - Unread styles(Font&&Forecolor) - - - 58, 16 - - - Enable - - - View - - - Fonts & Colors - - - 241, 16 - - - Enable to select BASIC auth in 'Basic' tab - - - 130, 16 - - - Use HTTPS Protocol - - - 371, 12 - - - ※Adjust Connection timeout if the error of timeout happens frequently. - - - 130, 12 - - - Connection timeout(sec) - - - 320, 12 - - - Keep credential empty if the proxy server don't need to log in - - - 54, 12 - - - Pass&word - - - 56, 12 - - - &Username - - - 26, 12 - - - &Port - - - 62, 12 - - - Pro&xy Host - - - 80, 16 - - - Use Below: - - - 200, 16 - - - Refer Settings of Internet Explorer - - - 73, 16 - - - Don't Use - - - Proxy Server - - - Connection - - - 125, 12 - - - Favorites/PublicSearch - - - 98, 12 - - - Get more/Starting - - - 188, 16 - - - Enable to edit 'Count' parameter - - - 196, 16 - - - Shorten nicovideo urls by nico.ms - - - 107, 12 - - - URI of your Outputz - - - 86, 12 - - - Your secret key - - - 87, 16 - - - Use Outputz - - - Settings - - \ No newline at end of file Deleted: trunk/Tween/Setting.resx =================================================================== --- trunk/Tween/Setting.resx 2010-12-20 11:32:19 UTC (rev 1230) +++ trunk/Tween/Setting.resx 2010-12-20 13:02:09 UTC (rev 1231) @@ -1,6462 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - 11, 81 - - - search.twitter.com - - - 197, 108 - - - - True - - - 12, 12 - - - none - - - - NoControl - - - 51 - - - 25 - - - 43, 16 - - - 90, 22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - OK - - - 16*16 - - - True - - - 3 - - - 背景色 - - - TabPage3 - - - GroupBox4 - - - 6, 337 - - - 14 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage1 - - - LabelApiUsing - - - 163, 12 - - - 76, 451 - - - 11, 392 - - - 23 - - - 67, 16 - - - 5 - - - True - - - 67, 16 - - - 24 - - - 7 - - - 9, 248 - - - TabPage1 - - - 背景色 - - - 28 - - - This is sample. - - - TabPage1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 18 - - - LanguageCombo - - - 43 - - - 67, 16 - - - 2 - - - ConnectionTimeOut - - - 3 - - - True - - - 170, 20 - - - cmbNameBalloon - - - 104, 19 - - - TabPage3 - - - Twitter API URL (api.twitter.com) - - - 173, 6 - - - 40 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 21 - - - 28 - - - 7 - - - 8 - - - 247, 385 - - - 自動調整する - - - 104, 19 - - - 13 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 163, 12 - - - 10 - - - CheckMinimizeToTray - - - True - - - 7 - - - 306, 368 - - - tinyurl - - - 38 - - - 65, 19 - - - 109, 16 - - - lblOWL - - - 53, 12 - - - 28 - - - 154, 12 - - - 11 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - CheckMonospace - - - 4, 22 - - - 146, 440 - - - 9 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - 48*48 - - - HotkeyCtrl - - - 14, 430 - - - 30 - - - GroupBox1 - - - True - - - Label79 - - - GroupBox1 - - - 9 - - - True - - - 18 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 197, 54 - - - True - - - 173, 146 - - - Label44 - - - TabPage3 - - - 10 - - - Label6 - - - 0 - - - Win - - - True - - - 8 - - - 306, 418 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 22 - - - TabPage2 - - - 19 - - - 31 - - - MiddleLeft - - - Label45 - - - tt h:mm - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - 13, 14 - - - chkGetFav - - - StatusText - - - Label8 - - - lblUnread - - - 既読にする - - - 通知なし - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - GroupBox3 - - - TabPage2 - - - 9, 198 - - - StartupUserstreamCheck - - - 5 - - - True - - - 81, 12 - - - TabPage1 - - - api.twitter.com - - - NoControl - - - 29 - - - 31 - - - Username - - - TabPage2 - - - ComboBoxAutoShortUrlFirst - - - MiddleLeft - - - 22 - - - 186, 19 - - - 16 - - - 取得する - - - 63, 12 - - - 新着Mentions時画面点滅 - - - True - - - Alt - - - True - - - 252, 268 - - - TabPage1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 297, 451 - - - GroupBox2 - - - True - - - 45 - - - する - - - 13 - - - 270, 216 - - - Fav結果厳密チェック - - - 247, 429 - - - TabPage2 - - - 4, 22 - - - LabelProxyPort - - - AuthStateLabel - - - 30 - - - 94, 12 - - - 104, 42 - - - 171, 216 - - - OAuth(xAuth) - - - RT確認しない - - - 64, 189 - - - 36 - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 67, 16 - - - True - - - 219, 7 - - - 発言詳細背景色 - - - 認証済み - - - 4 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9 - - - 100, 20 - - - Label29 - - - 149, 14 - - - Label41 - - - 27 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 116, 15 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 195, 163 - - - TabPage1 - - - 185, 245 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ChkNewMentionsBlink - - - 6, 108 - - - 11, 59 - - - English - - - TabPage3 - - - 6 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This is sample. - - - H:mm:ss - - - GroupBox1 - - - 324, 234 - - - 247, 261 - - - 70, 12 - - - 14, 288 - - - 349, 12 - - - 28, 134 - - - TabPage3 - - - 発言一覧への反映間隔(秒) - - - NoControl - - - TabPage6 - - - TextCountApiReply - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 25 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage5 - - - 1 - - - NoControl - - - Label47 - - - 44, 12 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 4 - - - NoControl - - - 58, 12 - - - 23 - - - TabPage3 - - - GroupBox2 - - - 6, 9 - - - GroupBox1 - - - TabPage2 - - - 174, 12 - - - GroupBox3 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 推奨フッターを使用する[TWNv○○] - - - True - - - 2 - - - 6, 105 - - - yyyy/MM/dd H:mm:ss - - - 9 - - - CmbDateTimeFormat - - - 185, 345 - - - CheckSortOrderLock - - - 表示 - - - TabPage6 - - - btnTarget - - - 34, 19 - - - 3 - - - This is sample. - - - 50 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 30 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 185, 170 - - - 75, 22 - - - その発言の@先の人の発言 - - - 片思い色分け表示 - - - 自分の発言 - - - 5 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - 37 - - - ReplyIconStateCombo - - - Label42 - - - TabPage5 - - - TabPage3 - - - 2 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 131, 12 - - - True - - - OneWayLv - - - ユーザー名を表示 - - - Label67 - - - True - - - 20 - - - 13, 322 - - - 34 - - - CheckNicoms - - - 20 - - - H:mm:ss yy/M/d - - - 104, 28 - - - MiddleLeft - - - True - - - Label34 - - - 自分への@返信 - - - 起動時片思いユーザーリスト取得 - - - 67, 16 - - - 58, 19 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - (なし) - - - OS Default - - - 4 - - - LabelProxyPassword - - - 28 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - False - - - TabPage2 - - - ButtonBackToDefaultFontColor - - - 8 - - - TabPage6 - - - True - - - 背景色 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 276, 30 - - - 114, 20 - - - 5 - - - 9 - - - 115, 16 - - - 105, 7 - - - 186, 19 - - - Label49 - - - 75, 22 - - - 31 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9 - - - NoControl - - - 3, 3, 3, 3 - - - フッター(文末に付加) - - - バルーン表示制限 - - - 11 - - - 27 - - - 入力欄アクティブ時背景色 - - - 102, 12 - - - True - - - Label62 - - - 297, 82 - - - False - - - サウンド再生 - - - True - - - TabPage3 - - - TabPage1 - - - 60, 12 - - - 5 - - - NoControl - - - 15 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox3 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 57, 12 - - - True - - - 4 - - - True - - - UserstreamPeriod - - - MiddleLeft - - - TabPage2 - - - TabPage5 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 16 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 70, 19 - - - 1 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - TabPage3 - - - 74, 16 - - - 9 - - - True - - - 30 - - - GroupBox4 - - - 22 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - btnAtSelf - - - GroupBox1 - - - 32 - - - chkTabIconDisp - - - 0 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 20 - - - 認証する - - - 7 - - - 1 - - - 32 - - - 48, 16 - - - LabelPostAndGet - - - 未読Mentions通知アイコン - - - GroupBox1 - - - CheckShowGrid - - - TabPage3 - - - GroupBox1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - lblDetail - - - 35 - - - NoControl - - - 88, 12 - - - 6 - - - キャンセル - - - NoControl - - - TabPage1 - - - 取得する - - - NoControl - - - UseChangeGetCount - - - btnAtTo - - - 背景色 - - - 4, 15 - - - TextProxyPassword - - - GroupBox1 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label63 - - - 2 - - - 11 - - - 短縮URLを解決 - - - 29 - - - 4 - - - 26 - - - 5 - - - 0 - - - 44, 12 - - - TabPage1 - - - NoControl - - - TabPage3 - - - 0 - - - TabPage3 - - - System.Windows.Forms.FontDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 文字色 - - - 認証状態 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 296, 38 - - - TabPage3 - - - ユーザー名 - - - 104, 19 - - - System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 有効 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3, 3, 3, 3 - - - 431, 553 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage1 - - - 48, 16 - - - 185, 145 - - - Disable - - - CheckAtIdSupple - - - 197, 426 - - - 3 - - - 75, 22 - - - GroupBox1 - - - 26 - - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 4 - - - FirstTextCountApi - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 84, 12 - - - 67, 16 - - - btnAtTarget - - - True - - - 1 - - - 185, 220 - - - TabPage3 - - - 2 - - - 53, 12 - - - 26 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 197, 141 - - - 13 - - - GroupBox1 - - - 15 - - - 318, 213 - - - 17 - - - lblRetweet - - - 3 - - - CheckFavRestrict - - - 14, 240 - - - AuthBasicRadio - - - True - - - True - - - 1 - - - 0 - - - 0 - - - 173, 168 - - - 2 - - - 340, 518 - - - 75, 22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 62, 106 - - - 306, 168 - - - TabPage3 - - - 19 - - - 9 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Twitter検索更新間隔(秒) - - - 3 - - - 173, 310 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label40 - - - Label39 - - - GroupBox1 - - - 18 - - - True - - - GroupBox1 - - - GroupBox1 - - - 36 - - - 2 - - - GroupBox3 - - - 65, 19 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - 134, 12 - - - 173, 283 - - - 8 - - - 20 - - - 241, 193 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - GroupBox1 - - - 18 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MiddleRight - - - True - - - CheckPostAndGet - - - True - - - 5 - - - 91, 16 - - - 185, 20 - - - 145, 16 - - - リストフォント - - - TabPage2 - - - 33 - - - 3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 6 - - - 17 - - - タイトルバーとツールチップ - - - 306, 343 - - - 20 - - - 26 - - - 投稿時取得が有効のため、投稿のたびにAPIを消費します。 - - - NoControl - - - 399, 474 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 42 - - - LabelProxyUser - - - NoControl - - - GroupBox1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 75, 23 - - - 6, 361 - - - Password - - - 10 - - - 158, 12 - - - 41 - - - 104, 19 - - - 28 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 起動時読み込みポスト - - - ブラウザパス - - - 65, 19 - - - 11 - - - TabPage3 - - - 37 - - - 12 - - - 31 - - - TabPage5 - - - 185, 70 - - - 39 - - - 0 - - - 999 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 17 - - - M/d H:mm - - - GroupBox1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 33 - - - lblInputBackcolor - - - NoControl - - - MiddleLeft - - - CheckRetweetNoConfirm - - - 2 - - - TabPage3 - - - 197, 382 - - - 16 - - - True - - - 39 - - - 14 - - - 15 - - - TabPage2 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 再生する - - - 32 - - - GroupBox4 - - - 6, 6 - - - 99, 12 - - - 13 - - - 75, 22 - - - TabPage6 - - - NoControl - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 75, 22 - - - 7, 7 - - - True - - - 53, 12 - - - 10 - - - 42, 12 - - - 9, 148 - - - Label43 - - - 11 - - - 267, 233 - - - 38 - - - ColorDialog1 - - - フォント&&色 - - - 使用する - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - MiddleLeft - - - 15, 161 - - - TabControl1 - - - 8 - - - 27 - - - TabPage1 - - - TabControl1 - - - 12 - - - True - - - 259, 518 - - - GroupBox1 - - - 197, 244 - - - 13, 234 - - - 15, 183 - - - Label57 - - - 5 - - - RadioProxyIE - - - #タグ入力補助 - - - TabPage6 - - - 171, 16 - - - IconSize - - - 6 - - - TabPage3 - - - TabPage2 - - - Label75 - - - CheckPeriodAdjust - - - 27 - - - True - - - 6 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabControl1 - - - 197, 448 - - - 7 - - - 125, 19 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 121, 12 - - - 6 - - - 14 - - - 87, 12 - - - その人への@返信 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 11, 260 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label35 - - - 入力欄フォント - - - True - - - NoControl - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - 10 - - - TabPage6 - - - 197, 102 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - TabPage2 - - - True - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - Simplified Chinese - - - 0 - - - 6, 55 - - - 35 - - - Label80 - - - True - - - M/d tt h:mm:ss - - - 5 - - - TabPage6 - - - 起動時Fav取得 - - - 197, 288 - - - NoControl - - - Label14 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 50, 19 - - - 14 - - - True - - - 247, 364 - - - ID - - - 58, 19 - - - Label81 - - - 6, 405 - - - 9 - - - lblDetailLink - - - 100, 12 - - - 185, 270 - - - 19 - - - 26 - - - TabPage5 - - - 53, 12 - - - Label30 - - - 47 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Ctrl - - - 起動時自動接続 - - - 84, 16 - - - 173, 391 - - - 点滅する - - - 45 - - - 197, 404 - - - 197, 76 - - - Label31 - - - 11, 147 - - - 9, 23 - - - 37 - - - 76, 16 - - - 11, 271 - - - $this - - - 75, 22 - - - 104, 19 - - - 6, 12 - - - This is sample. - - - 8 - - - 44 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label36 - - - 11, 239 - - - 6, 179 - - - GroupBox1 - - - This is sample. - - - 22 - - - TabPage5 - - - Lists更新間隔(秒) - - - True - - - TabPage1 - - - 3, 3, 3, 3 - - - 5 - - - TabPage2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 399, 474 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 195, 16 - - - 168, 15 - - - M/d tt h:mm - - - CheckHashSupple - - - Label37 - - - H:mm:ss M/d - - - 131, 103 - - - lblAtTarget - - - 130, 12 - - - True - - - 76, 16 - - - 11 - - - 306, 93 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - chkReadOwnPost - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 67, 16 - - - 文字色 - - - Label82 - - - 31, 316 - - - 31 - - - 5 - - - GroupBox1 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 173, 58 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11, 169 - - - 15 - - - SearchTextCountApi - - - True - - - 26 - - - 43, 16 - - - NoControl - - - 130, 12 - - - 19 - - - 113, 12 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label83 - - - TabPage4 - - - NoControl - - - 23 - - - 6, 289 - - - True - - - Label32 - - - 7 - - - NoControl - - - 適用する - - - GroupBox2 - - - 197, 178 - - - True - - - 4 - - - 75, 22 - - - 46 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 247, 451 - - - 14, 216 - - - True - - - 10 - - - 36 - - - Label15 - - - Mentions更新間隔(秒) - - - 42 - - - 14, 174 - - - 11, 358 - - - Label33 - - - GroupBox1 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 新着バルーンのユーザー名 - - - 266, 209 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9, 98 - - - True - - - 104, 19 - - - する - - - 36 - - - 24 - - - 33 - - - Label46 - - - Label38 - - - 38 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MiddleLeft - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 投稿時取得 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 41 - - - True - - - TabPage1 - - - NoControl - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage1 - - - 0 - - - 77, 19 - - - Label12 - - - True - - - 6, 245 - - - btnListFont - - - HotkeyShift - - - True - - - True - - - True - - - True - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9, 273 - - - 16 - - - True - - - 11, 219 - - - 6, 62 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - 15 - - - 1 - - - 9, 123 - - - 274, 103 - - - 247, 171 - - - 247, 407 - - - TabPage1 - - - Label10 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This is sample. - - - CheckStartupFollowers - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - TabPage3 - - - 20 - - - 86, 12 - - - True - - - Label11 - - - InternetExplorerの設定を使用する - - - 6, 313 - - - 48 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 12 - - - 11, 103 - - - 29 - - - 43 - - - True - - - $this - - - True - - - 30 - - - PlaySnd - - - TimelinePeriod - - - Label16 - - - TabPage1 - - - 32 - - - 6, 435 - - - TabPage3 - - - 38 - - - 8, 173 - - - NoControl - - - 15 - - - True - - - 認証方法 - - - 9 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 2 - - - 5 - - - 1 - - - Label17 - - - TextBitlyPw - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ×ボタンを押したとき - - - 27 - - - True - - - 25 - - - 14, 386 - - - AuthorizeButton - - - 197, 6 - - - 12 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 38 - - - TabPage2 - - - True - - - 0 - - - ListsPeriod - - - PubSearchPeriod - - - 306, 68 - - - 18 - - - 4 - - - 173, 332 - - - 6 - - - 15 - - - 接続する - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 12 - - - True - - - 21 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 最終発言 - - - 未読数(@未読数) - - - 未読数 - - - 発言数/フォロー数/フォロワー数 - - - TabPage1 - - - 1 - - - 77, 12 - - - 4 - - - 60, 12 - - - 399, 474 - - - Label1 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 14, 454 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This is sample. - - - True - - - True - - - 29 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 29 - - - 0 - - - 105, 86 - - - 3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 145, 12 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label5 - - - Label13 - - - ReTweet - - - True - - - StartupReaded - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - HotkeyAlt - - - Label54 - - - ソート順 - - - 66, 12 - - - GroupBox1 - - - 38 - - - TabPage1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - Label18 - - - GetMoreTextCountApi - - - NoControl - - - This is sample. - - - 33 - - - TabPage1 - - - 6 - - - True - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - Label55 - - - TabPage3 - - - NoControl - - - 247, 237 - - - TabPage1 - - - 93, 16 - - - Label9 - - - Label19 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - POSTキー(デフォルトEnter) - - - 6 - - - 4, 22 - - - 13 - - - 252, 293 - - - ButtonApiCalc - - - 28, 65 - - - 67, 16 - - - 6, 79 - - - 306, 218 - - - 197, 222 - - - 32 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 40 - - - 1 - - - twitter.com - - - 13 - - - 16 - - - 1 - - - TabPage2 - - - 22 - - - True - - - btnInputBackcolor - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 296, 309 - - - NoControl - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 発言詳細部のアイコン表示 - - - 25 - - - lblFav - - - TabPage1 - - - 75, 22 - - - ホットキー - - - 17 - - - 306, 193 - - - lblSelf - - - TabPage3 - - - 指定する - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 32 - - - GroupBox1 - - - 9, 373 - - - TabPage6 - - - 399, 474 - - - 30 - - - 17 - - - This is sample. - - - TabPage2 - - - 34 - - - True - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label50 - - - 11 - - - 84, 12 - - - 2 - - - 50 - - - TabPage1 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 65, 23 - - - 125, 19 - - - True - - - 3, 3, 3, 3 - - - 52, 12 - - - NoControl - - - NoControl - - - 228, 12 - - - btnDetail - - - Label51 - - - NoControl - - - リストの日時フォーマット - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 標準取得件数/Mentions取得件数 - - - NoControl - - - True - - - 再計算 - - - TabPage2 - - - 112, 19 - - - GroupBox1 - - - TabPage1 - - - TabPage6 - - - 34 - - - TabPage2 - - - 197, 360 - - - NoControl - - - 104, 19 - - - Label56 - - - TabPage1 - - - 3 - - - 11, 7 - - - 30 - - - TabPage1 - - - True - - - 399, 474 - - - 9, 298 - - - 2 - - - 8 - - - 0 - - - TabPage3 - - - GroupBox3 - - - GroupBox1 - - - 27 - - - GroupBox2 - - - 発言詳細リンク - - - GroupBox3 - - - 未読管理 - - - 常に最前面表示 - - - NoControl - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 36 - - - TabPage2 - - - TabPage3 - - - 28 - - - CheckDispUsername - - - True - - - True - - - 43, 16 - - - True - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 68, 19 - - - GroupBox1 - - - 185, 45 - - - 8, 15 - - - is.gd - - - アイコン化する - - - 117, 12 - - - True - - - 25 - - - フォント&色設定 - - - 14 - - - 65, 19 - - - TabPage6 - - - タイムアウトまでの時間(秒) - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 185, 395 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 399, 474 - - - 14 - - - プロキシの設定 - - - 文字色 - - - TabPage3 - - - 69, 12 - - - True - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - TextBoxOutputzKey - - - 49 - - - 195, 125 - - - Label52 - - - 115, 12 - - - 入力欄URLの自動短縮 - - - 1 - - - TabPage3 - - - 6, 451 - - - フォント&&色 - - - なし - - - CheckAlwaysTop - - - NoControl - - - Label2 - - - 211, 15 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11, 376 - - - 66, 16 - - - TabPage2 - - - リスト区切り線 - - - GroupBox1 - - - MiddleLeft - - - Label53 - - - True - - - 104, 19 - - - GroupBox1 - - - リストのアイコンサイズ(初期値16) - - - 21 - - - Twitter SearchAPI URL (search.twitter.com) - - - 65, 19 - - - Userstream - - - 起動時バージョンチェック - - - Label74 - - - TabPage3 - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - btnListBack - - - Label58 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This is sample. - - - 245, 125 - - - NoControl - - - CheckAutoConvertUrl - - - 24 - - - FontDialog1 - - - 6, 267 - - - NoControl - - - True - - - TabPage3 - - - 104, 19 - - - lblDetailBackcolor - - - 107, 12 - - - 63, 12 - - - TabPage1 - - - 75, 22 - - - 75, 23 - - - 91, 16 - - - 197, 336 - - - 14, 9 - - - TabPage2 - - - 6 - - - TabPage2 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 表示する - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 90, 16 - - - 162, 12 - - - 65, 19 - - - 12 - - - Save - - - True - - - 8 - - - 114, 12 - - - btnFav - - - CheckCloseToExit - - - TabPage2 - - - 185, 370 - - - GroupBox1 - - - 6, 427 - - - 285, 12 - - - 67, 16 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - URL自動短縮で優先的に使用 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - Label70 - - - 4, 22 - - - 168, 20 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - 6, 223 - - - This is sample. - - - 19 - - - NoControl - - - 18 - - - GroupBox1 - - - 44, 12 - - - Label71 - - - Label24 - - - TabControl1 - - - 使用しない - - - 23 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 6, 143 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label48 - - - True - - - CheckUseRecommendStatus - - - lblAtSelf - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 62, 12 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label25 - - - TabPage3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This is sample. - - - True - - - 34 - - - 使用する - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 24 - - - 104, 19 - - - 8 - - - TabPage3 - - - 26 - - - 6, 40 - - - 185, 320 - - - 2 - - - GroupBox3 - - - 340, 16 - - - 2 - - - 43, 16 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - クリア - - - TabPage3 - - - TabPage1 - - - Label77 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - chkUnreadStyle - - - 75, 22 - - - 8 - - - 42 - - - TabPage1 - - - GroupBox1 - - - 7 - - - Label3 - - - 171, 12 - - - 50, 12 - - - True - - - 28 - - - 173, 124 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage3 - - - 173, 80 - - - 42 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 2 - - - AuthClearButton - - - 背景色 - - - GroupBox1 - - - 17 - - - ComboDispTitle - - - TabPage5 - - - 173, 259 - - - 6, 18 - - - lblTarget - - - True - - - TabPage3 - - - Label20 - - - 3 - - - 0 - - - True - - - 306, 243 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - 4 - - - Label7 - - - 27 - - - 3 - - - 34 - - - 72, 12 - - - NoControl - - - NoControl - - - 104, 19 - - - 1 - - - 39 - - - Label66 - - - 39 - - - Label21 - - - TabPage2 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label72 - - - 185, 420 - - - 75, 22 - - - 77, 12 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 104, 19 - - - 121, 20 - - - 104, 19 - - - LabelDateTimeFormatApplied - - - 0 - - - j.mp - - - 36 - - - TextProxyPort - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage3 - - - 105, 65 - - - 12 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 126, 12 - - - 243, 81 - - - 0 - - - Label73 - - - BASIC - - - 32 - - - ロックする - - - 70, 19 - - - TabPage2 - - - 37 - - - Setting - - - 画面最小化・アイコン時のみ表示 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TextBox3 - - - 14 - - - Label78 - - - True - - - 73, 19 - - - タブの未読アイコン表示 - - - ReplyPeriod - - - MiddleLeft - - - 17 - - - TabPage2 - - - ComboBoxOutputzUrlmode - - - 35 - - - 407, 500 - - - True - - - GroupBox1 - - - 67, 16 - - - 13 - - - TabPage3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ユーザ名(&U) - - - 20 - - - 0 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage3 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox2 - - - 34 - - - ComboBoxPostKeySelect - - - 76, 12 - - - CheckPreviewEnable - - - 6 - - - GroupBox1 - - - 18 - - - GroupBox1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 48, 12 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 12 - - - MiddleLeft - - - This is sample. - - - btnOWL - - - NoControl - - - 387, 466 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 解決する - - - TabPage5 - - - 10 - - - GroupBox1 - - - NoControl - - - TabPage2 - - - 314, 12 - - - 112, 16 - - - 39, 16 - - - TabPage6 - - - Label22 - - - TabPage5 - - - 197, 62 - - - 6, 383 - - - 7 - - - TabPage1 - - - 178, 16 - - - True - - - 97, 12 - - - NoControl - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 26 - - - CheckOutputz - - - NoControl - - - 197, 266 - - - 36 - - - TextCountApi - - - True - - - 3 - - - GroupBox1 - - - 14, 68 - - - CheckUseSsl - - - Label23 - - - 48, 12 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 185, 95 - - - 3 - - - 2 - - - lblListBackcolor - - - 4 - - - True - - - 最小化したとき - - - GroupBox1 - - - 14, 365 - - - Label69 - - - Label28 - - - True - - - Ctrl+Enter - - - GroupBox1 - - - 発言詳細文字 - - - NoControl - - - ユーザーID - - - 69, 15 - - - ニックネーム - - - btnSelf - - - 67, 16 - - - 387, 60 - - - 7 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 306, 18 - - - twurl.nl - - - タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 - - - NoControl - - - 6 - - - 画像リンクサムネイル表示 - - - ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox4 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - HotkeyText - - - 114, 20 - - - True - - - 67, 16 - - - 5 - - - True - - - CheckBox3 - - - H:mm - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 片思い発言 - - - This is sample. - - - 306, 293 - - - 241, 14 - - - タイムライン更新間隔(秒) - - - 29 - - - 24 - - - 14, 408 - - - RadioProxyNone - - - AuthOAuthRadio - - - 4 - - - NoControl - - - NoControl - - - TabPage6 - - - 24, 193 - - - 22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 52, 19 - - - BrowserPathText - - - True - - - GroupBox2 - - - MiddleLeft - - - 基本 - - - 4, 22 - - - する - - - True - - - TabPage6 - - - True - - - GroupBox1 - - - CheckBalloonLimit - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage1 - - - This is sample. - - - TextBitlyId - - - HotkeyWin - - - Apply after restarting - - - 306, 268 - - - TabPage3 - - - NoControl - - - Fav発言 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 自動短縮する - - - Favorites/PublicSearchの取得数 - - - 89, 12 - - - NoControl - - - 37 - - - 75, 23 - - - 再起動後有効になります。 - - - 36 - - - 15 - - - 背景色 - - - 0 - - - 170, 20 - - - 390, 39 - - - True - - - 41 - - - Shift - - - 134, 12 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 63, 12 - - - 設定 - - - 115, 12 - - - True - - - NoControl - - - 8 - - - TabPage2 - - - 12 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11 - - - 背景色 - - - 122, 12 - - - 103, 12 - - - DM更新間隔(秒) - - - 19 - - - CheckEnableBasicAuth - - - 10 - - - 137, 12 - - - 104, 19 - - - True - - - CheckTinyURL - - - NoControl - - - FavoritesTextCountApi - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 23 - - - TabPage2 - - - TabPage3 - - - 27 - - - 49 - - - 35 - - - True - - - 74, 12 - - - 6 - - - 10 - - - TextProxyUser - - - 134, 20 - - - 9 - - - TabPage1 - - - NoControl - - - True - - - Sample: - - - CheckStartupVersion - - - 63, 12 - - - 6 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 31 - - - GroupBox2 - - - True - - - TabPage3 - - - 62, 12 - - - NoControl - - - NoControl - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - アイコン変更&点滅 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 7 - - - 9 - - - False - - - 89, 12 - - - 46 - - - 5 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 40 - - - 44 - - - 35 - - - 75, 22 - - - True - - - TabPage5 - - - 2 - - - 16 - - - 34 - - - 10 - - - NoControl - - - True - - - 1 - - - NoControl - - - True - - - 306, 118 - - - 一般発言 - - - パスワード - - - 新着時未読クリア - - - TabPage2 - - - 復活の呪文 - - - 21 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 15, 28 - - - 306, 43 - - - 386, 161 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - twitter.com/username - - - ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This is sample. - - - 32 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 104, 19 - - - 25 - - - Additional - - - 23 - - - GroupBox2 - - - 4 - - - True - - - 1 - - - True - - - 33 - - - TabPage2 - - - TabPage3 - - - 75, 23 - - - TabPage1 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 44, 19 - - - 75, 22 - - - 340, 12 - - - 306, 143 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage5 - - - 51 - - - NoControl - - - 発言詳細表示フォント(AA対応) - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 7 - - - 257, 13 - - - 76, 16 - - - 173, 236 - - - 0 - - - 5 - - - NoControl - - - TabPage3 - - - 42, 16 - - - 28, 111 - - - Japanese - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9, 73 - - - 35 - - - 2 - - - TabControl1 - - - 40 - - - 通信 - - - 通信にHTTPSを使用する - - - GroupBox1 - - - Cancel - - - @ID入力補助 - - - lblInputFont - - - TabPage1 - - - 6, 201 - - - 75, 22 - - - Button3 - - - 22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 137, 12 - - - TabPage1 - - - 197, 310 - - - 0 - - - MiddleLeft - - - 102, 78 - - - 14, 28 - - - 7 - - - 16 - - - 75, 22 - - - btnRetweet - - - TabPage6 - - - 190, 16 - - - 4 - - - 文字色 - - - 37 - - - NoControl - - - 143, 12 - - - 1 - - - 123, 12 - - - 9, 423 - - - MiddleLeft - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 53, 12 - - - 使用する - - - 13, 212 - - - 14, 89 - - - 185, 195 - - - 22 - - - lblListFont - - - True - - - 241, 36 - - - 67, 16 - - - 3 - - - タイトルバー - - - TabPage2 - - - 19 - - - 37 - - - Label26 - - - btnAtFromTarget - - - 5 - - - Not Authenticated - - - 等幅(フォント適用不具合あり) - - - 24 - - - True - - - False - - - GroupBox2 - - - デフォルトに戻す - - - 31 - - - 1 - - - 168, 19 - - - 29 - - - 11, 125 - - - btnDetailBack - - - Label27 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 237, 16 - - - 8 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - フォント&&色 - - - 324, 209 - - - True - - - True - - - TabPage1 - - - 47 - - - LabelProxyAddress - - - 173, 357 - - - 247, 213 - - - 102, 12 - - - NoControl - - - 29 - - - 75, 23 - - - 動作 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - UReadMng - - - 2 - - - 297, 78 - - - btnInputFont - - - 21 - - - MiddleLeft - - - 最前面に表示する - - - GroupBox1 - - - 38, 81 - - - 35 - - - MiddleLeft - - - True - - - True - - - GroupBox1 - - - プロキシ(&X) - - - Label64 - - - NoControl - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 4 - - - 89, 12 - - - Outputzに対応する - - - BASIC認証への変更を許可する - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 23 - - - 173, 102 - - - 2 - - - 16, 12 - - - 21 - - - True - - - btnDetailLink - - - GroupBox2 - - - 177, 12 - - - Label65 - - - bit.ly - - - TabPage1 - - - NoControl - - - 11, 25 - - - Label4 - - - 4 - - - True - - - True - - - 44, 19 - - - True - - - btnUnread - - - 4, 22 - - - 21 - - - 14, 264 - - - 11 - - - True - - - $this - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage3 - - - パスワード(&W) - - - True - - - 8 - - - 96, 19 - - - TabPage1 - - - 173, 413 - - - 23 - - - 34 - - - NoControl - - - True - - - lblAtFromTarget - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - M/d H:mm:ss - - - 終了する - - - 表示する - - - 4 - - - 背景色 - - - 23, 12 - - - GroupBox1 - - - True - - - 11 - - - その人の発言 - - - True - - - 9, 348 - - - 41 - - - 24*24 - - - 0 - - - 9, 223 - - - 5 - - - True - - - GroupBox1 - - - Label60 - - - ポート(&P) - - - 13 - - - lblAtTo - - - 背景色 - - - 33 - - - 205, 106 - - - NoControl - - - TabPage3 - - - 9 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 未読フォント - - - 1 - - - Label61 - - - TextProxyAddress - - - 9 - - - True - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - チェックする - - - 未読スタイル(フォント&色)適用 - - - RadioProxySpecified - - - 25 - - - CheckReadOldPosts - - - 185, 295 - - - HotkeyCheck - - - TwitterAPIText - - - 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 - - - 0 - - - ニコニコ動画のURLをnico.msで短縮して送信 - - - 301, 281 - - - 35 - - - 48 - - - 11, 286 - - - 76, 12 - - - 38 - - - AuthUserLabel - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 73, 12 - - - MiddleLeft - - - その発言の@先発言 - - - 19 - - - 135, 19 - - - TwitterSearchAPIText - - - 92, 16 - - - TabPage1 - - - True - - - True - - - 24 - - - 次の項目の更新時の取得数を個別に設定する - - - TabPage2 - - - 20 - - - TabPage1 - - - 8 - - - GroupBox4 - - - 0 - - - 9, 398 - - - 6 - - - TabPage2 - - - 104, 19 - - - 247, 16 - - - 11, 414 - - - 9, 48 - - - 25 - - - 4 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 185, 120 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 104, 19 - - - yy/M/d H:mm:ss - - - 194, 213 - - - バージョン - - - @未読数 - - - 21 - - - 3 - - - MiddleLeft - - - 18 - - - 全未読/全発言数 - - - 131, 12 - - - 131, 12 - - - アウトプット先のURL - - - 92, 12 - - - NoControl - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 112, 14 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Top, Bottom, Left, Right - - - True - - - True - - - フォント&色 - - - 11, 310 - - - Language - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox2 - - - 33 - - - 前データの更新/初回の更新 - - - APIKey - - - 31 - - - 234, 186 - - - TabControl1 - - - NoControl - - - 173, 190 - - - 67, 16 - - - True - - - 7 - - - Shift+Enter - - - 3 - - - 11 - - - 参照 - - - 11, 296 - - - 24 - - - True - - - 10 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - フォント&&色 - - - Enter - - - True - - - 100, 19 - - - DMPeriod - - - True - - - 13, 246 - - - 38 - - - Label63 - - - 17 - - - CenterParent - - - 75, 22 - - - TabPage4 - - - 33 - - - 12 - - - 表示する - - - アイコン変更 - - - 16 - - - 5 - - - Label68 - - - 57, 16 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11, 193 - - - 3, 3, 3, 3 - - - True - - - 135, 12 - - - TabPage3 - - - 197, 32 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - HotkeyCode - - - TabPage2 - - - 247, 285 - - - 28 - - - GroupBox1 - - - 30 - - - False - - - 2 - - - 6 - - - GroupBox1 - - - GroupBox2 - - - 6, 33 - - - 306, 393 - - - 自発言の既読化 - - - 182, 16 - - - 既読にする - - - 29, 334 - - - TabControl1 - - - NoControl - - - 197, 200 - - - 1 - - - 1 - - - True - - - GroupBox1 - - - 10 - - - 306, 318 - - - 2 - - - NoControl - - - 48*48(2Column) - - - 100, 19 - - - 44, 12 - - - GroupBox2 - - - 121, 20 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 67, 16 - - - チェックする - - - 233, 140 - - - This is sample. - - - TabPage1 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label59 - - - 14 - - - 134, 12 - - - 7 - - - 37 - - - Label76 - - - GroupBox1 - - - 9, 323 - - - 74, 16 - - - 8, 39 - - - GroupBox3 - - - 公式RT - - - NoControl - - - True - - - 17, 17 - - - 40 - - - 135, 17 - - \ No newline at end of file Deleted: trunk/Tween/Setting.vb =================================================================== --- trunk/Tween/Setting.vb 2010-12-20 11:32:19 UTC (rev 1230) +++ trunk/Tween/Setting.vb 2010-12-20 13:02:09 UTC (rev 1231) @@ -1,2193 +0,0 @@ -?Imports System.ComponentModel -Imports System.Threading - -' Tween - Client of Twitter -' Copyright (c) 2007-2010 kiri_feather (@kiri_feather) -' (c) 2008-2010 Moz (@syo68k) -' (c) 2008-2010 takeshik (@takeshik) -' All rights reserved. -' -' This file is part of Tween. -' -' This program is free software; you can redistribute it and/or modify it -' under the terms of the GNU General Public License as published by the Free -' Software Foundation; either version 3 of the License, or (at your option) -' any later version. -' -' This program is distributed in the hope that it will be useful, but -' WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -' or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -' for more details. -' -' You should have received a copy of the GNU General Public License along -' with this program. If not, see , or write to -' the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, -' Boston, MA 02110-1301, USA. - -Public Class Setting - Private Shared _instance As New Setting - Private tw As Twitter - 'Private _MyuserID As String - 'Private _Mypassword As String - Private _MytimelinePeriod As Integer - Private _MyDMPeriod As Integer - Private _MyPubSearchPeriod As Integer - Private _MyListsPeriod As Integer - Private _MyLogDays As Integer - Private _MyLogUnit As LogUnitEnum - Private _MyReaded As Boolean - Private _MyIconSize As IconSizes - Private _MyStatusText As String - Private _MyRecommendStatusText As String - Private _MyUnreadManage As Boolean - Private _MyPlaySound As Boolean - Private _MyOneWayLove As Boolean - Private _fntUnread As Font - Private _clUnread As Color - Private _fntReaded As Font - Private _clReaded As Color - Private _clFav As Color - Private _clOWL As Color - Private _clRetweet As Color - Private _fntDetail As Font - Private _clSelf As Color - Private _clAtSelf As Color - Private _clTarget As Color - Private _clAtTarget As Color - Private _clAtFromTarget As Color - Private _clAtTo As Color - Private _clInputBackcolor As Color - Private _clInputFont As Color - Private _fntInputFont As Font - Private _clListBackcolor As Color - Private _clDetailBackcolor As Color - Private _clDetail As Color - Private _clDetailLink As Color - Private _MyNameBalloon As NameBalloonEnum - Private _MyPostCtrlEnter As Boolean - Private _MyPostShiftEnter As Boolean - Private _usePostMethod As Boolean - Private _countApi As Integer - Private _countApiReply As Integer - Private _browserpath As String - 'Private _MyCheckReply As Boolean - Private _MyUseRecommendStatus As Boolean - Private _MyDispUsername As Boolean - Private _MyDispLatestPost As DispTitleEnum - Private _MySortOrderLock As Boolean - Private _MyMinimizeToTray As Boolean - Private _MyCloseToExit As Boolean - Private _MyTinyUrlResolve As Boolean - Private _MyProxyType As HttpConnection.ProxyType - Private _MyProxyAddress As String - Private _MyProxyPort As Integer - Private _MyProxyUser As String - Private _MyProxyPassword As String - Private _MyMaxPostNum As Integer - Private _MyPeriodAdjust As Boolean - Private _MyStartupVersion As Boolean - Private _MyStartupFollowers As Boolean - Private _MyRestrictFavCheck As Boolean - Private _MyAlwaysTop As Boolean - Private _MyUrlConvertAuto As Boolean - Private _MyOutputz As Boolean - Private _MyOutputzKey As String - Private _MyOutputzUrlmode As OutputzUrlmode - Private _MyNicoms As Boolean - Private _MyUnreadStyle As Boolean - Private _MyDateTimeFormat As String - Private _MyDefaultTimeOut As Integer - 'Private _MyProtectNotInclude As Boolean - Private _MyLimitBalloon As Boolean - Private _MyPostAndGet As Boolean - Private _MyReplyPeriod As Integer - Private _MyAutoShortUrlFirst As UrlConverter - Private _MyTabIconDisp As Boolean - Private _MyReplyIconState As REPLY_ICONSTATE - Private _MyReadOwnPost As Boolean - Private _MyGetFav As Boolean - Private _MyMonoSpace As Boolean - Private _MyReadOldPosts As Boolean - Private _MyUseSsl As Boolean - Private _MyBitlyId As String - Private _MyBitlyPw As String - Private _MyShowGrid As Boolean - Private _MyUseAtIdSupplement As Boolean - Private _MyUseHashSupplement As Boolean - Private _MyLanguage As String - Private _MyIsOAuth As Boolean - Private _MyTwitterApiUrl As String - Private _MyTwitterSearchApiUrl As String - Private _MyPreviewEnable As Boolean - Private _MoreCountApi As Integer - Private _FirstCountApi As Integer - Private _MyUseAdditonalCount As Boolean - Private _SearchCountApi As Integer - Private _FavoritesCountApi As Integer - Private _MyRetweetNoConfirm As Boolean - Private _MyUserstreamStartup As Boolean - Private _MyUserstreamPeriod As Integer - - Private _ValidationError As Boolean = False - - Private Sub Save_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Save.Click - If TweenMain.IsNetworkAvailable() AndAlso _ - (ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Bitly OrElse ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Jmp) AndAlso _ - (Not String.IsNullOrEmpty(TextBitlyId.Text) OrElse Not String.IsNullOrEmpty(TextBitlyPw.Text)) Then - If Not BitlyValidation(TextBitlyId.Text, TextBitlyPw.Text) Then - MessageBox.Show(My.Resources.SettingSave_ClickText1) - _ValidationError = True - TabControl1.SelectTab(1) ' 動作タブを選択 - TextBitlyId.Focus() - Exit Sub - Else - _ValidationError = False - End If - Else - _ValidationError = False - End If - Try - _MyUserstreamPeriod = CType(Me.UserstreamPeriod.Text, Integer) - _MyUserstreamStartup = Me.StartupUserstreamCheck.Checked - _MyIsOAuth = AuthOAuthRadio.Checked - _MytimelinePeriod = CType(TimelinePeriod.Text, Integer) - _MyDMPeriod = CType(DMPeriod.Text, Integer) - _MyPubSearchPeriod = CType(PubSearchPeriod.Text, Integer) - _MyListsPeriod = CType(ListsPeriod.Text, Integer) - _MyReplyPeriod = CType(ReplyPeriod.Text, Integer) - _MyMaxPostNum = 125 - - _MyReaded = StartupReaded.Checked - Select Case IconSize.SelectedIndex - Case 0 - _MyIconSize = IconSizes.IconNone - Case 1 - _MyIconSize = IconSizes.Icon16 - Case 2 - _MyIconSize = IconSizes.Icon24 - Case 3 - _MyIconSize = IconSizes.Icon48 - Case 4 - _MyIconSize = IconSizes.Icon48_2 - End Select - _MyStatusText = StatusText.Text - _MyPlaySound = PlaySnd.Checked - _MyUnreadManage = UReadMng.Checked - _MyOneWayLove = OneWayLv.Checked - - _fntUnread = lblUnread.Font '未使用 - _clUnread = lblUnread.ForeColor - _fntReaded = lblListFont.Font 'リストフォントとして使用 - _clReaded = lblListFont.ForeColor - _clFav = lblFav.ForeColor - _clOWL = lblOWL.ForeColor - _clRetweet = lblRetweet.ForeColor - _fntDetail = lblDetail.Font - _clSelf = lblSelf.BackColor - _clAtSelf = lblAtSelf.BackColor - _clTarget = lblTarget.BackColor - _clAtTarget = lblAtTarget.BackColor - _clAtFromTarget = lblAtFromTarget.BackColor - _clAtTo = lblAtTo.BackColor - _clInputBackcolor = lblInputBackcolor.BackColor - _clInputFont = lblInputFont.ForeColor - _clListBackcolor = lblListBackcolor.BackColor - _clDetailBackcolor = lblDetailBackcolor.BackColor - _clDetail = lblDetail.ForeColor - _clDetailLink = lblDetailLink.ForeColor - _fntInputFont = lblInputFont.Font - Select Case cmbNameBalloon.SelectedIndex - Case 0 - _MyNameBalloon = NameBalloonEnum.None - Case 1 - _MyNameBalloon = NameBalloonEnum.UserID - Case 2 - _MyNameBalloon = NameBalloonEnum.NickName - End Select - '_MyPostCtrlEnter = CheckPostCtrlEnter.Checked - '_MyPostShiftEnter = CheckPostShiftEnter.Checked - If ComboBoxPostKeySelect.SelectedIndex = 2 Then - _MyPostShiftEnter = True - _MyPostCtrlEnter = False - ElseIf ComboBoxPostKeySelect.SelectedIndex = 1 Then - _MyPostCtrlEnter = True - _MyPostShiftEnter = False - Else - _MyPostCtrlEnter = False - _MyPostShiftEnter = False - End If - _usePostMethod = False - _countApi = CType(TextCountApi.Text, Integer) - _countApiReply = CType(TextCountApiReply.Text, Integer) - _browserpath = BrowserPathText.Text.Trim - '_MyCheckReply = CheckboxReply.Checked - _MyPostAndGet = CheckPostAndGet.Checked - _MyUseRecommendStatus = CheckUseRecommendStatus.Checked - _MyDispUsername = CheckDispUsername.Checked - _MyCloseToExit = CheckCloseToExit.Checked - _MyMinimizeToTray = CheckMinimizeToTray.Checked - Select Case ComboDispTitle.SelectedIndex - Case 0 'None - _MyDispLatestPost = DispTitleEnum.None - Case 1 'Ver - _MyDispLatestPost = DispTitleEnum.Ver - Case 2 'Post - _MyDispLatestPost = DispTitleEnum.Post - Case 3 'RepCount - _MyDispLatestPost = DispTitleEnum.UnreadRepCount - Case 4 'AllCount - _MyDispLatestPost = DispTitleEnum.UnreadAllCount - Case 5 'Rep+All - _MyDispLatestPost = DispTitleEnum.UnreadAllRepCount - Case 6 'Unread/All - _MyDispLatestPost = DispTitleEnum.UnreadCountAllCount - Case 7 'Count of Status/Follow/Follower - _MyDispLatestPost = DispTitleEnum.OwnStatus - End Select - _MySortOrderLock = CheckSortOrderLock.Checked - _MyTinyUrlResolve = CheckTinyURL.Checked - ShortUrl.IsResolve = _MyTinyUrlResolve - If RadioProxyNone.Checked Then - _MyProxyType = HttpConnection.ProxyType.None - ElseIf RadioProxyIE.Checked Then - _MyProxyType = HttpConnection.ProxyType.IE - Else - _MyProxyType = HttpConnection.ProxyType.Specified - End If - _MyProxyAddress = TextProxyAddress.Text.Trim() - _MyProxyPort = Integer.Parse(TextProxyPort.Text.Trim()) - _MyProxyUser = TextProxyUser.Text.Trim() - _MyProxyPassword = TextProxyPassword.Text.Trim() - _MyPeriodAdjust = CheckPeriodAdjust.Checked - _MyStartupVersion = CheckStartupVersion.Checked - _MyStartupFollowers = CheckStartupFollowers.Checked - _MyRestrictFavCheck = CheckFavRestrict.Checked - _MyAlwaysTop = CheckAlwaysTop.Checked - _MyUrlConvertAuto = CheckAutoConvertUrl.Checked - _MyOutputz = CheckOutputz.Checked - _MyOutputzKey = TextBoxOutputzKey.Text.Trim() - - Select Case ComboBoxOutputzUrlmode.SelectedIndex - Case 0 - _MyOutputzUrlmode = OutputzUrlmode.twittercom - Case 1 - _MyOutputzUrlmode = OutputzUrlmode.twittercomWithUsername - End Select - - _MyNicoms = CheckNicoms.Checked - _MyUnreadStyle = chkUnreadStyle.Checked - _MyDateTimeFormat = CmbDateTimeFormat.Text - _MyDefaultTimeOut = CType(ConnectionTimeOut.Text, Integer) - '_MyProtectNotInclude = CheckProtectNotInclude.Checked - _MyRetweetNoConfirm = CheckRetweetNoConfirm.Checked - _MyLimitBalloon = CheckBalloonLimit.Checked - _MyAutoShortUrlFirst = CType(ComboBoxAutoShortUrlFirst.SelectedIndex, UrlConverter) - _MyTabIconDisp = chkTabIconDisp.Checked - _MyReadOwnPost = chkReadOwnPost.Checked - _MyGetFav = chkGetFav.Checked - _MyMonoSpace = CheckMonospace.Checked - _MyReadOldPosts = CheckReadOldPosts.Checked - _MyUseSsl = CheckUseSsl.Checked - _MyBitlyId = TextBitlyId.Text - _MyBitlyPw = TextBitlyPw.Text - _MyShowGrid = CheckShowGrid.Checked - _MyUseAtIdSupplement = CheckAtIdSupple.Checked - _MyUseHashSupplement = CheckHashSupple.Checked - _MyPreviewEnable = CheckPreviewEnable.Checked - _MyTwitterApiUrl = TwitterAPIText.Text.Trim - _MyTwitterSearchApiUrl = TwitterSearchAPIText.Text.Trim - Select Case ReplyIconStateCombo.SelectedIndex - Case 0 - _MyReplyIconState = REPLY_ICONSTATE.None - Case 1 - _MyReplyIconState = REPLY_ICONSTATE.StaticIcon - Case 2 - _MyReplyIconState = REPLY_ICONSTATE.BlinkIcon - End Select - Select Case LanguageCombo.SelectedIndex - Case 0 - _MyLanguage = "OS" - Case 1 - _MyLanguage = "ja" - Case 2 - _MyLanguage = "en" - Case 3 - _MyLanguage = "zh-CN" - Case Else - _MyLanguage = "en" - End Select - _HotkeyEnabled = Me.HotkeyCheck.Checked - _HotkeyMod = Keys.None - If Me.HotkeyAlt.Checked Then _HotkeyMod = _HotkeyMod Or Keys.Alt - If Me.HotkeyShift.Checked Then _HotkeyMod = _HotkeyMod Or Keys.Shift - If Me.HotkeyCtrl.Checked Then _HotkeyMod = _HotkeyMod Or Keys.Control - If Me.HotkeyWin.Checked Then _HotkeyMod = _HotkeyMod Or Keys.LWin - If IsNumeric(HotkeyCode.Text) Then _HotkeyValue = CInt(HotkeyCode.Text) - _HotkeyKey = DirectCast(HotkeyText.Tag, Keys) - _BlinkNewMentions = ChkNewMentionsBlink.Checked - _MyUseAdditonalCount = UseChangeGetCount.Checked - _MoreCountApi = CType(GetMoreTextCountApi.Text, Integer) - _FirstCountApi = CType(FirstTextCountApi.Text, Integer) - _SearchCountApi = CType(SearchTextCountApi.Text, Integer) - _FavoritesCountApi = CType(FavoritesTextCountApi.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.Save_ClickText3) - Me.DialogResult = Windows.Forms.DialogResult.Cancel - Exit Sub - End Try - End Sub - - Private Sub Setting_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing - If tw IsNot Nothing AndAlso tw.Username = "" AndAlso e.CloseReason = CloseReason.None Then - If MessageBox.Show(My.Resources.Setting_FormClosing1, "Confirm", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) = Windows.Forms.DialogResult.Cancel Then - e.Cancel = True - End If - End If - If _ValidationError Then - e.Cancel = True - End If - End Sub - - Private Sub Setting_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load - tw = DirectCast(Me.Owner, TweenMain).TwitterInstance - Dim uname As String = tw.Username - Dim pw As String = tw.Password - Dim tk As String = tw.AccessToken - Dim tks As String = tw.AccessTokenSecret - If Not Me._MyIsOAuth Then - 'BASIC認証時のみ表示 - Me.AuthStateLabel.Enabled = False - Me.AuthUserLabel.Enabled = False - Me.AuthClearButton.Enabled = False - Me.AuthOAuthRadio.Checked = False - Me.AuthBasicRadio.Checked = True - Me.CheckEnableBasicAuth.Checked = True - Me.AuthBasicRadio.Enabled = True - tw.Initialize(uname, pw) - Else - Me.AuthStateLabel.Enabled = True - Me.AuthUserLabel.Enabled = True - Me.AuthClearButton.Enabled = True - Me.AuthOAuthRadio.Checked = True - Me.AuthBasicRadio.Checked = False - tw.Initialize(tk, tks, uname) - End If - - Username.Text = uname - Password.Text = pw - If tw.Username = "" Then - Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 - Me.AuthUserLabel.Text = "" - Else - Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click3 - Me.AuthUserLabel.Text = tw.Username - End If - - Me.StartupUserstreamCheck.Checked = _MyUserstreamStartup - Me.UserstreamPeriod.Text = _MyUserstreamPeriod.ToString() - TimelinePeriod.Text = _MytimelinePeriod.ToString() - ReplyPeriod.Text = _MyReplyPeriod.ToString() - DMPeriod.Text = _MyDMPeriod.ToString() - PubSearchPeriod.Text = _MyPubSearchPeriod.ToString() - ListsPeriod.Text = _MyListsPeriod.ToString() - - StartupReaded.Checked = _MyReaded - Select Case _MyIconSize - Case IconSizes.IconNone - IconSize.SelectedIndex = 0 - Case IconSizes.Icon16 - IconSize.SelectedIndex = 1 - Case IconSizes.Icon24 - IconSize.SelectedIndex = 2 - Case IconSizes.Icon48 - IconSize.SelectedIndex = 3 - Case IconSizes.Icon48_2 - IconSize.SelectedIndex = 4 - End Select - StatusText.Text = _MyStatusText - UReadMng.Checked = _MyUnreadManage - If _MyUnreadManage = False Then - StartupReaded.Enabled = False - Else - StartupReaded.Enabled = True - End If - PlaySnd.Checked = _MyPlaySound - OneWayLv.Checked = _MyOneWayLove - - lblListFont.Font = _fntReaded - lblUnread.Font = _fntUnread - lblUnread.ForeColor = _clUnread - lblListFont.ForeColor = _clReaded - lblFav.ForeColor = _clFav - lblOWL.ForeColor = _clOWL - lblRetweet.ForeColor = _clRetweet - lblDetail.Font = _fntDetail - lblSelf.BackColor = _clSelf - lblAtSelf.BackColor = _clAtSelf - lblTarget.BackColor = _clTarget - lblAtTarget.BackColor = _clAtTarget - lblAtFromTarget.BackColor = _clAtFromTarget - lblAtTo.BackColor = _clAtTo - lblInputBackcolor.BackColor = _clInputBackcolor - lblInputFont.ForeColor = _clInputFont - lblInputFont.Font = _fntInputFont - lblListBackcolor.BackColor = _clListBackcolor - lblDetailBackcolor.BackColor = _clDetailBackcolor - lblDetail.ForeColor = _clDetail - lblDetailLink.ForeColor = _clDetailLink - - Select Case _MyNameBalloon - Case NameBalloonEnum.None - cmbNameBalloon.SelectedIndex = 0 - Case NameBalloonEnum.UserID - cmbNameBalloon.SelectedIndex = 1 - Case NameBalloonEnum.NickName - cmbNameBalloon.SelectedIndex = 2 - End Select - - If _MyPostCtrlEnter Then - ComboBoxPostKeySelect.SelectedIndex = 1 - Else - If _MyPostShiftEnter Then - ComboBoxPostKeySelect.SelectedIndex = 2 - Else - ComboBoxPostKeySelect.SelectedIndex = 0 - End If - End If - - TextCountApi.Text = _countApi.ToString - TextCountApiReply.Text = _countApiReply.ToString - BrowserPathText.Text = _browserpath - 'CheckboxReply.Checked = _MyCheckReply - CheckPostAndGet.Checked = _MyPostAndGet - CheckUseRecommendStatus.Checked = _MyUseRecommendStatus - CheckDispUsername.Checked = _MyDispUsername - CheckCloseToExit.Checked = _MyCloseToExit - CheckMinimizeToTray.Checked = _MyMinimizeToTray - Select Case _MyDispLatestPost - Case DispTitleEnum.None - ComboDispTitle.SelectedIndex = 0 - Case DispTitleEnum.Ver - ComboDispTitle.SelectedIndex = 1 - Case DispTitleEnum.Post - ComboDispTitle.SelectedIndex = 2 - Case DispTitleEnum.UnreadRepCount - ComboDispTitle.SelectedIndex = 3 - Case DispTitleEnum.UnreadAllCount - ComboDispTitle.SelectedIndex = 4 - Case DispTitleEnum.UnreadAllRepCount - ComboDispTitle.SelectedIndex = 5 - Case DispTitleEnum.UnreadCountAllCount - ComboDispTitle.SelectedIndex = 6 - Case DispTitleEnum.OwnStatus - ComboDispTitle.SelectedIndex = 7 - End Select - CheckSortOrderLock.Checked = _MySortOrderLock - CheckTinyURL.Checked = _MyTinyUrlResolve - Select Case _MyProxyType - Case HttpConnection.ProxyType.None - RadioProxyNone.Checked = True - Case HttpConnection.ProxyType.IE - RadioProxyIE.Checked = True - Case Else - RadioProxySpecified.Checked = True - End Select - Dim chk As Boolean = RadioProxySpecified.Checked - LabelProxyAddress.Enabled = chk - TextProxyAddress.Enabled = chk - LabelProxyPort.Enabled = chk - TextProxyPort.Enabled = chk - LabelProxyUser.Enabled = chk - TextProxyUser.Enabled = chk - LabelProxyPassword.Enabled = chk - TextProxyPassword.Enabled = chk - - TextProxyAddress.Text = _MyProxyAddress - TextProxyPort.Text = _MyProxyPort.ToString - TextProxyUser.Text = _MyProxyUser - TextProxyPassword.Text = _MyProxyPassword - - CheckPeriodAdjust.Checked = _MyPeriodAdjust - CheckStartupVersion.Checked = _MyStartupVersion - CheckStartupFollowers.Checked = _MyStartupFollowers - CheckFavRestrict.Checked = _MyRestrictFavCheck - CheckAlwaysTop.Checked = _MyAlwaysTop - CheckAutoConvertUrl.Checked = _MyUrlConvertAuto - CheckOutputz.Checked = _MyOutputz - TextBoxOutputzKey.Text = _MyOutputzKey - - Select Case _MyOutputzUrlmode - Case OutputzUrlmode.twittercom - ComboBoxOutputzUrlmode.SelectedIndex = 0 - Case OutputzUrlmode.twittercomWithUsername - ComboBoxOutputzUrlmode.SelectedIndex = 1 - End Select - - CheckNicoms.Checked = _MyNicoms - chkUnreadStyle.Checked = _MyUnreadStyle - CmbDateTimeFormat.Text = _MyDateTimeFormat - ConnectionTimeOut.Text = _MyDefaultTimeOut.ToString - 'CheckProtectNotInclude.Checked = _MyProtectNotInclude - CheckRetweetNoConfirm.Checked = _MyRetweetNoConfirm - CheckBalloonLimit.Checked = _MyLimitBalloon - ComboBoxAutoShortUrlFirst.SelectedIndex = _MyAutoShortUrlFirst - chkTabIconDisp.Checked = _MyTabIconDisp - chkReadOwnPost.Checked = _MyReadOwnPost - chkGetFav.Checked = _MyGetFav - CheckMonospace.Checked = _MyMonoSpace - CheckReadOldPosts.Checked = _MyReadOldPosts - CheckUseSsl.Checked = _MyUseSsl - TextBitlyId.Text = _MyBitlyId - TextBitlyPw.Text = _MyBitlyPw - TextBitlyId.Modified = False - TextBitlyPw.Modified = False - CheckShowGrid.Checked = _MyShowGrid - CheckAtIdSupple.Checked = _MyUseAtIdSupplement - CheckHashSupple.Checked = _MyUseHashSupplement - CheckPreviewEnable.Checked = _MyPreviewEnable - TwitterAPIText.Text = _MyTwitterApiUrl - TwitterSearchAPIText.Text = _MyTwitterSearchApiUrl - Select Case _MyReplyIconState - Case REPLY_ICONSTATE.None - ReplyIconStateCombo.SelectedIndex = 0 - Case REPLY_ICONSTATE.StaticIcon - ReplyIconStateCombo.SelectedIndex = 1 - Case REPLY_ICONSTATE.BlinkIcon - ReplyIconStateCombo.SelectedIndex = 2 - End Select - Select Case _MyLanguage - Case "OS" - LanguageCombo.SelectedIndex = 0 - Case "ja" - LanguageCombo.SelectedIndex = 1 - Case "en" - LanguageCombo.SelectedIndex = 2 - Case "zh-CN" - LanguageCombo.SelectedIndex = 3 - Case Else - LanguageCombo.SelectedIndex = 0 - End Select - HotkeyCheck.Checked = _HotkeyEnabled - HotkeyAlt.Checked = ((_HotkeyMod And Keys.Alt) = Keys.Alt) - HotkeyCtrl.Checked = ((_HotkeyMod And Keys.Control) = Keys.Control) - HotkeyShift.Checked = ((_HotkeyMod And Keys.Shift) = Keys.Shift) - HotkeyWin.Checked = ((_HotkeyMod And Keys.LWin) = Keys.LWin) - HotkeyCode.Text = _HotkeyValue.ToString - HotkeyText.Text = _HotkeyKey.ToString - HotkeyText.Tag = _HotkeyKey - HotkeyAlt.Enabled = HotkeyEnabled - HotkeyShift.Enabled = HotkeyEnabled - HotkeyCtrl.Enabled = HotkeyEnabled - HotkeyWin.Enabled = HotkeyEnabled - HotkeyText.Enabled = HotkeyEnabled - HotkeyCode.Enabled = HotkeyEnabled - ChkNewMentionsBlink.Checked = _BlinkNewMentions - - TabControl1.SelectedIndex = 0 - ActiveControl = Username - - CheckOutputz_CheckedChanged(sender, e) - - GetMoreTextCountApi.Text = _MoreCountApi.ToString - FirstTextCountApi.Text = _FirstCountApi.ToString - SearchTextCountApi.Text = _SearchCountApi.ToString - FavoritesTextCountApi.Text = _FavoritesCountApi.ToString - UseChangeGetCount.Checked = _MyUseAdditonalCount - Label53.Enabled = UseChangeGetCount.Checked - Label66.Enabled = UseChangeGetCount.Checked - GetMoreTextCountApi.Enabled = UseChangeGetCount.Checked - FirstTextCountApi.Enabled = UseChangeGetCount.Checked - SearchTextCountApi.Enabled = UseChangeGetCount.Checked - FavoritesTextCountApi.Enabled = UseChangeGetCount.Checked - End Sub - - Private Sub UserstreamPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles UserstreamPeriod.Validating - Dim prd As Integer - Try - prd = CType(UserstreamPeriod.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.UserstreamPeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If prd < 0 OrElse prd > 60 Then - MessageBox.Show(My.Resources.UserstreamPeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End If - CalcApiUsing() - End Sub - - Private Sub TimelinePeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TimelinePeriod.Validating - Dim prd As Integer - Try - prd = CType(TimelinePeriod.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then - MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText2) - e.Cancel = True - Exit Sub - End If - CalcApiUsing() - End Sub - - Private Sub ReplyPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ReplyPeriod.Validating - Dim prd As Integer - Try - prd = CType(ReplyPeriod.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then - MessageBox.Show(My.Resources.TimelinePeriod_ValidatingText2) - e.Cancel = True - Exit Sub - End If - CalcApiUsing() - End Sub - - Private Sub DMPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles DMPeriod.Validating - Dim prd As Integer - Try - prd = CType(DMPeriod.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.DMPeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then - MessageBox.Show(My.Resources.DMPeriod_ValidatingText2) - e.Cancel = True - Exit Sub - End If - CalcApiUsing() - End Sub - - Private Sub PubSearchPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles PubSearchPeriod.Validating - Dim prd As Integer - Try - prd = CType(PubSearchPeriod.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.PubSearchPeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If prd <> 0 AndAlso (prd < 30 OrElse prd > 6000) Then - MessageBox.Show(My.Resources.PubSearchPeriod_ValidatingText2) - e.Cancel = True - End If - End Sub - - Private Sub ListsPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ListsPeriod.Validating - Dim prd As Integer - Try - prd = CType(ListsPeriod.Text, Integer) - Catch ex As Exception - MessageBox.Show(My.Resources.DMPeriod_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If prd <> 0 AndAlso (prd < 15 OrElse prd > 6000) Then - MessageBox.Show(My.Resources.DMPeriod_ValidatingText2) - e.Cancel = True - Exit Sub - End If - CalcApiUsing() - End Sub - - Private Sub UReadMng_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) - If UReadMng.Checked = True Then - StartupReaded.Enabled = True - Else - StartupReaded.Enabled = False - End If - End Sub - - Private Sub btnFontAndColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDetail.Click, btnListFont.Click, btnUnread.Click, btnInputFont.Click - Dim Btn As Button = CType(sender, Button) - Dim rtn As DialogResult - - FontDialog1.AllowVerticalFonts = False - FontDialog1.AllowScriptChange = True - FontDialog1.AllowSimulations = True - FontDialog1.AllowVectorFonts = True - FontDialog1.FixedPitchOnly = False - FontDialog1.FontMustExist = True - FontDialog1.ScriptsOnly = False - FontDialog1.ShowApply = False - FontDialog1.ShowEffects = True - FontDialog1.ShowColor = True - - Select Case Btn.Name - Case "btnUnread" - FontDialog1.Color = lblUnread.ForeColor - FontDialog1.Font = lblUnread.Font - Case "btnDetail" - FontDialog1.Color = lblDetail.ForeColor - FontDialog1.Font = lblDetail.Font - Case "btnListFont" - FontDialog1.Color = lblListFont.ForeColor - FontDialog1.Font = lblListFont.Font - Case "btnInputFont" - FontDialog1.Color = lblInputFont.ForeColor - FontDialog1.Font = lblInputFont.Font - End Select - - Try - rtn = FontDialog1.ShowDialog - Catch ex As ArgumentException - MessageBox.Show(ex.Message) - Exit Sub - End Try - - If rtn = Windows.Forms.DialogResult.Cancel Then Exit Sub - - Select Case Btn.Name - Case "btnUnread" - lblUnread.ForeColor = FontDialog1.Color - lblUnread.Font = FontDialog1.Font - Case "btnDetail" - lblDetail.ForeColor = FontDialog1.Color - lblDetail.Font = FontDialog1.Font - Case "btnListFont" - lblListFont.ForeColor = FontDialog1.Color - lblListFont.Font = FontDialog1.Font - Case "btnInputFont" - lblInputFont.ForeColor = FontDialog1.Color - lblInputFont.Font = FontDialog1.Font - End Select - - End Sub - - Private Sub btnColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSelf.Click, btnAtSelf.Click, btnTarget.Click, btnAtTarget.Click, btnAtFromTarget.Click, btnFav.Click, btnOWL.Click, btnInputBackcolor.Click, btnAtTo.Click, btnListBack.Click, btnDetailBack.Click, btnDetailLink.Click, btnRetweet.Click - Dim Btn As Button = CType(sender, Button) - Dim rtn As DialogResult - - ColorDialog1.AllowFullOpen = True - ColorDialog1.AnyColor = True - ColorDialog1.FullOpen = False - ColorDialog1.SolidColorOnly = False - - Select Case Btn.Name - Case "btnSelf" - ColorDialog1.Color = lblSelf.BackColor - Case "btnAtSelf" - ColorDialog1.Color = lblAtSelf.BackColor - Case "btnTarget" - ColorDialog1.Color = lblTarget.BackColor - Case "btnAtTarget" - ColorDialog1.Color = lblAtTarget.BackColor - Case "btnAtFromTarget" - ColorDialog1.Color = lblAtFromTarget.BackColor - Case "btnFav" - ColorDialog1.Color = lblFav.ForeColor - Case "btnOWL" - ColorDialog1.Color = lblOWL.ForeColor - Case "btnRetweet" - ColorDialog1.Color = lblRetweet.ForeColor - Case "btnInputBackcolor" - ColorDialog1.Color = lblInputBackcolor.BackColor - Case "btnAtTo" - ColorDialog1.Color = lblAtTo.BackColor - Case "btnListBack" - ColorDialog1.Color = lblListBackcolor.BackColor - Case "btnDetailBack" - ColorDialog1.Color = lblDetailBackcolor.BackColor - Case "btnDetailLink" - ColorDialog1.Color = lblDetailLink.ForeColor - End Select - - rtn = ColorDialog1.ShowDialog - - If rtn = Windows.Forms.DialogResult.Cancel Then Exit Sub - - Select Case Btn.Name - Case "btnSelf" - lblSelf.BackColor = ColorDialog1.Color - Case "btnAtSelf" - lblAtSelf.BackColor = ColorDialog1.Color - Case "btnTarget" - lblTarget.BackColor = ColorDialog1.Color - Case "btnAtTarget" - lblAtTarget.BackColor = ColorDialog1.Color - Case "btnAtFromTarget" - lblAtFromTarget.BackColor = ColorDialog1.Color - Case "btnFav" - lblFav.ForeColor = ColorDialog1.Color - Case "btnOWL" - lblOWL.ForeColor = ColorDialog1.Color - Case "btnRetweet" - lblRetweet.ForeColor = ColorDialog1.Color - Case "btnInputBackcolor" - lblInputBackcolor.BackColor = ColorDialog1.Color - Case "btnAtTo" - lblAtTo.BackColor = ColorDialog1.Color - Case "btnListBack" - lblListBackcolor.BackColor = ColorDialog1.Color - Case "btnDetailBack" - lblDetailBackcolor.BackColor = ColorDialog1.Color - Case "btnDetailLink" - lblDetailLink.ForeColor = ColorDialog1.Color - End Select - End Sub - - Public Property UserstreamPeriodInt() As Integer - Get - Return _MyUserstreamPeriod - End Get - Set(ByVal value As Integer) - _MyUserstreamPeriod = value - End Set - End Property - - Public Property UserstreamStartup() As Boolean - Get - Return Me._MyUserstreamStartup - End Get - Set(ByVal value As Boolean) - Me._MyUserstreamStartup = value - End Set - End Property - - Public Property TimelinePeriodInt() As Integer - Get - Return _MytimelinePeriod - End Get - Set(ByVal value As Integer) - _MytimelinePeriod = value - End Set - End Property - - Public Property ReplyPeriodInt() As Integer - Get - Return _MyReplyPeriod - End Get - Set(ByVal value As Integer) - _MyReplyPeriod = value - End Set - End Property - - Public Property DMPeriodInt() As Integer - Get - Return _MyDMPeriod - End Get - Set(ByVal value As Integer) - _MyDMPeriod = value - End Set - End Property - - Public Property PubSearchPeriodInt() As Integer - Get - Return _MyPubSearchPeriod - End Get - Set(ByVal value As Integer) - _MyPubSearchPeriod = value - End Set - End Property - - Public Property ListsPeriodInt() As Integer - Get - Return _MyListsPeriod - End Get - Set(ByVal value As Integer) - _MyListsPeriod = value - End Set - End Property - - Public Property Readed() As Boolean - Get - Return _MyReaded - End Get - Set(ByVal value As Boolean) - _MyReaded = value - End Set - End Property - - Public Property IconSz() As IconSizes - Get - Return _MyIconSize - End Get - Set(ByVal value As IconSizes) - _MyIconSize = value - End Set - End Property - - Public Property Status() As String - Get - Return _MyStatusText - End Get - Set(ByVal value As String) - _MyStatusText = value - End Set - End Property - - Public Property UnreadManage() As Boolean - Get - Return _MyUnreadManage - End Get - Set(ByVal value As Boolean) - _MyUnreadManage = value - End Set - End Property - - Public Property PlaySound() As Boolean - Get - Return _MyPlaySound - End Get - Set(ByVal value As Boolean) - _MyPlaySound = value - End Set - End Property - - Public Property OneWayLove() As Boolean - Get - Return _MyOneWayLove - End Get - Set(ByVal value As Boolean) - _MyOneWayLove = value - End Set - End Property - - '''''未使用 - Public Property FontUnread() As Font - Get - Return _fntUnread - End Get - Set(ByVal value As Font) - _fntUnread = value - '無視 - End Set - End Property - - Public Property ColorUnread() As Color - Get - Return _clUnread - End Get - Set(ByVal value As Color) - _clUnread = value - End Set - End Property - - '''''リストフォントとして使用 - Public Property FontReaded() As Font - Get - Return _fntReaded - End Get - Set(ByVal value As Font) - _fntReaded = value - End Set - End Property - - Public Property ColorReaded() As Color - Get - Return _clReaded - End Get - Set(ByVal value As Color) - _clReaded = value - End Set - End Property - - Public Property ColorFav() As Color - Get - Return _clFav - End Get - Set(ByVal value As Color) - _clFav = value - End Set - End Property - - Public Property ColorOWL() As Color - Get - Return _clOWL - End Get - Set(ByVal value As Color) - _clOWL = value - End Set - End Property - - Public Property ColorRetweet() As Color - Get - Return _clRetweet - End Get - Set(ByVal value As Color) - _clRetweet = value - End Set - End Property - - Public Property FontDetail() As Font - Get - Return _fntDetail - End Get - Set(ByVal value As Font) - _fntDetail = value - End Set - End Property - - Public Property ColorDetail() As Color - Get - Return _clDetail - End Get - Set(ByVal value As Color) - _clDetail = value - End Set - End Property - - Public Property ColorDetailLink() As Color - Get - Return _clDetailLink - End Get - Set(ByVal value As Color) - _clDetailLink = value - End Set - End Property - - Public Property ColorSelf() As Color - Get - Return _clSelf - End Get - Set(ByVal value As Color) - _clSelf = value - End Set - End Property - - Public Property ColorAtSelf() As Color - Get - Return _clAtSelf - End Get - Set(ByVal value As Color) - _clAtSelf = value - End Set - End Property - - Public Property ColorTarget() As Color - Get - Return _clTarget - End Get - Set(ByVal value As Color) - _clTarget = value - End Set - End Property - - Public Property ColorAtTarget() As Color - Get - Return _clAtTarget - End Get - Set(ByVal value As Color) - _clAtTarget = value - End Set - End Property - - Public Property ColorAtFromTarget() As Color - Get - Return _clAtFromTarget - End Get - Set(ByVal value As Color) - _clAtFromTarget = value - End Set - End Property - - Public Property ColorAtTo() As Color - Get - Return _clAtTo - End Get - Set(ByVal value As Color) - _clAtTo = value - End Set - End Property - - Public Property ColorInputBackcolor() As Color - Get - Return _clInputBackcolor - End Get - Set(ByVal value As Color) - _clInputBackcolor = value - End Set - End Property - - Public Property ColorInputFont() As Color - Get - Return _clInputFont - End Get - Set(ByVal value As Color) - _clInputFont = value - End Set - End Property - - Public Property FontInputFont() As Font - Get - Return _fntInputFont - End Get - Set(ByVal value As Font) - _fntInputFont = value - End Set - End Property - - Public Property ColorListBackcolor() As Color - Get - Return _clListBackcolor - End Get - Set(ByVal value As Color) - _clListBackcolor = value - End Set - End Property - - Public Property ColorDetailBackcolor() As Color - Get - Return _clDetailBackcolor - End Get - Set(ByVal value As Color) - _clDetailBackcolor = value - End Set - End Property - - Public Property NameBalloon() As NameBalloonEnum - Get - Return _MyNameBalloon - End Get - Set(ByVal value As NameBalloonEnum) - _MyNameBalloon = value - End Set - End Property - - Public Property PostCtrlEnter() As Boolean - Get - Return _MyPostCtrlEnter - End Get - Set(ByVal value As Boolean) - _MyPostCtrlEnter = value - End Set - End Property - - Public Property PostShiftEnter() As Boolean - Get - Return _MyPostShiftEnter - End Get - Set(ByVal value As Boolean) - _MyPostShiftEnter = value - End Set - End Property - - Public Property CountApi() As Integer - Get - Return _countApi - End Get - Set(ByVal value As Integer) - _countApi = value - End Set - End Property - - Public Property CountApiReply() As Integer - Get - Return _countApiReply - End Get - Set(ByVal value As Integer) - _countApiReply = value - End Set - End Property - - Public Property MoreCountApi() As Integer - Get - Return _MoreCountApi - End Get - Set(ByVal value As Integer) - _MoreCountApi = value - End Set - End Property - - Public Property FirstCountApi() As Integer - Get - Return _FirstCountApi - End Get - Set(ByVal value As Integer) - _FirstCountApi = value - End Set - End Property - - Public Property SearchCountApi() As Integer - Get - Return _SearchCountApi - End Get - Set(ByVal value As Integer) - _SearchCountApi = value - End Set - End Property - - Public Property FavoritesCountApi() As Integer - Get - Return _FavoritesCountApi - End Get - Set(ByVal value As Integer) - _FavoritesCountApi = value - End Set - End Property - - Public Property PostAndGet() As Boolean - Get - Return _MyPostAndGet - End Get - Set(ByVal value As Boolean) - _MyPostAndGet = value - End Set - End Property - - Public Property UseRecommendStatus() As Boolean - Get - Return _MyUseRecommendStatus - End Get - Set(ByVal value As Boolean) - _MyUseRecommendStatus = value - End Set - End Property - - Public Property RecommendStatusText() As String - Get - Return _MyRecommendStatusText - End Get - Set(ByVal value As String) - _MyRecommendStatusText = value - End Set - End Property - - Public Property DispUsername() As Boolean - Get - Return _MyDispUsername - End Get - Set(ByVal value As Boolean) - _MyDispUsername = value - End Set - End Property - - Public Property CloseToExit() As Boolean - Get - Return _MyCloseToExit - End Get - Set(ByVal value As Boolean) - _MyCloseToExit = value - End Set - End Property - - Public Property MinimizeToTray() As Boolean - Get - Return _MyMinimizeToTray - End Get - Set(ByVal value As Boolean) - _MyMinimizeToTray = value - End Set - End Property - - Public Property DispLatestPost() As DispTitleEnum - Get - Return _MyDispLatestPost - End Get - Set(ByVal value As DispTitleEnum) - _MyDispLatestPost = value - End Set - End Property - - Public Property BrowserPath() As String - Get - Return _browserpath - End Get - Set(ByVal value As String) - _browserpath = value - End Set - End Property - - Public Property TinyUrlResolve() As Boolean - Get - Return _MyTinyUrlResolve - End Get - Set(ByVal value As Boolean) - _MyTinyUrlResolve = value - End Set - End Property - - Private Sub CheckUseRecommendStatus_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckUseRecommendStatus.CheckedChanged - If CheckUseRecommendStatus.Checked = True Then - StatusText.Enabled = False - Else - StatusText.Enabled = True - End If - End Sub - - Public Property SortOrderLock() As Boolean - Get - Return _MySortOrderLock - End Get - Set(ByVal value As Boolean) - _MySortOrderLock = value - End Set - End Property - - Public Property SelectedProxyType() As HttpConnection.ProxyType - Get - Return _MyProxyType - End Get - Set(ByVal value As HttpConnection.ProxyType) - _MyProxyType = value - End Set - End Property - - Public Property ProxyAddress() As String - Get - Return _MyProxyAddress - End Get - Set(ByVal value As String) - _MyProxyAddress = value - End Set - End Property - - Public Property ProxyPort() As Integer - Get - Return _MyProxyPort - End Get - Set(ByVal value As Integer) - _MyProxyPort = value - End Set - End Property - - Public Property ProxyUser() As String - Get - Return _MyProxyUser - End Get - Set(ByVal value As String) - _MyProxyUser = value - End Set - End Property - - Public Property ProxyPassword() As String - Get - Return _MyProxyPassword - End Get - Set(ByVal value As String) - _MyProxyPassword = value - End Set - End Property - - Public Property PeriodAdjust() As Boolean - Get - Return _MyPeriodAdjust - End Get - Set(ByVal value As Boolean) - _MyPeriodAdjust = value - End Set - End Property - - Public Property StartupVersion() As Boolean - Get - Return _MyStartupVersion - End Get - Set(ByVal value As Boolean) - _MyStartupVersion = value - End Set - End Property - - Public Property StartupFollowers() As Boolean - Get - Return _MyStartupFollowers - End Get - Set(ByVal value As Boolean) - _MyStartupFollowers = value - End Set - End Property - - Public Property RestrictFavCheck() As Boolean - Get - Return _MyRestrictFavCheck - End Get - Set(ByVal value As Boolean) - _MyRestrictFavCheck = value - End Set - End Property - - Public Property AlwaysTop() As Boolean - Get - Return _MyAlwaysTop - End Get - Set(ByVal value As Boolean) - _MyAlwaysTop = value - End Set - End Property - - Public Property UrlConvertAuto() As Boolean - Get - Return _MyUrlConvertAuto - End Get - Set(ByVal value As Boolean) - _MyUrlConvertAuto = value - End Set - End Property - Public Property OutputzEnabled() As Boolean - Get - Return _MyOutputz - End Get - Set(ByVal value As Boolean) - _MyOutputz = value - End Set - End Property - Public Property OutputzKey() As String - Get - Return _MyOutputzKey - End Get - Set(ByVal value As String) - _MyOutputzKey = value - End Set - End Property - Public Property OutputzUrlmode() As OutputzUrlmode - Get - Return _MyOutputzUrlmode - End Get - Set(ByVal value As OutputzUrlmode) - _MyOutputzUrlmode = value - End Set - End Property - - Public Property Nicoms() As Boolean - Get - Return _MyNicoms - End Get - Set(ByVal value As Boolean) - _MyNicoms = value - End Set - End Property - Public Property AutoShortUrlFirst() As UrlConverter - Get - Return _MyAutoShortUrlFirst - End Get - Set(ByVal value As UrlConverter) - _MyAutoShortUrlFirst = value - End Set - End Property - - Public Property UseUnreadStyle() As Boolean - Get - Return _MyUnreadStyle - End Get - Set(ByVal value As Boolean) - _MyUnreadStyle = value - End Set - End Property - - Public Property DateTimeFormat() As String - Get - Return _MyDateTimeFormat - End Get - Set(ByVal value As String) - _MyDateTimeFormat = value - End Set - End Property - - Public Property DefaultTimeOut() As Integer - Get - Return _MyDefaultTimeOut - End Get - Set(ByVal value As Integer) - _MyDefaultTimeOut = value - End Set - End Property - - 'Public Property ProtectNotInclude() As Boolean - ' Get - ' Return _MyProtectNotInclude - ' End Get - ' Set(ByVal value As Boolean) - ' _MyProtectNotInclude = value - ' End Set - 'End Property - - Public Property RetweetNoConfirm() As Boolean - Get - Return _MyRetweetNoConfirm - End Get - Set(ByVal value As Boolean) - _MyRetweetNoConfirm = value - End Set - End Property - - Public Property TabIconDisp() As Boolean - Get - Return _MyTabIconDisp - End Get - Set(ByVal value As Boolean) - _MyTabIconDisp = value - End Set - End Property - - Public Property ReplyIconState() As REPLY_ICONSTATE - Get - Return _MyReplyIconState - End Get - Set(ByVal value As REPLY_ICONSTATE) - _MyReplyIconState = value - End Set - End Property - - Public Property ReadOwnPost() As Boolean - Get - Return _MyReadOwnPost - End Get - Set(ByVal value As Boolean) - _MyReadOwnPost = value - End Set - End Property - - Public Property GetFav() As Boolean - Get - Return _MyGetFav - End Get - Set(ByVal value As Boolean) - _MyGetFav = value - End Set - End Property - - Public Property IsMonospace() As Boolean - Get - Return _MyMonoSpace - End Get - Set(ByVal value As Boolean) - _MyMonoSpace = value - End Set - End Property - - Public Property ReadOldPosts() As Boolean - Get - Return _MyReadOldPosts - End Get - Set(ByVal value As Boolean) - _MyReadOldPosts = value - End Set - End Property - - Public Property UseSsl() As Boolean - Get - Return _MyUseSsl - End Get - Set(ByVal value As Boolean) - _MyUseSsl = value - End Set - End Property - - Public Property BitlyUser() As String - Get - Return _MyBitlyId - End Get - Set(ByVal value As String) - _MyBitlyId = value - End Set - End Property - - Public Property BitlyPwd() As String - Get - Return _MyBitlyPw - End Get - Set(ByVal value As String) - _MyBitlyPw = value - End Set - End Property - - Public Property ShowGrid() As Boolean - Get - Return _MyShowGrid - End Get - Set(ByVal value As Boolean) - _MyShowGrid = value - End Set - End Property - - Public Property UseAtIdSupplement() As Boolean - Get - Return _MyUseAtIdSupplement - End Get - Set(ByVal value As Boolean) - _MyUseAtIdSupplement = value - End Set - End Property - - Public Property UseHashSupplement() As Boolean - Get - Return _MyUseHashSupplement - End Get - Set(ByVal value As Boolean) - _MyUseHashSupplement = value - End Set - End Property - - Public Property PreviewEnable() As Boolean - Get - Return _MyPreviewEnable - End Get - Set(ByVal value As Boolean) - _MyPreviewEnable = value - End Set - End Property - - Public Property UseAdditionalCount() As Boolean - Get - Return _MyUseAdditonalCount - End Get - Set(ByVal value As Boolean) - _MyUseAdditonalCount = value - End Set - End Property - - Public Property TwitterApiUrl() As String - Get - Return _MyTwitterApiUrl - End Get - Set(ByVal value As String) - _MyTwitterApiUrl = value - End Set - End Property - - Public Property TwitterSearchApiUrl() As String - Get - Return _MyTwitterSearchApiUrl - End Get - Set(ByVal value As String) - _MyTwitterSearchApiUrl = value - End Set - End Property - - Public Property Language() As String - Get - Return _MyLanguage - End Get - Set(ByVal value As String) - _MyLanguage = value - End Set - End Property - - Public Property IsOAuth() As Boolean - Get - Return _MyIsOAuth - End Get - Set(ByVal value As Boolean) - _MyIsOAuth = value - End Set - End Property - - Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click - Dim filedlg As New OpenFileDialog() - - filedlg.Filter = My.Resources.Button3_ClickText1 - filedlg.FilterIndex = 1 - filedlg.Title = My.Resources.Button3_ClickText2 - filedlg.RestoreDirectory = True - - If filedlg.ShowDialog() = Windows.Forms.DialogResult.OK Then - BrowserPathText.Text = filedlg.FileName - End If - End Sub - - Private Sub RadioProxySpecified_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioProxySpecified.CheckedChanged - Dim chk As Boolean = RadioProxySpecified.Checked - LabelProxyAddress.Enabled = chk - TextProxyAddress.Enabled = chk - LabelProxyPort.Enabled = chk - TextProxyPort.Enabled = chk - LabelProxyUser.Enabled = chk - TextProxyUser.Enabled = chk - LabelProxyPassword.Enabled = chk - TextProxyPassword.Enabled = chk - End Sub - - Private Sub TextProxyPort_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextProxyPort.Validating - Dim port As Integer - If TextProxyPort.Text.Trim() = "" Then TextProxyPort.Text = "0" - If Integer.TryParse(TextProxyPort.Text.Trim(), port) = False Then - MessageBox.Show(My.Resources.TextProxyPort_ValidatingText1) - e.Cancel = True - Exit Sub - End If - If port < 0 Or port > 65535 Then - MessageBox.Show(My.Resources.TextProxyPort_ValidatingText2) - e.Cancel = True - Exit Sub - End If - End Sub - - Private Sub CheckOutputz_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckOutputz.CheckedChanged - If CheckOutputz.Checked = True Then - Label59.Enabled = True - Label60.Enabled = True - TextBoxOutputzKey.Enabled = True - ComboBoxOutputzUrlmode.Enabled = True - Else - Label59.Enabled = False - Label60.Enabled = False - TextBoxOutputzKey.Enabled = False - ComboBoxOutputzUrlmode.Enabled = False - End If - End Sub - - Private Sub TextBoxOutputzKey_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextBoxOutputzKey.Validating - If CheckOutputz.Checked Then - TextBoxOutputzKey.Text = Trim(TextBoxOutputzKey.Text) - If TextBoxOutputzKey.Text.Length = 0 Then - MessageBox.Show(My.Resources.TextBoxOutputzKey_Validating) - e.Cancel = True - Exit Sub - End If - End If - End Sub - - Private Function CreateDateTimeFormatSample() As Boolean - Try - LabelDateTimeFormatApplied.Text = DateTime.Now.ToString(CmbDateTimeFormat.Text) - Catch ex As FormatException - LabelDateTimeFormatApplied.Text = My.Resources.CreateDateTimeFormatSampleText1 - Return False - End Try - Return True - End Function - - Private Sub CmbDateTimeFormat_TextUpdate(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbDateTimeFormat.TextUpdate - CreateDateTimeFormatSample() - End Sub - - Private Sub CmbDateTimeFormat_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbDateTimeFormat.SelectedIndexChanged - CreateDateTimeFormatSample() - End Sub - - Private Sub CmbDateTimeFormat_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles CmbDateTimeFormat.Validating - If Not CreateDateTimeFormatSample() Then - MessageBox.Show(My.Resources.CmbDateTimeFormat_Validating) - e.Cancel = True - End If - End Sub - - Private Sub ConnectionTimeOut_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ConnectionTimeOut.Validating - Dim tm As Integer - Try - tm = CInt(ConnectionTimeOut.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.ConnectionTimeOut_ValidatingText1) - e.Cancel = True - Exit Sub - End Try - - If tm < HttpTimeOut.MinValue OrElse tm > HttpTimeOut.MaxValue Then - MessageBox.Show(My.Resources.ConnectionTimeOut_ValidatingText1) - e.Cancel = True - End If - End Sub - - Private Sub LabelDateTimeFormatApplied_VisibleChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles LabelDateTimeFormatApplied.VisibleChanged - CreateDateTimeFormatSample() - End Sub - - Private Sub TextCountApi_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextCountApi.Validating - Dim cnt As Integer - Try - cnt = Integer.Parse(TextCountApi.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End Try - - If cnt < 20 OrElse cnt > 200 Then - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End If - End Sub - - Private Sub TextCountApiReply_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles TextCountApiReply.Validating - Dim cnt As Integer - Try - cnt = Integer.Parse(TextCountApiReply.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End Try - - If cnt < 20 OrElse cnt > 200 Then - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End If - End Sub - - Public Property LimitBalloon() As Boolean - Get - Return _MyLimitBalloon - End Get - Set(ByVal value As Boolean) - _MyLimitBalloon = value - End Set - End Property - - Private Sub ComboBoxAutoShortUrlFirst_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBoxAutoShortUrlFirst.SelectedIndexChanged - If ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Bitly OrElse _ - ComboBoxAutoShortUrlFirst.SelectedIndex = UrlConverter.Jmp Then - TextBitlyId.Enabled = True - TextBitlyPw.Enabled = True - Else - TextBitlyId.Enabled = False - TextBitlyPw.Enabled = False - End If - End Sub - - Private Sub ButtonBackToDefaultFontColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonBackToDefaultFontColor.Click - lblUnread.ForeColor = System.Drawing.SystemColors.ControlText - lblUnread.Font = New Font(SystemFonts.DefaultFont, FontStyle.Bold Or FontStyle.Underline) - - lblListFont.ForeColor = System.Drawing.SystemColors.ControlText - lblListFont.Font = System.Drawing.SystemFonts.DefaultFont - - lblDetail.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.ControlText) - lblDetail.Font = System.Drawing.SystemFonts.DefaultFont - - lblInputFont.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.ControlText) - lblInputFont.Font = System.Drawing.SystemFonts.DefaultFont - - lblSelf.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.AliceBlue) - - lblAtSelf.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.AntiqueWhite) - - lblTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LemonChiffon) - - lblAtTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LavenderBlush) - - lblAtFromTarget.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Honeydew) - - lblFav.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Red) - - lblOWL.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Blue) - - lblInputBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.LemonChiffon) - - lblAtTo.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Pink) - - lblListBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Window) - - lblDetailBackcolor.BackColor = Color.FromKnownColor(System.Drawing.KnownColor.Window) - - lblDetailLink.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Blue) - - lblRetweet.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Green) - End Sub - - Private Sub AuthorizeButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthorizeButton.Click - Dim user As String = Me.Username.Text.Trim - Dim pwd As String = Me.Password.Text.Trim - If String.IsNullOrEmpty(user) OrElse String.IsNullOrEmpty(pwd) Then - MessageBox.Show(My.Resources.Save_ClickText1) - Exit Sub - End If - - '現在の設定内容で通信 - Dim ptype As HttpConnection.ProxyType - If RadioProxyNone.Checked Then - ptype = HttpConnection.ProxyType.None - ElseIf RadioProxyIE.Checked Then - ptype = HttpConnection.ProxyType.IE - Else - ptype = HttpConnection.ProxyType.Specified - End If - Dim padr As String = TextProxyAddress.Text.Trim() - Dim pport As Integer = Integer.Parse(TextProxyPort.Text.Trim()) - Dim pusr As String = TextProxyUser.Text.Trim() - Dim ppw As String = TextProxyPassword.Text.Trim() - - '通信基底クラス初期化 - HttpConnection.InitializeConnection(20, ptype, padr, pport, pusr, ppw) - HttpTwitter.TwitterUrl = TwitterAPIText.Text.Trim - HttpTwitter.TwitterSearchUrl = TwitterSearchAPIText.Text.Trim - If Me.AuthBasicRadio.Checked Then - tw.Initialize("", "") - Else - tw.Initialize("", "", "") - End If - Dim rslt As String = tw.Authenticate(user, pwd) - If String.IsNullOrEmpty(rslt) Then - MessageBox.Show(My.Resources.AuthorizeButton_Click1, "Authenticate", MessageBoxButtons.OK) - Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click3 - Me.AuthUserLabel.Text = tw.Username - Else - MessageBox.Show(My.Resources.AuthorizeButton_Click2 + Environment.NewLine + rslt, "Authenticate", MessageBoxButtons.OK) - Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 - Me.AuthUserLabel.Text = "" - End If - CalcApiUsing() - End Sub - - Private Sub AuthClearButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthClearButton.Click - tw.ClearAuthInfo() - Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 - Me.AuthUserLabel.Text = "" - CalcApiUsing() - End Sub - - Private Sub AuthOAuthRadio_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthOAuthRadio.CheckedChanged - If tw Is Nothing Then Exit Sub - If AuthBasicRadio.Checked Then - 'BASIC認証時のみ表示 - tw.Initialize("", "") - Me.AuthStateLabel.Enabled = False - Me.AuthUserLabel.Enabled = False - Me.AuthClearButton.Enabled = False - Else - tw.Initialize("", "", "") - Me.AuthStateLabel.Enabled = True - Me.AuthUserLabel.Enabled = True - Me.AuthClearButton.Enabled = True - End If - Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 - Me.AuthUserLabel.Text = "" - CalcApiUsing() - End Sub - - Private Sub DisplayApiMaxCount() - If TwitterApiInfo.MaxCount > -1 Then - LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, TwitterApiInfo.UsingCount, TwitterApiInfo.MaxCount) - Else - LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, TwitterApiInfo.UsingCount, "???") - End If - End Sub - - Private Sub CalcApiUsing() - Dim UsingApi As Integer = 0 - Dim tmp As Integer - Dim ListsTabNum As Integer = 0 - - Try - ' 初回起動時などにNothingの場合あり - ListsTabNum = TabInformations.GetInstance.GetTabsByType(TabUsageType.Lists).Count - Catch ex As Exception - Exit Sub - End Try - - ' Recent計算 0は手動更新 - If Integer.TryParse(TimelinePeriod.Text, tmp) Then - If tmp <> 0 Then - UsingApi += 3600 \ tmp - End If - End If - - ' Reply計算 0は手動更新 - If Integer.TryParse(ReplyPeriod.Text, tmp) Then - If tmp <> 0 Then - UsingApi += 3600 \ tmp - End If - End If - - ' DM計算 0は手動更新 送受信両方 - If Integer.TryParse(DMPeriod.Text, tmp) Then - If tmp <> 0 Then - UsingApi += (3600 \ tmp) * 2 - End If - End If - - ' Listsタブ計算 0は手動更新 - If Integer.TryParse(ListsPeriod.Text, tmp) Then - If tmp <> 0 Then - UsingApi += (3600 \ tmp) * ListsTabNum - End If - End If - - If tw IsNot Nothing Then - If TwitterApiInfo.MaxCount = -1 Then - If Twitter.AccountState = ACCOUNT_STATE.Valid Then - TwitterApiInfo.UsingCount = UsingApi - Dim proc As New Thread(New Threading.ThreadStart(Sub() - tw.GetInfoApi(Nothing) '取得エラー時はinfoCountは初期状態(値:-1) - If Me.IsHandleCreated Then Invoke(New MethodInvoker(AddressOf DisplayApiMaxCount)) - End Sub)) - proc.Start() - Else - LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, UsingApi, "???") - End If - Else - LabelApiUsing.Text = String.Format(My.Resources.SettingAPIUse1, UsingApi, TwitterApiInfo.MaxCount) - End If - End If - - - LabelPostAndGet.Visible = CheckPostAndGet.Checked - - End Sub - - Private Sub CheckPostAndGet_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckPostAndGet.CheckedChanged - CalcApiUsing() - End Sub - - Private Sub Setting_Shown(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Shown - Do - Thread.Sleep(10) - If Me.Disposing OrElse Me.IsDisposed Then Exit Sub - Loop Until Me.IsHandleCreated - CalcApiUsing() - End Sub - - Private Sub ButtonApiCalc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonApiCalc.Click - CalcApiUsing() - End Sub - - Private Sub New() - - ' この呼び出しはデザイナーで必要です。 - InitializeComponent() - - ' InitializeComponent() 呼び出しの後で初期化を追加します。 - - End Sub - - Public Shared ReadOnly Property Instance As Setting - Get - Return _instance - End Get - End Property - - Private Function BitlyValidation(ByVal id As String, ByVal apikey As String) As Boolean - If String.IsNullOrEmpty(id) OrElse String.IsNullOrEmpty(apikey) Then - Return False - End If - - Dim req As String = "http://api.bit.ly/v3/validate" - Dim content As String = "" - Dim param As New Dictionary(Of String, String) - - param.Add("login", "tweenapi") - param.Add("apiKey", "R_c5ee0e30bdfff88723c4457cc331886b") - param.Add("x_login", id) - param.Add("x_apiKey", apikey) - param.Add("format", "txt") - - If Not (New HttpVarious).PostData(req, param, content) Then - Return True ' 通信エラーの場合はとりあえずチェックを通ったことにする - ElseIf content.Trim() = "1" Then - Return True ' 検証成功 - ElseIf content.Trim() = "0" Then - Return False ' 検証失敗 APIキーとIDの組み合わせが違う - Else - Return True ' 規定外応答:通信エラーの可能性があるためとりあえずチェックを通ったことにする - End If - End Function - - Private Sub Cancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cancel.Click - _ValidationError = False - End Sub - - Public Property HotkeyEnabled As Boolean - Public Property HotkeyKey As Keys - Public Property HotkeyValue As Integer - Public Property HotkeyMod As Keys - - Private Sub HotkeyText_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles HotkeyText.KeyDown - 'KeyValueで判定する。 - '表示文字とのテーブルを用意すること - HotkeyText.Text = e.KeyCode.ToString - HotkeyCode.Text = e.KeyValue.ToString - HotkeyText.Tag = e.KeyCode - e.Handled = True - e.SuppressKeyPress = True - End Sub - - Private Sub HotkeyCheck_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles HotkeyCheck.CheckedChanged - HotkeyCtrl.Enabled = HotkeyCheck.Checked - HotkeyAlt.Enabled = HotkeyCheck.Checked - HotkeyShift.Enabled = HotkeyCheck.Checked - HotkeyWin.Enabled = HotkeyCheck.Checked - HotkeyText.Enabled = HotkeyCheck.Checked - HotkeyCode.Enabled = HotkeyCheck.Checked - End Sub - - Public Property BlinkNewMentions As Boolean - - Private Sub GetMoreTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles GetMoreTextCountApi.Validating - Dim cnt As Integer - Try - cnt = Integer.Parse(GetMoreTextCountApi.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End Try - - If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End If - End Sub - - Private Sub UseChangeGetCount_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles UseChangeGetCount.CheckedChanged - GetMoreTextCountApi.Enabled = UseChangeGetCount.Checked - FirstTextCountApi.Enabled = UseChangeGetCount.Checked - Label53.Enabled = UseChangeGetCount.Checked - Label66.Enabled = UseChangeGetCount.Checked - SearchTextCountApi.Enabled = UseChangeGetCount.Checked - FavoritesTextCountApi.Enabled = UseChangeGetCount.Checked - End Sub - - Private Sub FirstTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles FirstTextCountApi.Validating - Dim cnt As Integer - Try - cnt = Integer.Parse(FirstTextCountApi.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End Try - - If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End If - End Sub - - Private Sub CheckEnableBasicAuth_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckEnableBasicAuth.CheckedChanged - AuthBasicRadio.Enabled = CheckEnableBasicAuth.Checked - End Sub - - Private Sub SearchTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles SearchTextCountApi.Validating - Dim cnt As Integer - Try - cnt = Integer.Parse(SearchTextCountApi.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.TextsearchCountApi_Validating1) - e.Cancel = True - Exit Sub - End Try - - If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 100) Then - MessageBox.Show(My.Resources.TextSearchCountApi_Validating1) - e.Cancel = True - Exit Sub - End If - End Sub - - Private Sub FavoritesTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles FavoritesTextCountApi.Validating - Dim cnt As Integer - Try - cnt = Integer.Parse(FavoritesTextCountApi.Text) - Catch ex As Exception - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End Try - - If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then - MessageBox.Show(My.Resources.TextCountApi_Validating1) - e.Cancel = True - Exit Sub - End If - End Sub -End Class - Deleted: trunk/Tween/Setting.zh-CHS.resx =================================================================== --- trunk/Tween/Setting.zh-CHS.resx 2010-12-20 11:32:19 UTC (rev 1230) +++ trunk/Tween/Setting.zh-CHS.resx 2010-12-20 13:02:09 UTC (rev 1231) @@ -1,919 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - 41, 12 - - - 用?名 - - - 29, 12 - - - 密? - - - 确定 - - - 取消 - - - 101, 12 - - - 消息更新?隔(秒) - - - 私信更新?隔(秒) - - - 101, 12 - - - 启???取的消息 - - - 72, 16 - - - 置?已? - - - 173, 12 - - - 列表中的?像??大小(默?16) - - - 101, 12 - - - 消息文末自?附加 - - - 48, 16 - - - 播放 - - - 41, 12 - - - 提示音 - - - 307, 13 - - - ???置的提示音,只要启用“播放”??就能被播放。 - - - 启用 - - - 113, 12 - - - 用?色区分?向?注 - - - 字体和?色?置 - - - 文本色 - - - 53, 12 - - - ?推消息 - - - 恢?默?? - - - 文本色 - - - 65, 12 - - - 消息??接 - - - 75, 22 - - - 字体&&?色 - - - 65, 12 - - - ?入框字体 - - - 125, 12 - - - ?入框激活?的背景色 - - - 75, 22 - - - 字体&&?色 - - - 53, 12 - - - 未?字体 - - - ?中消息所@的消息 - - - 77, 12 - - - 消息?背景色 - - - 普通消息 - - - 先中消息所@人的其它消息 - - - @??中人的消息 - - - 101, 12 - - - ?中人的其它消息 - - - @?自己的消息 - - - 自己的消息 - - - 75, 22 - - - 字体&&?色 - - - 65, 12 - - - 消息?文本 - - - 文本色 - - - 77, 12 - - - ?向?注消息 - - - 文本色 - - - 53, 12 - - - 收藏消息 - - - 75, 22 - - - 字体&&?色 - - - 53, 12 - - - 列表字体 - - - - - - 用?ID - - - 昵称 - - - 137, 12 - - - 新消息气球提示的用?名 - - - 132, 16 - - - 推荐使用[TWNv○○] - - - 125, 12 - - - 列表中的日期??格式 - - - 48, 16 - - - ?示 - - - 101, 12 - - - 消息?的?像?? - - - 108, 16 - - - 使用Ctrl+Enter - - - 143, 12 - - - ?送快捷?(默?是Enter) - - - 未?管理 - - - 启用 - - - 149, 12 - - - 有更新的消息?清除旧未? - - - 启用 - - - 101, 12 - - - 点?窗口上的×? - - - 退出程序 - - - 77, 12 - - - 窗口最小化? - - - ?小?托??? - - - 65, 12 - - - ??器路径 - - - 84, 16 - - - ?示用?名 - - - 101, 12 - - - ???和浮?提示 - - - 41, 12 - - - ??? - - - (无) - - - 版本号 - - - 最后一条消息 - - - @的未?数 - - - 未?数 - - - 未?数(@的未?数) - - - ?未?数/?消息数 - - - 消息数/好友数/?注数 - - - 101, 12 - - - 重启之后才生效。 - - - ?? - - - 77, 12 - - - ?助?入#Tag - - - 48, 16 - - - 启用 - - - ?助?入@ID - - - 48, 16 - - - 启用 - - - 119, 12 - - - URL自??短?先使用 - - - 138, 16 - - - 不包含Protect者消息 - - - 101, 12 - - - ?制?推的文本? - - - 72, 16 - - - 自??短 - - - 95, 12 - - - ?短?入框的URL - - - 323, 12 - - - 会重新?取原消息来??Fav?果。会?加流量,推荐??。 - - - 125, 12 - - - 是否?格??收藏?果 - - - 48, 16 - - - ?? - - - 48, 16 - - - 展? - - - 95, 12 - - - ?理?短网址URL - - - ?? - - - 行? - - - 77, 12 - - - ?示?片?? - - - 48, 16 - - - 启用 - - - 65, 12 - - - 重启后生效 - - - 48, 16 - - - 启用 - - - 65, 12 - - - ?在最前面 - - - 77, 12 - - - ?列排序方式 - - - 48, 16 - - - 固定 - - - 消息?列表格? - - - 48, 16 - - - ?示 - - - 173, 12 - - - 消息?文本字体等?化(支持AA) - - - 132, 16 - - - 启用(可能会有??) - - - 113, 12 - - - 自己的消息自?已? - - - 48, 16 - - - 启用 - - - 无通知 - - - 只有?色?化 - - - ?色?化&?? - - - 137, 12 - - - 有未?回??的通知?? - - - 113, 12 - - - 有新回??画面?? - - - 113, 12 - - - ??上?示未??? - - - 48, 16 - - - ?? - - - 48, 16 - - - 启用 - - - 77, 12 - - - 气球提示只在 - - - 72, 16 - - - 最小化? - - - 161, 12 - - - 未?文本?式(字体和?色上) - - - 48, 16 - - - 启用 - - - ?示 - - - 字体与?色 - - - 附加 - - - 重新?算 - - - 251, 12 - - - 成功刷新消息、?送消息?都会消耗API配?。 - - - 101, 12 - - - 列表更新?隔(秒) - - - 登?方法 - - - 清除 - - - 已登? - - - 登?状? - - - 登? - - - 101, 12 - - - 搜索更新?隔(秒) - - - 101, 12 - - - 回?更新?隔(秒) - - - ?推?更新 - - - 143, 12 - - - 默??取推数/回??取数 - - - 161, 12 - - - 启???取?向?注用?列表 - - - 48, 16 - - - ?取 - - - 89, 12 - - - 启??版本更新 - - - 48, 16 - - - ?? - - - 72, 16 - - - 自??整 - - - 89, 12 - - - 启???取收藏 - - - 48, 16 - - - ?取 - - - 生效 - - - 143, 21 - - - 215, 12 - - - Search API URL (search.twitter.com) - - - 143, 21 - - - 102, 16 - - - 使用HTTPS通信 - - - 317, 12 - - - ※刷新?繁出?超?的???整?更大的?。默?是20秒。 - - - 77, 12 - - - 超???(秒) - - - 代理?置 - - - 281, 12 - - - ※代理不需要登????,?将用?名密??留空。 - - - 47, 12 - - - 密?(&W) - - - 59, 12 - - - 用?名(&U) - - - 47, 12 - - - 端口(&P) - - - 47, 12 - - - 地址(&X) - - - 59, 16 - - - 自定? - - - 179, 16 - - - 使用InternetExplorer的?置 - - - 59, 16 - - - 不使用 - - - 216, 16 - - - 使用nico.ms?短Niconico?画的URL - - - 59, 12 - - - ?出到URL - - - 53, 12 - - - ?活咒? - - - 90, 16 - - - ??Outputz - - - ?置 - - - BASIC認証への変更を許可する - - - 前データの更新/初回の更新 - - - 次の項目の更新時の取得数を個別に設定する - - - Favorites/PublicSearchの取得数 - - - Shift+Enterにする - - \ No newline at end of file Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-20 11:32:19 UTC (rev 1230) +++ trunk/Tween/Tween.vb 2010-12-20 13:02:09 UTC (rev 1231) @@ -87,7 +87,7 @@ Private tw As New Twitter 'サブ画面インスタンス - Private SettingDialog As Setting = Setting.Instance '設定画面インスタンス + Private SettingDialog As AppendSettingDialog = AppendSettingDialog.Instance '設定画面インスタンス Private TabDialog As New TabsDialog 'タブ選択ダイアログインスタンス Private SearchDialog As New SearchWord '検索画面インスタンス Private fDialog As New FilterDialog 'フィルター編集画面 Modified: trunk/Tween/Tween.vbproj =================================================================== --- trunk/Tween/Tween.vbproj 2010-12-20 11:32:19 UTC (rev 1230) +++ trunk/Tween/Tween.vbproj 2010-12-20 13:02:09 UTC (rev 1231) @@ -48,6 +48,7 @@ 42353,42354,42355 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036 true + AnyCPU pdbonly @@ -114,6 +115,12 @@ + + AppendSettingDialog.vb + + + Form + AtIdSupplement.vb @@ -221,12 +228,6 @@ Form - - Setting.vb - - - Form - @@ -279,6 +280,16 @@ + + AppendSettingDialog.vb + + + AppendSettingDialog.vb + Designer + + + AppendSettingDialog.vb + Designer AtIdSupplement.vb @@ -400,14 +411,6 @@ SearchWord.vb Designer - - Setting.vb - Designer - - - Designer - Setting.vb - FilterDialog.vb Designer @@ -416,10 +419,6 @@ FilterDialog.vb Designer - - Setting.vb - Designer - Designer ShowUserInfo.vb Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-20 11:32:19 UTC (rev 1230) +++ trunk/Tween/Twitter.vb 2010-12-20 13:02:09 UTC (rev 1231) @@ -1365,13 +1365,13 @@ Dim res As HttpStatusCode Dim content As String = "" - Dim count As Integer = Setting.Instance.CountApi - If gType = WORKERTYPE.Reply Then count = Setting.Instance.CountApiReply - If Setting.Instance.UseAdditionalCount Then - If more AndAlso Setting.Instance.MoreCountApi <> 0 Then - count = Setting.Instance.MoreCountApi - ElseIf startup AndAlso Setting.Instance.FirstCountApi <> 0 AndAlso gType = WORKERTYPE.Timeline Then - count = Setting.Instance.FirstCountApi + Dim count As Integer = AppendSettingDialog.Instance.CountApi + If gType = WORKERTYPE.Reply Then count = AppendSettingDialog.Instance.CountApiReply() + If AppendSettingDialog.Instance.UseAdditionalCount Then + If more AndAlso AppendSettingDialog.Instance.MoreCountApi <> 0 Then + count = AppendSettingDialog.Instance.MoreCountApi + ElseIf startup AndAlso AppendSettingDialog.Instance.FirstCountApi <> 0 AndAlso gType = WORKERTYPE.Timeline Then + count = AppendSettingDialog.Instance.FirstCountApi End If End If Try @@ -1591,12 +1591,12 @@ Dim res As HttpStatusCode Dim content As String = "" Dim page As Integer = 0 - Dim count As Integer = Setting.Instance.CountApi - If Setting.Instance.UseAdditionalCount Then - If more AndAlso Setting.Instance.MoreCountApi <> 0 Then - count = Setting.Instance.MoreCountApi - ElseIf startup AndAlso Setting.Instance.FirstCountApi <> 0 Then - count = Setting.Instance.FirstCountApi + Dim count As Integer = AppendSettingDialog.Instance.CountApi + If AppendSettingDialog.Instance.UseAdditionalCount Then + If more AndAlso AppendSettingDialog.Instance.MoreCountApi <> 0 Then + count = AppendSettingDialog.Instance.MoreCountApi + ElseIf startup AndAlso AppendSettingDialog.Instance.FirstCountApi <> 0 Then + count = AppendSettingDialog.Instance.FirstCountApi End If End If Try @@ -1822,9 +1822,9 @@ Dim page As Integer = 0 Dim sinceId As Long = 0 Dim count As Integer = 100 - If Setting.Instance.UseAdditionalCount AndAlso - Setting.Instance.SearchCountApi <> 0 Then - count = Setting.Instance.SearchCountApi + If AppendSettingDialog.Instance.UseAdditionalCount AndAlso + AppendSettingDialog.Instance.SearchCountApi <> 0 Then + count = AppendSettingDialog.Instance.SearchCountApi End If If more Then page = tab.GetSearchPage(count) @@ -2077,10 +2077,10 @@ Dim res As HttpStatusCode Dim content As String = "" - Dim count As Integer = Setting.Instance.CountApi - If Setting.Instance.UseAdditionalCount AndAlso - Setting.Instance.FavoritesCountApi <> 0 Then - count = Setting.Instance.FavoritesCountApi + Dim count As Integer = AppendSettingDialog.Instance.CountApi + If AppendSettingDialog.Instance.UseAdditionalCount AndAlso + AppendSettingDialog.Instance.FavoritesCountApi <> 0 Then + count = AppendSettingDialog.Instance.FavoritesCountApi End If Try res = twCon.Favorites(count, content) From svnnotify @ sourceforge.jp Mon Dec 20 22:12:15 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 20 Dec 2010 22:12:15 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMzJdICDntbHlkIjjgZfjgZ/jgZ/jgoHliYo=?= =?utf-8?b?6Zmk?= Message-ID: <1292850735.672110.10933.nullmailer@users.sourceforge.jp> Revision: 1232 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1232 Author: syo68k Date: 2010-12-20 22:12:15 +0900 (Mon, 20 Dec 2010) Log Message: ----------- 統合したため削除 Removed Paths: ------------- branches/SettingDialog/ -------------- next part -------------- From svnnotify @ sourceforge.jp Tue Dec 21 01:20:33 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 21 Dec 2010 01:20:33 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMzNdICDoqbPntLDooajnpLrjga7nmbroqIA=?= =?utf-8?b?57+76Kiz5qmf6IO96L+95YqgIEtub3duQnVnIDog44O75pel5pys6Kqe44Gu?= =?utf-8?b?44OE44Kk44O844OI44Gr5a++44GX44Gm5a6f6KGM44GZ44KL44Go6KGo56S6?= =?utf-8?b?44GM44GK44GL44GX44GP44Gq44KLIOODu+e/u+ios+WFiOOBruiogOiqng==?= =?utf-8?b?44GM5pel5pys6Kqe5Zu65a6a44Gr44Gq44Gj44Gm44GE44KL?= Message-ID: <1292862033.887078.17777.nullmailer@users.sourceforge.jp> Revision: 1233 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1233 Author: syo68k Date: 2010-12-21 01:20:33 +0900 (Tue, 21 Dec 2010) Log Message: ----------- 詳細表示の発言翻訳機能追加 KnownBug:・日本語のツイートに対して実行すると表示がおかしくなる ・翻訳先の言語が日本語固定になっている Modified Paths: -------------- trunk/Tween/MyCommon.vb trunk/Tween/Tween.Designer.vb trunk/Tween/Tween.resx trunk/Tween/Tween.vb trunk/Tween/Tween.vbproj trunk/Tween/Twitter.vb Added Paths: ----------- trunk/Tween/Google.vb -------------- next part -------------- Added: trunk/Tween/Google.vb =================================================================== --- trunk/Tween/Google.vb (rev 0) +++ trunk/Tween/Google.vb 2010-12-20 16:20:33 UTC (rev 1233) @@ -0,0 +1,82 @@ +?Imports System.Web +Imports System.Text.RegularExpressions +Imports System.Runtime.Serialization.Json +Imports System.Net +Imports System.Runtime.Serialization + +' http://code.google.com/intl/ja/apis/ajaxlanguage/documentation/#fonje +' デベロッパー ガイド - Google AJAX Language API - Google Code + +Public Class Google + + Private Const TranslateEndPoint As String = "http://ajax.googleapis.com/ajax/services/language/translate" + Private Const LanguageDetectEndPoint As String = "https://ajax.googleapis.com/ajax/services/language/detect" + + _ + Public Class TranslateResponseData + Public TranslatedText As String + End Class + + + _ + Private Class TranslateResponse + Public ResponseData As TranslateResponseData + Public ResponseDetails As String + Public ResponseStatus As HttpStatusCode + End Class + + + _ + Public Class LanguageDetectResponseData + Public Language As String + Public IsReliable As Boolean + Public Confidence As Double + End Class + + _ + Private Class LanguageDetectResponse + Public ResponseData As LanguageDetectResponseData + Public ResponseDetails As String + Public ResponseStatus As HttpStatusCode + End Class + + Public Function Translate(ByVal isHtml As Boolean, ByVal source As String, ByRef destination As String) As Boolean + Dim http As New HttpVarious() + Dim apiurl As String = TranslateEndPoint + Dim headers As New Dictionary(Of String, String) + headers.Add("v", "1.0") + headers.Add("hl", "ja") ' TODO:現在のcultureを反映させる + headers.Add("langpair", "|ja") ' TODO:現在のcultureを反映させる + headers.Add("format", "html") + + headers.Add("q", HttpUtility.UrlPathEncode(source)) + + Dim content As String = "" + If http.GetData(apiurl, headers, content) Then + Dim serializer As New DataContractJsonSerializer(GetType(TranslateResponse)) + Dim res As TranslateResponse = CreateDataFromJson(Of TranslateResponse)(content) + Dim _body As String = res.ResponseData.TranslatedText + Dim buf As String = HttpUtility.UrlDecode(_body) + + destination = String.Copy(buf) + Return True + End If + Return False + End Function + + Public Function LanguageDetect(ByVal source As String) As String + Dim http As New HttpVarious() + Dim apiurl As String = LanguageDetectEndPoint + Dim headers As New Dictionary(Of String, String) + headers.Add("v", "1.0") + headers.Add("q", HttpUtility.UrlPathEncode(source)) + Dim content As String = "" + If http.GetData(apiurl, headers, content) Then + Dim serializer As New DataContractJsonSerializer(GetType(LanguageDetectResponse)) + Dim res As LanguageDetectResponse = CreateDataFromJson(Of LanguageDetectResponse)(content) + Return res.ResponseData.Language + End If + Return "" + End Function + +End Class Modified: trunk/Tween/MyCommon.vb =================================================================== --- trunk/Tween/MyCommon.vb 2010-12-20 13:12:15 UTC (rev 1232) +++ trunk/Tween/MyCommon.vb 2010-12-20 16:20:33 UTC (rev 1233) @@ -27,6 +27,7 @@ Imports System.Reflection Imports System.Web Imports System.IO +Imports System.Runtime.Serialization.Json Public Module MyCommon Private ReadOnly LockObj As New Object @@ -590,4 +591,15 @@ TraceOut("Parse Error(DateTimeFormat) : " + input) Return New Date End Function + + Public Function CreateDataFromJson(Of T)(ByVal content As String) As T + Dim data As T + Using stream As New MemoryStream() + Dim buf As Byte() = Encoding.Unicode.GetBytes(content) + stream.Write(Encoding.Unicode.GetBytes(content), offset:=0, count:=buf.Length) + stream.Seek(offset:=0, loc:=SeekOrigin.Begin) + data = DirectCast((New DataContractJsonSerializer(GetType(T))).ReadObject(stream), T) + End Using + Return data + End Function End Module \ No newline at end of file Modified: trunk/Tween/Tween.Designer.vb =================================================================== --- trunk/Tween/Tween.Designer.vb 2010-12-20 13:12:15 UTC (rev 1232) +++ trunk/Tween/Tween.Designer.vb 2010-12-20 16:20:33 UTC (rev 1233) @@ -113,6 +113,7 @@ Me.ListManageUserContextToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ToolStripSeparator33 = New System.Windows.Forms.ToolStripSeparator() Me.UseHashtagMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.TranslationToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.DateTimeLabel = New System.Windows.Forms.Label() Me.SourceLinkLabel = New System.Windows.Forms.LinkLabel() Me.StatusText = New System.Windows.Forms.TextBox() @@ -771,7 +772,7 @@ ' 'ContextMenuPostBrowser ' - Me.ContextMenuPostBrowser.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.SelectionSearchContextMenuItem, Me.ToolStripSeparator13, Me.SelectionCopyContextMenuItem, Me.UrlCopyContextMenuItem, Me.SelectionAllContextMenuItem, Me.ToolStripSeparator5, Me.FollowContextMenuItem, Me.RemoveContextMenuItem, Me.FriendshipContextMenuItem, Me.FriendshipAllMenuItem, Me.ToolStripSeparator36, Me.ShowUserStatusContextMenuItem, Me.SearchPostsDetailToolStripMenuItem, Me.SearchAtPostsDetailToolStripMenuItem, Me.ToolStripSeparator32, Me.IdFilterAddMenuItem, Me.ListManageUserContextToolStripMenuItem, Me.ToolStripSeparator33, Me.UseHashtagMenuItem}) + Me.ContextMenuPostBrowser.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.SelectionSearchContextMenuItem, Me.ToolStripSeparator13, Me.SelectionCopyContextMenuItem, Me.UrlCopyContextMenuItem, Me.SelectionAllContextMenuItem, Me.ToolStripSeparator5, Me.FollowContextMenuItem, Me.RemoveContextMenuItem, Me.FriendshipContextMenuItem, Me.FriendshipAllMenuItem, Me.ToolStripSeparator36, Me.ShowUserStatusContextMenuItem, Me.SearchPostsDetailToolStripMenuItem, Me.SearchAtPostsDetailToolStripMenuItem, Me.ToolStripSeparator32, Me.IdFilterAddMenuItem, Me.ListManageUserContextToolStripMenuItem, Me.ToolStripSeparator33, Me.UseHashtagMenuItem, Me.TranslationToolStripMenuItem}) Me.ContextMenuPostBrowser.Name = "ContextMenuStrip4" resources.ApplyResources(Me.ContextMenuPostBrowser, "ContextMenuPostBrowser") ' @@ -896,6 +897,11 @@ Me.UseHashtagMenuItem.Name = "UseHashtagMenuItem" resources.ApplyResources(Me.UseHashtagMenuItem, "UseHashtagMenuItem") ' + 'TranslationToolStripMenuItem + ' + Me.TranslationToolStripMenuItem.Name = "TranslationToolStripMenuItem" + resources.ApplyResources(Me.TranslationToolStripMenuItem, "TranslationToolStripMenuItem") + ' 'DateTimeLabel ' resources.ApplyResources(Me.DateTimeLabel, "DateTimeLabel") @@ -2137,5 +2143,6 @@ Friend WithEvents OpenOwnFavedMenuItem As System.Windows.Forms.ToolStripMenuItem Friend WithEvents ToolStripSeparator42 As System.Windows.Forms.ToolStripSeparator Friend WithEvents EventViewerMenuItem As System.Windows.Forms.ToolStripMenuItem + Friend WithEvents TranslationToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem End Class Modified: trunk/Tween/Tween.resx =================================================================== --- trunk/Tween/Tween.resx 2010-12-20 13:12:15 UTC (rev 1232) +++ trunk/Tween/Tween.resx 2010-12-20 16:20:33 UTC (rev 1233) @@ -382,7 +382,7 @@ 0, 0, 0, 0 - 570, 248 + 570, 252 0 @@ -406,7 +406,7 @@ 0, 0 - 570, 248 + 570, 252 0 @@ -436,7 +436,7 @@ 0, 0 - 570, 220 + 570, 224 Zoom @@ -640,7 +640,7 @@ Bottom - 0, 220 + 0, 224 3, 3, 3, 3 @@ -670,7 +670,7 @@ 0, 0 - 570, 248 + 570, 252 1 @@ -697,7 +697,7 @@ 0, 0 - 570, 248 + 570, 252 2 @@ -922,16 +922,16 @@ 現在のタブ(&L) - 232, 22 + 262, 22 選択文字列で検索(&S) - 229, 6 + 259, 6 - 232, 22 + 262, 22 選択文字列をコピー(&C) @@ -940,91 +940,97 @@ False - 232, 22 + 262, 22 URLをコピー(&U) - 232, 22 + 262, 22 すべて選択(&A) - 229, 6 + 259, 6 - 232, 22 + 262, 22 フォローする(&F) - 232, 22 + 262, 22 フォロー解除(&N) - 232, 22 + 262, 22 相互フォロー状態表示(&R) - 232, 22 + 262, 22 全ユーザーのフォロー状態(&A) - 229, 6 + 259, 6 - 232, 22 + 262, 22 プロフィール表示(&P) - 232, 22 + 262, 22 このユーザーの発言を検索(&F) - 232, 22 + 262, 22 このユーザーへの@発言を検索(&S) - 229, 6 + 259, 6 - 232, 22 + 262, 22 ID振分ルール作成(&I) - 232, 22 + 262, 22 リスト管理(&L) - 229, 6 + 259, 6 - 232, 22 + 262, 22 ハッシュタグを固定(&H) + + 262, 22 + + + この発言を翻訳 + - 233, 364 + 263, 386 ContextMenuPostBrowser @@ -1039,7 +1045,7 @@ 59, 20 - 508, 40 + 508, 36 6 @@ -1144,7 +1150,7 @@ 2 - 570, 63 + 570, 59 1 @@ -1282,10 +1288,10 @@ 19 - 570, 90 + 570, 86 - 63 + 59 2 @@ -1327,7 +1333,7 @@ 0, 0 - 194, 92 + 194, 88 Zoom @@ -1357,7 +1363,7 @@ 194, 0 - 17, 92 + 17, 88 0 @@ -1387,7 +1393,7 @@ 1 - 570, 90 + 570, 86 355 @@ -1426,7 +1432,7 @@ 574, 348 - 252 + 256 2 @@ -2994,6 +3000,12 @@ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TranslationToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + MenuItemFile Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-20 13:12:15 UTC (rev 1232) +++ trunk/Tween/Tween.vb 2010-12-20 16:20:33 UTC (rev 1233) @@ -10012,4 +10012,13 @@ OpenUriAsync("http://twitter.com/" + tw.Username) End Sub + Private Sub TranslationToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TranslationToolStripMenuItem.Click + Dim g As New Google + Dim buf As String = "" + If _curPost Is Nothing Then Exit Sub + Dim lng As String = g.LanguageDetect(_curPost.Data) + If lng <> "ja" AndAlso g.Translate(True, PostBrowser.DocumentText, buf) Then + PostBrowser.DocumentText = buf + End If + End Sub End Class Modified: trunk/Tween/Tween.vbproj =================================================================== --- trunk/Tween/Tween.vbproj 2010-12-20 13:12:15 UTC (rev 1232) +++ trunk/Tween/Tween.vbproj 2010-12-20 16:20:33 UTC (rev 1233) @@ -162,6 +162,7 @@ Form + HashtagManage.vb Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-20 13:12:15 UTC (rev 1232) +++ trunk/Tween/Twitter.vb 2010-12-20 16:20:33 UTC (rev 1233) @@ -2954,17 +2954,6 @@ RaiseEvent UserStreamEventReceived(evt) End Sub - Private Function CreateDataFromJson(Of T)(ByVal content As String) As T - Dim data As T - Using stream As New MemoryStream() - Dim buf As Byte() = Encoding.Unicode.GetBytes(content) - stream.Write(Encoding.Unicode.GetBytes(content), offset:=0, count:=buf.Length) - stream.Seek(offset:=0, loc:=SeekOrigin.Begin) - data = DirectCast((New DataContractJsonSerializer(GetType(T))).ReadObject(stream), T) - End Using - Return data - End Function - Private Sub userStream_Started() Handles userStream.Started RaiseEvent UserStreamStarted() End Sub From svnnotify @ sourceforge.jp Tue Dec 21 02:20:21 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 21 Dec 2010 02:20:21 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMzRdICDkvZnoqIjjgarjgqjjg6njg7zjg4g=?= =?utf-8?b?44Op44OD44OX5YmK6Zmk77yI44OH44OQ44OD44Kw55So77yJ?= Message-ID: <1292865621.401702.24377.nullmailer@users.sourceforge.jp> Revision: 1234 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1234 Author: kiri_feather Date: 2010-12-21 02:20:21 +0900 (Tue, 21 Dec 2010) Log Message: ----------- 余計なエラートラップ削除(デバッグ用) Modified Paths: -------------- trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-20 16:20:33 UTC (rev 1233) +++ trunk/Tween/Twitter.vb 2010-12-20 17:20:21 UTC (rev 1234) @@ -2879,8 +2879,6 @@ End If Catch ex As NullReferenceException TraceOut("NullRef StatusArrived: " + line) - Catch ex As Exception - TraceOut(ex.Message + ": " + line) End Try RaiseEvent NewPostFromStream() From svnnotify @ sourceforge.jp Tue Dec 21 19:15:19 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 21 Dec 2010 19:15:19 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMzVdICDmnKroqq3lhbHpgJrljJbjgafjgIE=?= =?utf-8?b?5pyq6Kqt44Kr44Km44Oz44OI44GM5q2j44GX44GP44Gq44GE5aC05ZCI44GM?= =?utf-8?b?44GC44Gj44Gf44Gu44Gn5L+u5q2j?= Message-ID: <1292926519.931784.12667.nullmailer@users.sourceforge.jp> Revision: 1235 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1235 Author: kiri_feather Date: 2010-12-21 19:15:19 +0900 (Tue, 21 Dec 2010) Log Message: ----------- 未読共通化で、未読カウントが正しくない場合があったので修正 新設定画面のパネル背景色を標準のControlに変更 Modified Paths: -------------- trunk/Tween/AppendSettingDialog.Designer.vb trunk/Tween/StatusDictionary.vb -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.Designer.vb =================================================================== --- trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-20 17:20:21 UTC (rev 1234) +++ trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-21 10:15:19 UTC (rev 1235) @@ -25,6 +25,48 @@ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AppendSettingDialog)) Me.SplitContainer1 = New System.Windows.Forms.SplitContainer() Me.TreeView1 = New System.Windows.Forms.TreeView() + Me.TweetActPanel = New System.Windows.Forms.Panel() + Me.TextBitlyPw = New System.Windows.Forms.TextBox() + Me.ComboBoxPostKeySelect = New System.Windows.Forms.ComboBox() + Me.Label27 = New System.Windows.Forms.Label() + Me.CheckRetweetNoConfirm = New System.Windows.Forms.CheckBox() + Me.TextBitlyId = New System.Windows.Forms.TextBox() + Me.Label12 = New System.Windows.Forms.Label() + Me.Label77 = New System.Windows.Forms.Label() + Me.CheckUseRecommendStatus = New System.Windows.Forms.CheckBox() + Me.Label76 = New System.Windows.Forms.Label() + Me.StatusText = New System.Windows.Forms.TextBox() + Me.ComboBoxAutoShortUrlFirst = New System.Windows.Forms.ComboBox() + Me.Label71 = New System.Windows.Forms.Label() + Me.CheckTinyURL = New System.Windows.Forms.CheckBox() + Me.CheckAutoConvertUrl = New System.Windows.Forms.CheckBox() + Me.FontPanel = New System.Windows.Forms.Panel() + Me.GroupBox1 = New System.Windows.Forms.GroupBox() + Me.btnRetweet = New System.Windows.Forms.Button() + Me.lblRetweet = New System.Windows.Forms.Label() + Me.Label80 = New System.Windows.Forms.Label() + Me.ButtonBackToDefaultFontColor = New System.Windows.Forms.Button() + Me.btnDetailLink = New System.Windows.Forms.Button() + Me.lblDetailLink = New System.Windows.Forms.Label() + Me.Label18 = New System.Windows.Forms.Label() + Me.btnUnread = New System.Windows.Forms.Button() + Me.lblUnread = New System.Windows.Forms.Label() + Me.Label20 = New System.Windows.Forms.Label() + Me.btnDetailBack = New System.Windows.Forms.Button() + Me.lblDetailBackcolor = New System.Windows.Forms.Label() + Me.Label37 = New System.Windows.Forms.Label() + Me.btnDetail = New System.Windows.Forms.Button() + Me.lblDetail = New System.Windows.Forms.Label() + Me.Label26 = New System.Windows.Forms.Label() + Me.btnOWL = New System.Windows.Forms.Button() + Me.lblOWL = New System.Windows.Forms.Label() + Me.Label24 = New System.Windows.Forms.Label() + Me.btnFav = New System.Windows.Forms.Button() + Me.lblFav = New System.Windows.Forms.Label() + Me.Label22 = New System.Windows.Forms.Label() + Me.btnListFont = New System.Windows.Forms.Button() + Me.lblListFont = New System.Windows.Forms.Label() + Me.Label61 = New System.Windows.Forms.Label() Me.GetPeriodPanel = New System.Windows.Forms.Panel() Me.TimelinePeriod = New System.Windows.Forms.TextBox() Me.Label3 = New System.Windows.Forms.Label() @@ -190,48 +232,6 @@ Me.cmbNameBalloon = New System.Windows.Forms.ComboBox() Me.CheckDispUsername = New System.Windows.Forms.CheckBox() Me.CheckBox3 = New System.Windows.Forms.CheckBox() - Me.TweetActPanel = New System.Windows.Forms.Panel() - Me.TextBitlyPw = New System.Windows.Forms.TextBox() - Me.ComboBoxPostKeySelect = New System.Windows.Forms.ComboBox() - Me.Label27 = New System.Windows.Forms.Label() - Me.CheckRetweetNoConfirm = New System.Windows.Forms.CheckBox() - Me.TextBitlyId = New System.Windows.Forms.TextBox() - Me.Label12 = New System.Windows.Forms.Label() - Me.Label77 = New System.Windows.Forms.Label() - Me.CheckUseRecommendStatus = New System.Windows.Forms.CheckBox() - Me.Label76 = New System.Windows.Forms.Label() - Me.StatusText = New System.Windows.Forms.TextBox() - Me.ComboBoxAutoShortUrlFirst = New System.Windows.Forms.ComboBox() - Me.Label71 = New System.Windows.Forms.Label() - Me.CheckTinyURL = New System.Windows.Forms.CheckBox() - Me.CheckAutoConvertUrl = New System.Windows.Forms.CheckBox() - Me.FontPanel = New System.Windows.Forms.Panel() - Me.GroupBox1 = New System.Windows.Forms.GroupBox() - Me.btnRetweet = New System.Windows.Forms.Button() - Me.lblRetweet = New System.Windows.Forms.Label() - Me.Label80 = New System.Windows.Forms.Label() - Me.ButtonBackToDefaultFontColor = New System.Windows.Forms.Button() - Me.btnDetailLink = New System.Windows.Forms.Button() - Me.lblDetailLink = New System.Windows.Forms.Label() - Me.Label18 = New System.Windows.Forms.Label() - Me.btnUnread = New System.Windows.Forms.Button() - Me.lblUnread = New System.Windows.Forms.Label() - Me.Label20 = New System.Windows.Forms.Label() - Me.btnDetailBack = New System.Windows.Forms.Button() - Me.lblDetailBackcolor = New System.Windows.Forms.Label() - Me.Label37 = New System.Windows.Forms.Label() - Me.btnDetail = New System.Windows.Forms.Button() - Me.lblDetail = New System.Windows.Forms.Label() - Me.Label26 = New System.Windows.Forms.Label() - Me.btnOWL = New System.Windows.Forms.Button() - Me.lblOWL = New System.Windows.Forms.Label() - Me.Label24 = New System.Windows.Forms.Label() - Me.btnFav = New System.Windows.Forms.Button() - Me.lblFav = New System.Windows.Forms.Label() - Me.Label22 = New System.Windows.Forms.Label() - Me.btnListFont = New System.Windows.Forms.Button() - Me.lblListFont = New System.Windows.Forms.Label() - Me.Label61 = New System.Windows.Forms.Label() Me.FontDialog1 = New System.Windows.Forms.FontDialog() Me.ColorDialog1 = New System.Windows.Forms.ColorDialog() Me.Cancel = New System.Windows.Forms.Button() @@ -240,6 +240,9 @@ Me.SplitContainer1.Panel1.SuspendLayout() Me.SplitContainer1.Panel2.SuspendLayout() Me.SplitContainer1.SuspendLayout() + Me.TweetActPanel.SuspendLayout() + Me.FontPanel.SuspendLayout() + Me.GroupBox1.SuspendLayout() Me.GetPeriodPanel.SuspendLayout() Me.GetCountPanel.SuspendLayout() Me.FontPanel2.SuspendLayout() @@ -253,9 +256,6 @@ Me.ActionPanel.SuspendLayout() Me.GroupBox3.SuspendLayout() Me.PreviewPanel.SuspendLayout() - Me.TweetActPanel.SuspendLayout() - Me.FontPanel.SuspendLayout() - Me.GroupBox1.SuspendLayout() Me.SuspendLayout() ' 'SplitContainer1 @@ -269,7 +269,7 @@ ' 'SplitContainer1.Panel2 ' - Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Window + Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Control Me.SplitContainer1.Panel2.Controls.Add(Me.TweetActPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) @@ -291,9 +291,286 @@ Me.TreeView1.Name = "TreeView1" Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {CType(resources.GetObject("TreeView1.Nodes"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes1"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes2"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes3"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes4"), System.Windows.Forms.TreeNode)}) ' + 'TweetActPanel + ' + Me.TweetActPanel.Controls.Add(Me.TextBitlyPw) + Me.TweetActPanel.Controls.Add(Me.ComboBoxPostKeySelect) + Me.TweetActPanel.Controls.Add(Me.Label27) + Me.TweetActPanel.Controls.Add(Me.CheckRetweetNoConfirm) + Me.TweetActPanel.Controls.Add(Me.TextBitlyId) + Me.TweetActPanel.Controls.Add(Me.Label12) + Me.TweetActPanel.Controls.Add(Me.Label77) + Me.TweetActPanel.Controls.Add(Me.CheckUseRecommendStatus) + Me.TweetActPanel.Controls.Add(Me.Label76) + Me.TweetActPanel.Controls.Add(Me.StatusText) + Me.TweetActPanel.Controls.Add(Me.ComboBoxAutoShortUrlFirst) + Me.TweetActPanel.Controls.Add(Me.Label71) + Me.TweetActPanel.Controls.Add(Me.CheckTinyURL) + Me.TweetActPanel.Controls.Add(Me.CheckAutoConvertUrl) + resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") + Me.TweetActPanel.Name = "TweetActPanel" + ' + 'TextBitlyPw + ' + resources.ApplyResources(Me.TextBitlyPw, "TextBitlyPw") + Me.TextBitlyPw.Name = "TextBitlyPw" + ' + 'ComboBoxPostKeySelect + ' + Me.ComboBoxPostKeySelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboBoxPostKeySelect.FormattingEnabled = True + Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {resources.GetString("ComboBoxPostKeySelect.Items"), resources.GetString("ComboBoxPostKeySelect.Items1"), resources.GetString("ComboBoxPostKeySelect.Items2")}) + resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") + Me.ComboBoxPostKeySelect.Name = "ComboBoxPostKeySelect" + ' + 'Label27 + ' + resources.ApplyResources(Me.Label27, "Label27") + Me.Label27.Name = "Label27" + ' + 'CheckRetweetNoConfirm + ' + resources.ApplyResources(Me.CheckRetweetNoConfirm, "CheckRetweetNoConfirm") + Me.CheckRetweetNoConfirm.Name = "CheckRetweetNoConfirm" + Me.CheckRetweetNoConfirm.UseVisualStyleBackColor = True + ' + 'TextBitlyId + ' + resources.ApplyResources(Me.TextBitlyId, "TextBitlyId") + Me.TextBitlyId.Name = "TextBitlyId" + ' + 'Label12 + ' + resources.ApplyResources(Me.Label12, "Label12") + Me.Label12.Name = "Label12" + ' + 'Label77 + ' + resources.ApplyResources(Me.Label77, "Label77") + Me.Label77.Name = "Label77" + ' + 'CheckUseRecommendStatus + ' + resources.ApplyResources(Me.CheckUseRecommendStatus, "CheckUseRecommendStatus") + Me.CheckUseRecommendStatus.Name = "CheckUseRecommendStatus" + Me.CheckUseRecommendStatus.UseVisualStyleBackColor = True + ' + 'Label76 + ' + resources.ApplyResources(Me.Label76, "Label76") + Me.Label76.Name = "Label76" + ' + 'StatusText + ' + resources.ApplyResources(Me.StatusText, "StatusText") + Me.StatusText.Name = "StatusText" + ' + 'ComboBoxAutoShortUrlFirst + ' + Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True + Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4")}) + resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") + Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" + ' + 'Label71 + ' + resources.ApplyResources(Me.Label71, "Label71") + Me.Label71.Name = "Label71" + ' + 'CheckTinyURL + ' + resources.ApplyResources(Me.CheckTinyURL, "CheckTinyURL") + Me.CheckTinyURL.Name = "CheckTinyURL" + Me.CheckTinyURL.UseVisualStyleBackColor = True + ' + 'CheckAutoConvertUrl + ' + resources.ApplyResources(Me.CheckAutoConvertUrl, "CheckAutoConvertUrl") + Me.CheckAutoConvertUrl.Name = "CheckAutoConvertUrl" + Me.CheckAutoConvertUrl.UseVisualStyleBackColor = True + ' + 'FontPanel + ' + Me.FontPanel.Controls.Add(Me.GroupBox1) + resources.ApplyResources(Me.FontPanel, "FontPanel") + Me.FontPanel.Name = "FontPanel" + ' + 'GroupBox1 + ' + Me.GroupBox1.Controls.Add(Me.btnRetweet) + Me.GroupBox1.Controls.Add(Me.lblRetweet) + Me.GroupBox1.Controls.Add(Me.Label80) + Me.GroupBox1.Controls.Add(Me.ButtonBackToDefaultFontColor) + Me.GroupBox1.Controls.Add(Me.btnDetailLink) + Me.GroupBox1.Controls.Add(Me.lblDetailLink) + Me.GroupBox1.Controls.Add(Me.Label18) + Me.GroupBox1.Controls.Add(Me.btnUnread) + Me.GroupBox1.Controls.Add(Me.lblUnread) + Me.GroupBox1.Controls.Add(Me.Label20) + Me.GroupBox1.Controls.Add(Me.btnDetailBack) + Me.GroupBox1.Controls.Add(Me.lblDetailBackcolor) + Me.GroupBox1.Controls.Add(Me.Label37) + Me.GroupBox1.Controls.Add(Me.btnDetail) + Me.GroupBox1.Controls.Add(Me.lblDetail) + Me.GroupBox1.Controls.Add(Me.Label26) + Me.GroupBox1.Controls.Add(Me.btnOWL) + Me.GroupBox1.Controls.Add(Me.lblOWL) + Me.GroupBox1.Controls.Add(Me.Label24) + Me.GroupBox1.Controls.Add(Me.btnFav) + Me.GroupBox1.Controls.Add(Me.lblFav) + Me.GroupBox1.Controls.Add(Me.Label22) + Me.GroupBox1.Controls.Add(Me.btnListFont) + Me.GroupBox1.Controls.Add(Me.lblListFont) + Me.GroupBox1.Controls.Add(Me.Label61) + resources.ApplyResources(Me.GroupBox1, "GroupBox1") + Me.GroupBox1.Name = "GroupBox1" + Me.GroupBox1.TabStop = False + ' + 'btnRetweet + ' + resources.ApplyResources(Me.btnRetweet, "btnRetweet") + Me.btnRetweet.Name = "btnRetweet" + Me.btnRetweet.UseVisualStyleBackColor = True + ' + 'lblRetweet + ' + Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblRetweet, "lblRetweet") + Me.lblRetweet.Name = "lblRetweet" + ' + 'Label80 + ' + resources.ApplyResources(Me.Label80, "Label80") + Me.Label80.Name = "Label80" + ' + 'ButtonBackToDefaultFontColor + ' + resources.ApplyResources(Me.ButtonBackToDefaultFontColor, "ButtonBackToDefaultFontColor") + Me.ButtonBackToDefaultFontColor.Name = "ButtonBackToDefaultFontColor" + Me.ButtonBackToDefaultFontColor.UseVisualStyleBackColor = True + ' + 'btnDetailLink + ' + resources.ApplyResources(Me.btnDetailLink, "btnDetailLink") + Me.btnDetailLink.Name = "btnDetailLink" + Me.btnDetailLink.UseVisualStyleBackColor = True + ' + 'lblDetailLink + ' + Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") + Me.lblDetailLink.Name = "lblDetailLink" + ' + 'Label18 + ' + resources.ApplyResources(Me.Label18, "Label18") + Me.Label18.Name = "Label18" + ' + 'btnUnread + ' + resources.ApplyResources(Me.btnUnread, "btnUnread") + Me.btnUnread.Name = "btnUnread" + Me.btnUnread.UseVisualStyleBackColor = True + ' + 'lblUnread + ' + Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblUnread, "lblUnread") + Me.lblUnread.Name = "lblUnread" + ' + 'Label20 + ' + resources.ApplyResources(Me.Label20, "Label20") + Me.Label20.Name = "Label20" + ' + 'btnDetailBack + ' + resources.ApplyResources(Me.btnDetailBack, "btnDetailBack") + Me.btnDetailBack.Name = "btnDetailBack" + Me.btnDetailBack.UseVisualStyleBackColor = True + ' + 'lblDetailBackcolor + ' + Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") + Me.lblDetailBackcolor.Name = "lblDetailBackcolor" + ' + 'Label37 + ' + resources.ApplyResources(Me.Label37, "Label37") + Me.Label37.Name = "Label37" + ' + 'btnDetail + ' + resources.ApplyResources(Me.btnDetail, "btnDetail") + Me.btnDetail.Name = "btnDetail" + Me.btnDetail.UseVisualStyleBackColor = True + ' + 'lblDetail + ' + Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblDetail, "lblDetail") + Me.lblDetail.Name = "lblDetail" + ' + 'Label26 + ' + resources.ApplyResources(Me.Label26, "Label26") + Me.Label26.Name = "Label26" + ' + 'btnOWL + ' + resources.ApplyResources(Me.btnOWL, "btnOWL") + Me.btnOWL.Name = "btnOWL" + Me.btnOWL.UseVisualStyleBackColor = True + ' + 'lblOWL + ' + Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblOWL, "lblOWL") + Me.lblOWL.Name = "lblOWL" + ' + 'Label24 + ' + resources.ApplyResources(Me.Label24, "Label24") + Me.Label24.Name = "Label24" + ' + 'btnFav + ' + resources.ApplyResources(Me.btnFav, "btnFav") + Me.btnFav.Name = "btnFav" + Me.btnFav.UseVisualStyleBackColor = True + ' + 'lblFav + ' + Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblFav, "lblFav") + Me.lblFav.Name = "lblFav" + ' + 'Label22 + ' + resources.ApplyResources(Me.Label22, "Label22") + Me.Label22.Name = "Label22" + ' + 'btnListFont + ' + resources.ApplyResources(Me.btnListFont, "btnListFont") + Me.btnListFont.Name = "btnListFont" + Me.btnListFont.UseVisualStyleBackColor = True + ' + 'lblListFont + ' + Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.lblListFont, "lblListFont") + Me.lblListFont.Name = "lblListFont" + ' + 'Label61 + ' + resources.ApplyResources(Me.Label61, "Label61") + Me.Label61.Name = "Label61" + ' 'GetPeriodPanel ' - Me.GetPeriodPanel.BackColor = System.Drawing.SystemColors.Window Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) Me.GetPeriodPanel.Controls.Add(Me.Label3) Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) @@ -392,7 +669,6 @@ ' 'GetCountPanel ' - Me.GetCountPanel.BackColor = System.Drawing.SystemColors.Window Me.GetCountPanel.Controls.Add(Me.Label30) Me.GetCountPanel.Controls.Add(Me.Label28) Me.GetCountPanel.Controls.Add(Me.Label19) @@ -676,7 +952,6 @@ ' 'BasedPanel ' - Me.BasedPanel.BackColor = System.Drawing.SystemColors.Window Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) Me.BasedPanel.Controls.Add(Me.Label6) @@ -976,7 +1251,6 @@ ' 'StartupPanel ' - Me.StartupPanel.BackColor = System.Drawing.SystemColors.Window Me.StartupPanel.Controls.Add(Me.StartupReaded) Me.StartupPanel.Controls.Add(Me.CheckStartupFollowers) Me.StartupPanel.Controls.Add(Me.CheckStartupVersion) @@ -1104,7 +1378,6 @@ ' 'ActionPanel ' - Me.ActionPanel.BackColor = System.Drawing.SystemColors.Window Me.ActionPanel.Controls.Add(Me.GroupBox3) Me.ActionPanel.Controls.Add(Me.CheckHashSupple) Me.ActionPanel.Controls.Add(Me.CheckAtIdSupple) @@ -1384,285 +1657,6 @@ Me.CheckBox3.Name = "CheckBox3" Me.CheckBox3.UseVisualStyleBackColor = True ' - 'TweetActPanel - ' - Me.TweetActPanel.BackColor = System.Drawing.SystemColors.Window - Me.TweetActPanel.Controls.Add(Me.TextBitlyPw) - Me.TweetActPanel.Controls.Add(Me.ComboBoxPostKeySelect) - Me.TweetActPanel.Controls.Add(Me.Label27) - Me.TweetActPanel.Controls.Add(Me.CheckRetweetNoConfirm) - Me.TweetActPanel.Controls.Add(Me.TextBitlyId) - Me.TweetActPanel.Controls.Add(Me.Label12) - Me.TweetActPanel.Controls.Add(Me.Label77) - Me.TweetActPanel.Controls.Add(Me.CheckUseRecommendStatus) - Me.TweetActPanel.Controls.Add(Me.Label76) - Me.TweetActPanel.Controls.Add(Me.StatusText) - Me.TweetActPanel.Controls.Add(Me.ComboBoxAutoShortUrlFirst) - Me.TweetActPanel.Controls.Add(Me.Label71) - Me.TweetActPanel.Controls.Add(Me.CheckTinyURL) - Me.TweetActPanel.Controls.Add(Me.CheckAutoConvertUrl) - resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") - Me.TweetActPanel.Name = "TweetActPanel" - ' - 'TextBitlyPw - ' - resources.ApplyResources(Me.TextBitlyPw, "TextBitlyPw") - Me.TextBitlyPw.Name = "TextBitlyPw" - ' - 'ComboBoxPostKeySelect - ' - Me.ComboBoxPostKeySelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxPostKeySelect.FormattingEnabled = True - Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {resources.GetString("ComboBoxPostKeySelect.Items"), resources.GetString("ComboBoxPostKeySelect.Items1"), resources.GetString("ComboBoxPostKeySelect.Items2")}) - resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") - Me.ComboBoxPostKeySelect.Name = "ComboBoxPostKeySelect" - ' - 'Label27 - ' - resources.ApplyResources(Me.Label27, "Label27") - Me.Label27.Name = "Label27" - ' - 'CheckRetweetNoConfirm - ' - resources.ApplyResources(Me.CheckRetweetNoConfirm, "CheckRetweetNoConfirm") - Me.CheckRetweetNoConfirm.Name = "CheckRetweetNoConfirm" - Me.CheckRetweetNoConfirm.UseVisualStyleBackColor = True - ' - 'TextBitlyId - ' - resources.ApplyResources(Me.TextBitlyId, "TextBitlyId") - Me.TextBitlyId.Name = "TextBitlyId" - ' - 'Label12 - ' - resources.ApplyResources(Me.Label12, "Label12") - Me.Label12.Name = "Label12" - ' - 'Label77 - ' - resources.ApplyResources(Me.Label77, "Label77") - Me.Label77.Name = "Label77" - ' - 'CheckUseRecommendStatus - ' - resources.ApplyResources(Me.CheckUseRecommendStatus, "CheckUseRecommendStatus") - Me.CheckUseRecommendStatus.Name = "CheckUseRecommendStatus" - Me.CheckUseRecommendStatus.UseVisualStyleBackColor = True - ' - 'Label76 - ' - resources.ApplyResources(Me.Label76, "Label76") - Me.Label76.Name = "Label76" - ' - 'StatusText - ' - resources.ApplyResources(Me.StatusText, "StatusText") - Me.StatusText.Name = "StatusText" - ' - 'ComboBoxAutoShortUrlFirst - ' - Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True - Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4")}) - resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") - Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" - ' - 'Label71 - ' - resources.ApplyResources(Me.Label71, "Label71") - Me.Label71.Name = "Label71" - ' - 'CheckTinyURL - ' - resources.ApplyResources(Me.CheckTinyURL, "CheckTinyURL") - Me.CheckTinyURL.Name = "CheckTinyURL" - Me.CheckTinyURL.UseVisualStyleBackColor = True - ' - 'CheckAutoConvertUrl - ' - resources.ApplyResources(Me.CheckAutoConvertUrl, "CheckAutoConvertUrl") - Me.CheckAutoConvertUrl.Name = "CheckAutoConvertUrl" - Me.CheckAutoConvertUrl.UseVisualStyleBackColor = True - ' - 'FontPanel - ' - Me.FontPanel.Controls.Add(Me.GroupBox1) - resources.ApplyResources(Me.FontPanel, "FontPanel") - Me.FontPanel.Name = "FontPanel" - ' - 'GroupBox1 - ' - Me.GroupBox1.Controls.Add(Me.btnRetweet) - Me.GroupBox1.Controls.Add(Me.lblRetweet) - Me.GroupBox1.Controls.Add(Me.Label80) - Me.GroupBox1.Controls.Add(Me.ButtonBackToDefaultFontColor) - Me.GroupBox1.Controls.Add(Me.btnDetailLink) - Me.GroupBox1.Controls.Add(Me.lblDetailLink) - Me.GroupBox1.Controls.Add(Me.Label18) - Me.GroupBox1.Controls.Add(Me.btnUnread) - Me.GroupBox1.Controls.Add(Me.lblUnread) - Me.GroupBox1.Controls.Add(Me.Label20) - Me.GroupBox1.Controls.Add(Me.btnDetailBack) - Me.GroupBox1.Controls.Add(Me.lblDetailBackcolor) - Me.GroupBox1.Controls.Add(Me.Label37) - Me.GroupBox1.Controls.Add(Me.btnDetail) - Me.GroupBox1.Controls.Add(Me.lblDetail) - Me.GroupBox1.Controls.Add(Me.Label26) - Me.GroupBox1.Controls.Add(Me.btnOWL) - Me.GroupBox1.Controls.Add(Me.lblOWL) - Me.GroupBox1.Controls.Add(Me.Label24) - Me.GroupBox1.Controls.Add(Me.btnFav) - Me.GroupBox1.Controls.Add(Me.lblFav) - Me.GroupBox1.Controls.Add(Me.Label22) - Me.GroupBox1.Controls.Add(Me.btnListFont) - Me.GroupBox1.Controls.Add(Me.lblListFont) - Me.GroupBox1.Controls.Add(Me.Label61) - resources.ApplyResources(Me.GroupBox1, "GroupBox1") - Me.GroupBox1.Name = "GroupBox1" - Me.GroupBox1.TabStop = False - ' - 'btnRetweet - ' - resources.ApplyResources(Me.btnRetweet, "btnRetweet") - Me.btnRetweet.Name = "btnRetweet" - Me.btnRetweet.UseVisualStyleBackColor = True - ' - 'lblRetweet - ' - Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblRetweet, "lblRetweet") - Me.lblRetweet.Name = "lblRetweet" - ' - 'Label80 - ' - resources.ApplyResources(Me.Label80, "Label80") - Me.Label80.Name = "Label80" - ' - 'ButtonBackToDefaultFontColor - ' - resources.ApplyResources(Me.ButtonBackToDefaultFontColor, "ButtonBackToDefaultFontColor") - Me.ButtonBackToDefaultFontColor.Name = "ButtonBackToDefaultFontColor" - Me.ButtonBackToDefaultFontColor.UseVisualStyleBackColor = True - ' - 'btnDetailLink - ' - resources.ApplyResources(Me.btnDetailLink, "btnDetailLink") - Me.btnDetailLink.Name = "btnDetailLink" - Me.btnDetailLink.UseVisualStyleBackColor = True - ' - 'lblDetailLink - ' - Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") - Me.lblDetailLink.Name = "lblDetailLink" - ' - 'Label18 - ' - resources.ApplyResources(Me.Label18, "Label18") - Me.Label18.Name = "Label18" - ' - 'btnUnread - ' - resources.ApplyResources(Me.btnUnread, "btnUnread") - Me.btnUnread.Name = "btnUnread" - Me.btnUnread.UseVisualStyleBackColor = True - ' - 'lblUnread - ' - Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblUnread, "lblUnread") - Me.lblUnread.Name = "lblUnread" - ' - 'Label20 - ' - resources.ApplyResources(Me.Label20, "Label20") - Me.Label20.Name = "Label20" - ' - 'btnDetailBack - ' - resources.ApplyResources(Me.btnDetailBack, "btnDetailBack") - Me.btnDetailBack.Name = "btnDetailBack" - Me.btnDetailBack.UseVisualStyleBackColor = True - ' - 'lblDetailBackcolor - ' - Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") - Me.lblDetailBackcolor.Name = "lblDetailBackcolor" - ' - 'Label37 - ' - resources.ApplyResources(Me.Label37, "Label37") - Me.Label37.Name = "Label37" - ' - 'btnDetail - ' - resources.ApplyResources(Me.btnDetail, "btnDetail") - Me.btnDetail.Name = "btnDetail" - Me.btnDetail.UseVisualStyleBackColor = True - ' - 'lblDetail - ' - Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblDetail, "lblDetail") - Me.lblDetail.Name = "lblDetail" - ' - 'Label26 - ' - resources.ApplyResources(Me.Label26, "Label26") - Me.Label26.Name = "Label26" - ' - 'btnOWL - ' - resources.ApplyResources(Me.btnOWL, "btnOWL") - Me.btnOWL.Name = "btnOWL" - Me.btnOWL.UseVisualStyleBackColor = True - ' - 'lblOWL - ' - Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblOWL, "lblOWL") - Me.lblOWL.Name = "lblOWL" - ' - 'Label24 - ' - resources.ApplyResources(Me.Label24, "Label24") - Me.Label24.Name = "Label24" - ' - 'btnFav - ' - resources.ApplyResources(Me.btnFav, "btnFav") - Me.btnFav.Name = "btnFav" - Me.btnFav.UseVisualStyleBackColor = True - ' - 'lblFav - ' - Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblFav, "lblFav") - Me.lblFav.Name = "lblFav" - ' - 'Label22 - ' - resources.ApplyResources(Me.Label22, "Label22") - Me.Label22.Name = "Label22" - ' - 'btnListFont - ' - resources.ApplyResources(Me.btnListFont, "btnListFont") - Me.btnListFont.Name = "btnListFont" - Me.btnListFont.UseVisualStyleBackColor = True - ' - 'lblListFont - ' - Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblListFont, "lblListFont") - Me.lblListFont.Name = "lblListFont" - ' - 'Label61 - ' - resources.ApplyResources(Me.Label61, "Label61") - Me.Label61.Name = "Label61" - ' 'Cancel ' Me.Cancel.CausesValidation = False @@ -1698,6 +1692,11 @@ Me.SplitContainer1.Panel2.ResumeLayout(False) CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit() Me.SplitContainer1.ResumeLayout(False) + Me.TweetActPanel.ResumeLayout(False) + Me.TweetActPanel.PerformLayout() + Me.FontPanel.ResumeLayout(False) + Me.GroupBox1.ResumeLayout(False) + Me.GroupBox1.PerformLayout() Me.GetPeriodPanel.ResumeLayout(False) Me.GetPeriodPanel.PerformLayout() Me.GetCountPanel.ResumeLayout(False) @@ -1723,11 +1722,6 @@ Me.GroupBox3.PerformLayout() Me.PreviewPanel.ResumeLayout(False) Me.PreviewPanel.PerformLayout() - Me.TweetActPanel.ResumeLayout(False) - Me.TweetActPanel.PerformLayout() - Me.FontPanel.ResumeLayout(False) - Me.GroupBox1.ResumeLayout(False) - Me.GroupBox1.PerformLayout() Me.ResumeLayout(False) End Sub Modified: trunk/Tween/StatusDictionary.vb =================================================================== --- trunk/Tween/StatusDictionary.vb 2010-12-20 17:20:21 UTC (rev 1234) +++ trunk/Tween/StatusDictionary.vb 2010-12-21 10:15:19 UTC (rev 1235) @@ -1013,38 +1013,90 @@ If post.IsRead = Read Then Exit Sub '状態変更なければ終了 - post.IsRead = Read '指定の状態に変更 + post.IsRead = Read SyncLock LockUnread - If tb.IsInnerStorageTabType Then - If _statuses.ContainsKey(Id) Then _statuses(Id).IsRead = Read - End If - For Each tbInnerStorage In Me.GetTabsInnerStorageType - If tb.TabName <> tbInnerStorage.TabName AndAlso tbInnerStorage.Contains(Id) Then - tbInnerStorage.Posts(Id).IsRead = Read - End If - Next If Read Then tb.UnreadCount -= 1 Me.SetNextUnreadId(Id, tb) '次の未読セット '他タブの最古未読IDはタブ切り替え時に。 + If tb.IsInnerStorageTabType Then + '一般タブ + If _statuses.ContainsKey(Id) AndAlso Not _statuses(Id).IsRead Then + For Each key As String In _tabs.Keys + If _tabs(key).UnreadManage AndAlso _ + _tabs(key).Contains(Id) AndAlso _ + Not _tabs(key).IsInnerStorageTabType Then + _tabs(key).UnreadCount -= 1 + If _tabs(key).OldestUnreadId = Id Then _tabs(key).OldestUnreadId = -1 + End If + Next + _statuses(Id).IsRead = True + End If + Else + '一般タブ + For Each key As String In _tabs.Keys + If key <> TabName AndAlso _ + _tabs(key).UnreadManage AndAlso _ + _tabs(key).Contains(Id) AndAlso _ + Not _tabs(key).IsInnerStorageTabType Then + _tabs(key).UnreadCount -= 1 + If _tabs(key).OldestUnreadId = Id Then _tabs(key).OldestUnreadId = -1 + End If + Next + End If + '内部保存タブ For Each key As String In _tabs.Keys - If key <> TabName AndAlso _ - _tabs(key).UnreadManage AndAlso _ - _tabs(key).Contains(Id) Then - _tabs(key).UnreadCount -= 1 - If _tabs(key).OldestUnreadId = Id Then _tabs(key).OldestUnreadId = -1 + If key <> TabName AndAlso + _tabs(key).Contains(Id) AndAlso + _tabs(key).IsInnerStorageTabType AndAlso + Not _tabs(key).Posts(Id).IsRead Then + If _tabs(key).UnreadManage Then + _tabs(key).UnreadCount -= 1 + If _tabs(key).OldestUnreadId = Id Then _tabs(key).OldestUnreadId = -1 + End If + _tabs(key).Posts(Id).IsRead = True End If Next Else tb.UnreadCount += 1 If tb.OldestUnreadId > Id OrElse tb.OldestUnreadId = -1 Then tb.OldestUnreadId = Id + If tb.IsInnerStorageTabType Then + '一般タブ + If _statuses.ContainsKey(Id) AndAlso _statuses(Id).IsRead Then + For Each key As String In _tabs.Keys + If _tabs(key).UnreadManage AndAlso _ + _tabs(key).Contains(Id) AndAlso _ + Not _tabs(key).IsInnerStorageTabType Then + _tabs(key).UnreadCount += 1 + If _tabs(key).OldestUnreadId > Id Then _tabs(key).OldestUnreadId = Id + End If + Next + _statuses(Id).IsRead = False + End If + Else + '一般タブ + For Each key As String In _tabs.Keys + If key <> TabName AndAlso _ + _tabs(key).UnreadManage AndAlso _ + _tabs(key).Contains(Id) AndAlso _ + Not _tabs(key).IsInnerStorageTabType Then + _tabs(key).UnreadCount += 1 + If _tabs(key).OldestUnreadId > Id Then _tabs(key).OldestUnreadId = Id + End If + Next + End If + '内部保存タブ For Each key As String In _tabs.Keys - If Not key = TabName AndAlso _ - _tabs(key).UnreadManage AndAlso _ - _tabs(key).Contains(Id) Then - _tabs(key).UnreadCount += 1 - If _tabs(key).OldestUnreadId > Id Then _tabs(key).OldestUnreadId = Id + If key <> TabName AndAlso + _tabs(key).Contains(Id) AndAlso + _tabs(key).IsInnerStorageTabType AndAlso + _tabs(key).Posts(Id).IsRead Then + If _tabs(key).UnreadManage Then + _tabs(key).UnreadCount += 1 + If _tabs(key).OldestUnreadId > Id Then _tabs(key).OldestUnreadId = Id + End If + _tabs(key).Posts(Id).IsRead = False End If Next End If From svnnotify @ sourceforge.jp Tue Dec 21 20:03:18 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 21 Dec 2010 20:03:18 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMzZdICDplqLpgKPnmbroqIDlj5blvpfjgac=?= =?utf-8?b?44CB6L+U5L+h5YWI44GM6L+95Yqg44GV44KM44Gq44GE44OQ44Kw5L+u5q2j?= Message-ID: <1292929398.754101.32715.nullmailer@users.sourceforge.jp> Revision: 1236 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1236 Author: kiri_feather Date: 2010-12-21 20:03:18 +0900 (Tue, 21 Dec 2010) Log Message: ----------- 関連発言取得で、返信先が追加されないバグ修正 返信先が取得できない場合があったので、別途取得処理を追加 /statuses/showをjson化 Modified Paths: -------------- trunk/Tween/Connection/HttpTwitter.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Connection/HttpTwitter.vb =================================================================== --- trunk/Tween/Connection/HttpTwitter.vb 2010-12-21 10:15:19 UTC (rev 1235) +++ trunk/Tween/Connection/HttpTwitter.vb 2010-12-21 11:03:18 UTC (rev 1236) @@ -280,7 +280,7 @@ Public Function ShowStatuses(ByVal id As Long, ByRef content As String) As HttpStatusCode Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/statuses/show/" + id.ToString() + ".xml"), _ + CreateTwitterUri("/1/statuses/show/" + id.ToString() + ".json"), _ Nothing, _ content, _ TwitterApiInfo.HttpHeaders, _ Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-21 10:15:19 UTC (rev 1235) +++ trunk/Tween/Twitter.vb 2010-12-21 11:03:18 UTC (rev 1236) @@ -1062,26 +1062,21 @@ Select Case res Case HttpStatusCode.OK Twitter.AccountState = ACCOUNT_STATE.Valid + Dim status As TwitterDataModel.Status Try - Using rd As Xml.XmlTextReader = New Xml.XmlTextReader(New System.IO.StringReader(content)) - rd.Read() - While rd.EOF = False - If rd.IsStartElement("favorited") Then - If rd.ReadElementContentAsBoolean() = True Then - Return "" '正常にふぁぼれている - Else - Return "NG(Restricted?)" '正常応答なのにふぁぼれてないので制限っぽい - End If - Else - rd.Read() - End If - End While - rd.Close() - Return "Err:Invalid XML!" - End Using - Catch ex As XmlException + status = CreateDataFromJson(Of TwitterDataModel.Status)(content) + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" + Catch ex As Exception + TraceOut(content) + Return "Err:Invalid Json!" + End Try + If status.Favorited Then Return "" - End Try + Else + Return "NG(Restricted?)" + End If Case HttpStatusCode.Unauthorized Twitter.AccountState = ACCOUNT_STATE.Invalid Return "Check your Username/Password." @@ -1470,6 +1465,56 @@ Return "" End Function + Public Function GetStatusApi(ByVal read As Boolean, + ByVal id As Int64, + ByVal tab As TabClass) As String + + If Twitter.AccountState <> ACCOUNT_STATE.Valid Then Return "" + + If _endingFlag Then Return "" + + Dim res As HttpStatusCode + Dim content As String = "" + + Try + res = twCon.ShowStatuses(id, content) + Catch ex As Exception + Return "Err:" + ex.Message + End Try + Select Case res + Case HttpStatusCode.OK + Twitter.AccountState = ACCOUNT_STATE.Valid + Case HttpStatusCode.Unauthorized + Twitter.AccountState = ACCOUNT_STATE.Invalid + Return "Check your Username/Password." + Case HttpStatusCode.BadRequest + Return "Err:API Limits?" + Case Else + Return "Err:" + res.ToString() + "(" + GetCurrentMethod.Name + ")" + End Select + + Dim status As TwitterDataModel.Status + Try + status = CreateDataFromJson(Of TwitterDataModel.Status)(content) + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Json Parse Error(DataContractJsonSerializer)" + Catch ex As Exception + TraceOut(content) + Return "Invalid Json!" + End Try + + Dim item As PostClass = CreatePostsFromStatusData(status) + If item Is Nothing Then Return "Err:Can't create post" + item.IsRead = read + If item.IsMe AndAlso Not read AndAlso _readOwnPost Then item.IsRead = True + If tab IsNot Nothing Then item.RelTabName = tab.TabName + '非同期アイコン取得&StatusDictionaryに追加 + TabInformations.GetInstance.AddPost(item) + + Return "" + End Function + Private Function CreatePostsFromStatusData(ByVal status As TwitterDataModel.Status) As PostClass Dim post As New PostClass @@ -1662,6 +1707,8 @@ Dim replyToUserName As String = targetItem.InReplyToUser If targetItem.InReplyToId > 0 AndAlso TabInformations.GetInstance.Item(targetItem.InReplyToId) IsNot Nothing Then replyToItem = TabInformations.GetInstance.Item(targetItem.InReplyToId).Copy + replyToItem.IsRead = read + If replyToItem.IsMe AndAlso Not read AndAlso _readOwnPost Then replyToItem.IsRead = True replyToItem.RelTabName = tab.TabName End If @@ -1676,11 +1723,15 @@ Return "Invalid Json!" End Try + Dim replyAdded As Boolean = False For Each relatedData As TwitterDataModel.RelatedResult In items For Each result As TwitterDataModel.RelatedTweet In relatedData.Results Dim item As PostClass = CreatePostsFromStatusData(result.Status) If item Is Nothing Then Continue For - If targetItem.InReplyToId = item.Id Then replyToItem = Nothing + If targetItem.InReplyToId = item.Id Then + replyToItem = Nothing + replyAdded = True + End If item.IsRead = read If item.IsMe AndAlso Not read AndAlso _readOwnPost Then item.IsRead = True If tab IsNot Nothing Then item.RelTabName = tab.TabName @@ -1688,6 +1739,11 @@ TabInformations.GetInstance.AddPost(item) Next Next + If replyToItem IsNot Nothing Then + TabInformations.GetInstance.AddPost(replyToItem) + ElseIf targetItem.InReplyToId > 0 AndAlso Not replyAdded Then + Return GetStatusApi(read, targetItem.InReplyToId, tab) + End If '発言者・返信先ユーザーの直近10発言取得 'Dim rslt As String = Me.GetUserTimelineApi(read, 10, "", tab) From svnnotify @ sourceforge.jp Tue Dec 21 20:52:03 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 21 Dec 2010 20:52:03 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMzddICDoqK3lrprnlLvpnaLoi7Hoqp7jg6o=?= =?utf-8?b?44K944O844K55a++5b+c77yI6YCU5Lit77yJ?= Message-ID: <1292932323.926029.26069.nullmailer@users.sourceforge.jp> Revision: 1237 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1237 Author: kiri_feather Date: 2010-12-21 20:52:03 +0900 (Tue, 21 Dec 2010) Log Message: ----------- 設定画面英語リソース対応(途中) メイン画面英語リソース対応漏れの修正 Modified Paths: -------------- trunk/Tween/AppendSettingDialog.Designer.vb trunk/Tween/AppendSettingDialog.en.resx trunk/Tween/AppendSettingDialog.resx trunk/Tween/Tween.en.resx trunk/Tween/Tween.resx -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.Designer.vb =================================================================== --- trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-21 11:03:18 UTC (rev 1236) +++ trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-21 11:52:03 UTC (rev 1237) @@ -265,10 +265,12 @@ ' 'SplitContainer1.Panel1 ' + resources.ApplyResources(Me.SplitContainer1.Panel1, "SplitContainer1.Panel1") Me.SplitContainer1.Panel1.Controls.Add(Me.TreeView1) ' 'SplitContainer1.Panel2 ' + resources.ApplyResources(Me.SplitContainer1.Panel2, "SplitContainer1.Panel2") Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Control Me.SplitContainer1.Panel2.Controls.Add(Me.TweetActPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel) @@ -286,13 +288,14 @@ ' 'TreeView1 ' + resources.ApplyResources(Me.TreeView1, "TreeView1") Me.TreeView1.Cursor = System.Windows.Forms.Cursors.Hand - resources.ApplyResources(Me.TreeView1, "TreeView1") Me.TreeView1.Name = "TreeView1" Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {CType(resources.GetObject("TreeView1.Nodes"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes1"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes2"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes3"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes4"), System.Windows.Forms.TreeNode)}) ' 'TweetActPanel ' + resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") Me.TweetActPanel.Controls.Add(Me.TextBitlyPw) Me.TweetActPanel.Controls.Add(Me.ComboBoxPostKeySelect) Me.TweetActPanel.Controls.Add(Me.Label27) @@ -307,7 +310,6 @@ Me.TweetActPanel.Controls.Add(Me.Label71) Me.TweetActPanel.Controls.Add(Me.CheckTinyURL) Me.TweetActPanel.Controls.Add(Me.CheckAutoConvertUrl) - resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") Me.TweetActPanel.Name = "TweetActPanel" ' 'TextBitlyPw @@ -317,10 +319,10 @@ ' 'ComboBoxPostKeySelect ' + resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") Me.ComboBoxPostKeySelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxPostKeySelect.FormattingEnabled = True Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {resources.GetString("ComboBoxPostKeySelect.Items"), resources.GetString("ComboBoxPostKeySelect.Items1"), resources.GetString("ComboBoxPostKeySelect.Items2")}) - resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") Me.ComboBoxPostKeySelect.Name = "ComboBoxPostKeySelect" ' 'Label27 @@ -367,10 +369,10 @@ ' 'ComboBoxAutoShortUrlFirst ' + resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4")}) - resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" ' 'Label71 @@ -392,12 +394,13 @@ ' 'FontPanel ' + resources.ApplyResources(Me.FontPanel, "FontPanel") Me.FontPanel.Controls.Add(Me.GroupBox1) - resources.ApplyResources(Me.FontPanel, "FontPanel") Me.FontPanel.Name = "FontPanel" ' 'GroupBox1 ' + resources.ApplyResources(Me.GroupBox1, "GroupBox1") Me.GroupBox1.Controls.Add(Me.btnRetweet) Me.GroupBox1.Controls.Add(Me.lblRetweet) Me.GroupBox1.Controls.Add(Me.Label80) @@ -423,7 +426,6 @@ Me.GroupBox1.Controls.Add(Me.btnListFont) Me.GroupBox1.Controls.Add(Me.lblListFont) Me.GroupBox1.Controls.Add(Me.Label61) - resources.ApplyResources(Me.GroupBox1, "GroupBox1") Me.GroupBox1.Name = "GroupBox1" Me.GroupBox1.TabStop = False ' @@ -435,8 +437,8 @@ ' 'lblRetweet ' + resources.ApplyResources(Me.lblRetweet, "lblRetweet") Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblRetweet, "lblRetweet") Me.lblRetweet.Name = "lblRetweet" ' 'Label80 @@ -458,8 +460,8 @@ ' 'lblDetailLink ' + resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") Me.lblDetailLink.Name = "lblDetailLink" ' 'Label18 @@ -475,8 +477,8 @@ ' 'lblUnread ' + resources.ApplyResources(Me.lblUnread, "lblUnread") Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblUnread, "lblUnread") Me.lblUnread.Name = "lblUnread" ' 'Label20 @@ -492,8 +494,8 @@ ' 'lblDetailBackcolor ' + resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") Me.lblDetailBackcolor.Name = "lblDetailBackcolor" ' 'Label37 @@ -509,8 +511,8 @@ ' 'lblDetail ' + resources.ApplyResources(Me.lblDetail, "lblDetail") Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblDetail, "lblDetail") Me.lblDetail.Name = "lblDetail" ' 'Label26 @@ -526,8 +528,8 @@ ' 'lblOWL ' + resources.ApplyResources(Me.lblOWL, "lblOWL") Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblOWL, "lblOWL") Me.lblOWL.Name = "lblOWL" ' 'Label24 @@ -543,8 +545,8 @@ ' 'lblFav ' + resources.ApplyResources(Me.lblFav, "lblFav") Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblFav, "lblFav") Me.lblFav.Name = "lblFav" ' 'Label22 @@ -560,8 +562,8 @@ ' 'lblListFont ' + resources.ApplyResources(Me.lblListFont, "lblListFont") Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblListFont, "lblListFont") Me.lblListFont.Name = "lblListFont" ' 'Label61 @@ -571,6 +573,7 @@ ' 'GetPeriodPanel ' + resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) Me.GetPeriodPanel.Controls.Add(Me.Label3) Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) @@ -586,7 +589,6 @@ Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) Me.GetPeriodPanel.Controls.Add(Me.Label5) Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) - resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") Me.GetPeriodPanel.Name = "GetPeriodPanel" ' 'TimelinePeriod @@ -669,6 +671,7 @@ ' 'GetCountPanel ' + resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") Me.GetCountPanel.Controls.Add(Me.Label30) Me.GetCountPanel.Controls.Add(Me.Label28) Me.GetCountPanel.Controls.Add(Me.Label19) @@ -682,7 +685,6 @@ Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) Me.GetCountPanel.Controls.Add(Me.Label67) Me.GetCountPanel.Controls.Add(Me.TextCountApi) - resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") Me.GetCountPanel.Name = "GetCountPanel" ' 'Label30 @@ -753,12 +755,13 @@ ' 'FontPanel2 ' + resources.ApplyResources(Me.FontPanel2, "FontPanel2") Me.FontPanel2.Controls.Add(Me.GroupBox5) - resources.ApplyResources(Me.FontPanel2, "FontPanel2") Me.FontPanel2.Name = "FontPanel2" ' 'GroupBox5 ' + resources.ApplyResources(Me.GroupBox5, "GroupBox5") Me.GroupBox5.Controls.Add(Me.Label65) Me.GroupBox5.Controls.Add(Me.Label52) Me.GroupBox5.Controls.Add(Me.Label49) @@ -787,7 +790,6 @@ Me.GroupBox5.Controls.Add(Me.lblAtSelf) Me.GroupBox5.Controls.Add(Me.lblSelf) Me.GroupBox5.Controls.Add(Me.ButtonBackToDefaultFontColor2) - resources.ApplyResources(Me.GroupBox5, "GroupBox5") Me.GroupBox5.Name = "GroupBox5" Me.GroupBox5.TabStop = False ' @@ -892,56 +894,56 @@ ' 'lblInputFont ' + resources.ApplyResources(Me.lblInputFont, "lblInputFont") Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblInputFont, "lblInputFont") Me.lblInputFont.Name = "lblInputFont" ' 'lblInputBackcolor ' + resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") Me.lblInputBackcolor.Name = "lblInputBackcolor" ' 'lblAtTo ' + resources.ApplyResources(Me.lblAtTo, "lblAtTo") Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblAtTo, "lblAtTo") Me.lblAtTo.Name = "lblAtTo" ' 'lblListBackcolor ' + resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") Me.lblListBackcolor.Name = "lblListBackcolor" ' 'lblAtFromTarget ' + resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") Me.lblAtFromTarget.Name = "lblAtFromTarget" ' 'lblAtTarget ' + resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") Me.lblAtTarget.Name = "lblAtTarget" ' 'lblTarget ' + resources.ApplyResources(Me.lblTarget, "lblTarget") Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblTarget, "lblTarget") Me.lblTarget.Name = "lblTarget" ' 'lblAtSelf ' + resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") Me.lblAtSelf.Name = "lblAtSelf" ' 'lblSelf ' + resources.ApplyResources(Me.lblSelf, "lblSelf") Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblSelf, "lblSelf") Me.lblSelf.Name = "lblSelf" ' 'ButtonBackToDefaultFontColor2 @@ -952,6 +954,7 @@ ' 'BasedPanel ' + resources.ApplyResources(Me.BasedPanel, "BasedPanel") Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) Me.BasedPanel.Controls.Add(Me.Label6) @@ -964,7 +967,6 @@ Me.BasedPanel.Controls.Add(Me.Label2) Me.BasedPanel.Controls.Add(Me.Username) Me.BasedPanel.Controls.Add(Me.Password) - resources.ApplyResources(Me.BasedPanel, "BasedPanel") Me.BasedPanel.Name = "BasedPanel" ' 'AuthBasicRadio @@ -994,14 +996,14 @@ ' 'AuthUserLabel ' + resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") Me.AuthUserLabel.Name = "AuthUserLabel" ' 'AuthStateLabel ' + resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") Me.AuthStateLabel.Name = "AuthStateLabel" ' 'Label4 @@ -1038,6 +1040,7 @@ ' 'ProxyPanel ' + resources.ApplyResources(Me.ProxyPanel, "ProxyPanel") Me.ProxyPanel.Controls.Add(Me.Label55) Me.ProxyPanel.Controls.Add(Me.TextProxyPassword) Me.ProxyPanel.Controls.Add(Me.RadioProxyNone) @@ -1050,7 +1053,6 @@ Me.ProxyPanel.Controls.Add(Me.TextProxyPort) Me.ProxyPanel.Controls.Add(Me.TextProxyAddress) Me.ProxyPanel.Controls.Add(Me.LabelProxyPort) - resources.ApplyResources(Me.ProxyPanel, "ProxyPanel") Me.ProxyPanel.Name = "ProxyPanel" ' 'Label55 @@ -1123,6 +1125,7 @@ ' 'ConnectionPanel ' + resources.ApplyResources(Me.ConnectionPanel, "ConnectionPanel") Me.ConnectionPanel.Controls.Add(Me.CheckNicoms) Me.ConnectionPanel.Controls.Add(Me.Label60) Me.ConnectionPanel.Controls.Add(Me.ComboBoxOutputzUrlmode) @@ -1138,7 +1141,6 @@ Me.ConnectionPanel.Controls.Add(Me.Label64) Me.ConnectionPanel.Controls.Add(Me.ConnectionTimeOut) Me.ConnectionPanel.Controls.Add(Me.Label63) - resources.ApplyResources(Me.ConnectionPanel, "ConnectionPanel") Me.ConnectionPanel.Name = "ConnectionPanel" ' 'CheckNicoms @@ -1154,10 +1156,10 @@ ' 'ComboBoxOutputzUrlmode ' + resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxOutputzUrlmode.FormattingEnabled = True Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {resources.GetString("ComboBoxOutputzUrlmode.Items"), resources.GetString("ComboBoxOutputzUrlmode.Items1")}) - resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" ' 'Label59 @@ -1227,10 +1229,10 @@ ' 'UserStreamPanel ' + resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") Me.UserStreamPanel.Controls.Add(Me.UserstreamPeriod) Me.UserStreamPanel.Controls.Add(Me.StartupUserstreamCheck) Me.UserStreamPanel.Controls.Add(Me.Label83) - resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") Me.UserStreamPanel.Name = "UserStreamPanel" ' 'UserstreamPeriod @@ -1251,11 +1253,11 @@ ' 'StartupPanel ' + resources.ApplyResources(Me.StartupPanel, "StartupPanel") Me.StartupPanel.Controls.Add(Me.StartupReaded) Me.StartupPanel.Controls.Add(Me.CheckStartupFollowers) Me.StartupPanel.Controls.Add(Me.CheckStartupVersion) Me.StartupPanel.Controls.Add(Me.chkGetFav) - resources.ApplyResources(Me.StartupPanel, "StartupPanel") Me.StartupPanel.Name = "StartupPanel" ' 'StartupReaded @@ -1284,6 +1286,7 @@ ' 'TweetPrvPanel ' + resources.ApplyResources(Me.TweetPrvPanel, "TweetPrvPanel") Me.TweetPrvPanel.Controls.Add(Me.Label47) Me.TweetPrvPanel.Controls.Add(Me.LabelDateTimeFormatApplied) Me.TweetPrvPanel.Controls.Add(Me.Label62) @@ -1297,7 +1300,6 @@ Me.TweetPrvPanel.Controls.Add(Me.chkReadOwnPost) Me.TweetPrvPanel.Controls.Add(Me.chkUnreadStyle) Me.TweetPrvPanel.Controls.Add(Me.OneWayLv) - resources.ApplyResources(Me.TweetPrvPanel, "TweetPrvPanel") Me.TweetPrvPanel.Name = "TweetPrvPanel" ' 'Label47 @@ -1335,10 +1337,10 @@ ' 'IconSize ' + resources.ApplyResources(Me.IconSize, "IconSize") Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.IconSize.FormattingEnabled = True Me.IconSize.Items.AddRange(New Object() {resources.GetString("IconSize.Items"), resources.GetString("IconSize.Items1"), resources.GetString("IconSize.Items2"), resources.GetString("IconSize.Items3"), resources.GetString("IconSize.Items4")}) - resources.ApplyResources(Me.IconSize, "IconSize") Me.IconSize.Name = "IconSize" ' 'TextBox3 @@ -1378,6 +1380,7 @@ ' 'ActionPanel ' + resources.ApplyResources(Me.ActionPanel, "ActionPanel") Me.ActionPanel.Controls.Add(Me.GroupBox3) Me.ActionPanel.Controls.Add(Me.CheckHashSupple) Me.ActionPanel.Controls.Add(Me.CheckAtIdSupple) @@ -1392,11 +1395,11 @@ Me.ActionPanel.Controls.Add(Me.CheckCloseToExit) Me.ActionPanel.Controls.Add(Me.CheckMinimizeToTray) Me.ActionPanel.Controls.Add(Me.CheckReadOldPosts) - resources.ApplyResources(Me.ActionPanel, "ActionPanel") Me.ActionPanel.Name = "ActionPanel" ' 'GroupBox3 ' + resources.ApplyResources(Me.GroupBox3, "GroupBox3") Me.GroupBox3.Controls.Add(Me.HotkeyCheck) Me.GroupBox3.Controls.Add(Me.HotkeyCode) Me.GroupBox3.Controls.Add(Me.HotkeyText) @@ -1404,7 +1407,6 @@ Me.GroupBox3.Controls.Add(Me.HotkeyAlt) Me.GroupBox3.Controls.Add(Me.HotkeyShift) Me.GroupBox3.Controls.Add(Me.HotkeyCtrl) - resources.ApplyResources(Me.GroupBox3, "GroupBox3") Me.GroupBox3.Name = "GroupBox3" Me.GroupBox3.TabStop = False ' @@ -1489,9 +1491,9 @@ ' 'Label15 ' + resources.ApplyResources(Me.Label15, "Label15") Me.Label15.BackColor = System.Drawing.SystemColors.ActiveCaption Me.Label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - resources.ApplyResources(Me.Label15, "Label15") Me.Label15.Name = "Label15" ' 'BrowserPathText @@ -1530,6 +1532,7 @@ ' 'PreviewPanel ' + resources.ApplyResources(Me.PreviewPanel, "PreviewPanel") Me.PreviewPanel.Controls.Add(Me.ReplyIconStateCombo) Me.PreviewPanel.Controls.Add(Me.Label72) Me.PreviewPanel.Controls.Add(Me.ChkNewMentionsBlink) @@ -1547,15 +1550,14 @@ Me.PreviewPanel.Controls.Add(Me.cmbNameBalloon) Me.PreviewPanel.Controls.Add(Me.CheckDispUsername) Me.PreviewPanel.Controls.Add(Me.CheckBox3) - resources.ApplyResources(Me.PreviewPanel, "PreviewPanel") Me.PreviewPanel.Name = "PreviewPanel" ' 'ReplyIconStateCombo ' + resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") Me.ReplyIconStateCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ReplyIconStateCombo.FormattingEnabled = True Me.ReplyIconStateCombo.Items.AddRange(New Object() {resources.GetString("ReplyIconStateCombo.Items"), resources.GetString("ReplyIconStateCombo.Items1"), resources.GetString("ReplyIconStateCombo.Items2")}) - resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") Me.ReplyIconStateCombo.Name = "ReplyIconStateCombo" ' 'Label72 @@ -1590,10 +1592,10 @@ ' 'LanguageCombo ' + resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") Me.LanguageCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.LanguageCombo.FormattingEnabled = True Me.LanguageCombo.Items.AddRange(New Object() {resources.GetString("LanguageCombo.Items"), resources.GetString("LanguageCombo.Items1"), resources.GetString("LanguageCombo.Items2"), resources.GetString("LanguageCombo.Items3")}) - resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") Me.LanguageCombo.Name = "LanguageCombo" ' 'Label13 @@ -1626,10 +1628,10 @@ ' 'ComboDispTitle ' + resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") Me.ComboDispTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboDispTitle.FormattingEnabled = True Me.ComboDispTitle.Items.AddRange(New Object() {resources.GetString("ComboDispTitle.Items"), resources.GetString("ComboDispTitle.Items1"), resources.GetString("ComboDispTitle.Items2"), resources.GetString("ComboDispTitle.Items3"), resources.GetString("ComboDispTitle.Items4"), resources.GetString("ComboDispTitle.Items5"), resources.GetString("ComboDispTitle.Items6"), resources.GetString("ComboDispTitle.Items7")}) - resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") Me.ComboDispTitle.Name = "ComboDispTitle" ' 'Label45 @@ -1639,10 +1641,10 @@ ' 'cmbNameBalloon ' + resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") Me.cmbNameBalloon.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.cmbNameBalloon.FormattingEnabled = True Me.cmbNameBalloon.Items.AddRange(New Object() {resources.GetString("cmbNameBalloon.Items"), resources.GetString("cmbNameBalloon.Items1"), resources.GetString("cmbNameBalloon.Items2")}) - resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") Me.cmbNameBalloon.Name = "cmbNameBalloon" ' 'CheckDispUsername @@ -1659,16 +1661,16 @@ ' 'Cancel ' + resources.ApplyResources(Me.Cancel, "Cancel") Me.Cancel.CausesValidation = False Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel - resources.ApplyResources(Me.Cancel, "Cancel") Me.Cancel.Name = "Cancel" Me.Cancel.UseVisualStyleBackColor = True ' 'Save ' + resources.ApplyResources(Me.Save, "Save") Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK - resources.ApplyResources(Me.Save, "Save") Me.Save.Name = "Save" Me.Save.UseVisualStyleBackColor = True ' Modified: trunk/Tween/AppendSettingDialog.en.resx =================================================================== --- trunk/Tween/AppendSettingDialog.en.resx 2010-12-21 11:03:18 UTC (rev 1236) +++ trunk/Tween/AppendSettingDialog.en.resx 2010-12-21 11:52:03 UTC (rev 1237) @@ -117,85 +117,131 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 56, 12 + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQwAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wCWNoaWxkcmVuMQljaGlsZHJlbjIJY2hpbGRyZW4zAQEAAAEAAQAEBAQEAQgICB1TeXN0ZW0u + V2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUCAAAA + HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlAgAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVl + Tm9kZQIAAAACAAAABgMAAAAFQmFzaWMGBAAAAAlCYXNlZE5vZGUA/////wYFAAAAAP////8JBQAAAAQA + AAAJBgAAAAkHAAAACQgAAAAJCQAAAAUGAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAA + AARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4 + EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3VudAEBAAABAAEAAQgICAIAAAAGCgAAABRQZXJpb2RzIGZv + ciBSRVNUIEFwaQYLAAAAClBlcmlvZE5vZGUA/////wkFAAAA/////wkFAAAAAAAAAAUHAAAAHVN5c3Rl + bS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdlSW5kZXgI + SW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3VudAEBAAAB + AAEAAQgICAIAAAAGDQAAAAdTdGFydHVwBg4AAAALU3RhcnRVcE5vZGUA/////wkFAAAA/////wkFAAAA + AAAAAAUIAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVj + a2VkCkltYWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkK + Q2hpbGRDb3VudAEBAAABAAEAAQgICAIAAAAGEAAAAAZDb3VudHMGEQAAAAxHZXRDb3VudE5vZGUA//// + /wkFAAAA/////wkFAAAAAAAAAAUJAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARU + ZXh0BE5hbWUJSXNDaGVja2VkCkltYWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNl + bGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3VudAEBAAABAAEAAQgICAIAAAAGEwAAAApVc2VyU3RyZWFtBhQA + AAAOVXNlclN0cmVhbU5vZGUA/////wkFAAAA/////wkFAAAAAAAAAAs= + - - Username + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAIQmVoYXZpb3IGBAAAAApBY3Rpb25Ob2RlAP////8GBQAAAAD/////CQUAAAABAAAACQYAAAAFBgAA + AB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFn + ZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291 + bnQBAQAAAQABAAEICAgCAAAABgcAAAAKUG9zdCB0d2VldAYIAAAADFR3ZWV0QWN0Tm9kZQD/////CQUA + AAD/////CQUAAAAAAAAACw== + - - 54, 12 + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAHRGlzcGxheQYEAAAAC1ByZXZpZXdOb2RlAP////8GBQAAAAD/////CQUAAAABAAAACQYAAAAFBgAA + AB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFn + ZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291 + bnQBAQAAAQABAAEICAgCAAAABgcAAAAFTGlzdHMGCAAAAAxUd2VldFBydk5vZGUA/////wkFAAAA//// + /wkFAAAAAAAAAAs= + - - Password + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAFRm9udHMGBAAAAAhGb250Tm9kZQD/////BgUAAAAA/////wkFAAAAAQAAAAkGAAAABQYAAAAdU3lz + dGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRl + eAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEA + AAEAAQABCAgIAgAAAAYHAAAAC0JhY2tncm91bmRzBggAAAAJRm9udE5vZGUyAP////8JBQAAAP////8J + BQAAAAAAAAAL + - - Cancel + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAKQ29ubmVjdGlvbgYEAAAADkNvbm5lY3Rpb25Ob2RlAP////8GBQAAAAD/////CQUAAAABAAAACQYA + AAAFBgAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tl + ZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNo + aWxkQ291bnQBAQAAAQABAAEICAgCAAAABgcAAAAFUHJveHkGCAAAAAlQcm94eU5vZGUA/////wkFAAAA + /////wkFAAAAAAAAAAs= + - - 170, 12 + + + 50, 12 - - Timeline Fetching Interval (sec.) + + Post key - - 144, 12 + + 239, 16 - - DM Fetching Interval (sec.) + + Bypass confirm dialog at posting Retweet - - 135, 12 - - - First-time Reading Posts - - - 81, 16 - - - Make Read - - - 162, 12 - - - Icon size in List (16 in default) - 38, 12 Footer - - 58, 16 + + 151, 16 - - Enable + + Use Default [TWNvNNN] - - 42, 12 + + 149, 12 - - Sounds + + Primary URLshorten service - - Sounds will play when you enable this option and set sound file for each tabs. + + 145, 16 - - 58, 16 + + Resolve shortend URLs - - Enable + + 205, 16 - - 145, 12 + + Auto shorten Urls in posting status - - Colorize One-way following - Fore... @@ -214,24 +260,6 @@ Details of Tweet(Link) - - Font... - - - 97, 12 - - - Font of input field - - - Back... - - - 169, 12 - - - Backcolor of focused input field - Font&&Fore... @@ -241,15 +269,6 @@ Unread Tweet - - Back... - - - 78, 12 - - - Replied Tweet - Back... @@ -259,60 +278,6 @@ Backcolor of Details - - Back... - - - 90, 12 - - - Backcolor of list - - - Back... - - - 114, 12 - - - Replied User's Tweet - - - Back... - - - 137, 12 - - - Replies for Selected User - - - Back... - - - 120, 12 - - - Selected User's Tweet - - - Back... - - - 84, 12 - - - Replies for You - - - Back... - - - 89, 12 - - - Your Own Tweet - Font&&Fore... @@ -352,189 +317,180 @@ Font && Color - - None + + 170, 12 - - User ID + + Timeline Fetching Interval (sec.) - - Nickname + + Recalculation - - 103, 12 + + 358, 12 - - Username in popup + + Because "Post && fetch" is enabled, the API for each post consumed. - - 188, 16 + + 150, 12 - - Use Recommended [TWNvNNN] + + Lists Fetching Interval (sec) - - 105, 12 + + 149, 12 - - Date Format in List + + Public Search Interval (sec.) - - 58, 16 + + 156, 12 - - Enable + + Reply Fetching Interval (sec.) - - 139, 12 + + 88, 16 - - Show Icon in Details Pane + + Post && fetch - - 117, 12 + + 150, 16 - - Tweet with Ctrl-Enter + + Enable Auto-Adjustment - - None + + 144, 12 - - 89, 12 + + DM Fetching Interval (sec.) - - Manage Reading + + 137, 12 - - 58, 16 + + Replies for Selected User - - Enable + + 114, 12 - - 136, 12 + + Replied User's Tweet - - Make Read when updated + + 90, 12 - - 58, 16 + + Backcolor of list - - Enable + + 125, 12 - - 136, 12 + + Favorites/PublicSearch - - Exit when Closed Window + + 98, 12 - - 58, 16 + + Get more/Starting - - Enable + + 188, 16 - - 118, 12 + + Enable to edit 'Count' parameter - - Iconize when Minimize + + 226, 12 - - 58, 16 + + Getting number of tweets/mentions in API - - Enable + + 97, 12 - - 88, 12 + + Font of input field - - Path to Browser + + 169, 12 - - 58, 16 + + Backcolor of focused input field - - Enable + + 78, 12 - - 141, 12 + + Replied Tweet - - Show Username in Popups + + 135, 12 - - 65, 12 + + First-time Reading Posts - - Title format + + 42, 12 - - None + + Sounds - - Program Version + + 145, 12 - - Latest your post + + Colorize One-way following - - unread @reply items + + 120, 12 - - unread items + + Selected User's Tweet - - unread items(unread @reply items) + + 84, 12 - - unread items/all items + + Replies for You - - Count of Status/Follow/Follower + + 89, 12 - - 115, 12 + + Your Own Tweet - - Apply after restarting + + Font... - - 117, 12 + + Back... - - Refresh Interval (sec) + + Back... - - 130, 12 + + Back... - - Auto connect in Starting + + Back... - - 58, 16 + + Back... - - Enable + + Back... - - Recalculation + + Back... - - 358, 12 + + Back... - - Because "Post && fetch" is enabled, the API for each post consumed. - - - 150, 12 - - - Lists Fetching Interval (sec) - 70, 12 @@ -553,266 +509,286 @@ Auth - - 149, 12 + + 56, 12 - - Public Search Interval (sec.) + + Username - - 156, 12 + + 54, 12 - - Reply Fetching Interval (sec.) + + Password - - 88, 16 + + 320, 12 - - Post && fetch + + Keep credential empty if the proxy server don't need to log in - - 226, 12 + + 73, 16 - - Getting number of tweets/mentions in API + + Don't Use - - 131, 12 + + 54, 12 - - Get User List in Starting + + Pass&word - - 58, 16 + + 200, 16 - - Enable + + Refer Settings of Internet Explorer - - 158, 12 + + 80, 16 - - Check for Updates in Starting + + Use Below: - - 58, 16 + + 56, 12 - - Enable + + &Username - - 150, 16 + + 62, 12 - - Enable Auto-Adjustment + + Pro&xy Host - - 106, 12 + + 26, 12 - - Get favs in Starting + + &Port - - 58, 16 + + 196, 16 - - Enable + + Shorten nicovideo urls by nico.ms - - Basic + + 107, 12 - - 62, 16 + + URI of your Outputz - - Disable + + 86, 12 - - 89, 12 + + Your secret key - - Retweet confirm + + 87, 16 - - 58, 16 + + Use Outputz - - Enable + + 241, 16 - - Hotkey + + Enable to select BASIC auth in 'Basic' tab - - 11, 439 + + 130, 16 - - 142, 12 + + Use HTTPS Protocol - - Use Input #tag supplement + + 371, 12 - - 173, 438 + + ※Adjust Connection timeout if the error of timeout happens frequently. - + + 130, 12 + + + Connection timeout(sec) + + 58, 16 - + Enable - - 11, 421 + + 117, 12 - - 139, 12 + + Refresh Interval (sec) - - Use Input @ID supplement + + 81, 16 - - 173, 420 + + Make Read - + 58, 16 - + Enable - - 149, 12 + + 58, 16 - - Primary URLshorten service + + Enable - + 58, 16 - + Enable - - 103, 12 + + 115, 12 - - Auto shorten URLs + + Apply after restarting - - - False + + 105, 12 - - - NoControl + + Date Format in List - - 382, 28 + + 162, 12 - - Refetch tweets and verify whether marked favorites. This option causes traffic incleasement. + + Icon size in List (16 in default) - - 138, 12 + + None - - Marking Favorites Strictly + + 58, 16 - + + Enable + + + 51, 16 + + + Show + + 58, 16 - + Enable - + 58, 16 - + Enable - - 136, 12 + + 58, 16 - - Resolve Shortening URLs + + Enable - - Open... + + 58, 16 - - Behavior + + Enable - - 124, 12 + + Hotkey - - Disp Picture Thumbnail + + 173, 438 - + 58, 16 - + Enable - + + 173, 420 + + 58, 16 - + Enable - - 81, 12 + + + False - - Always on Top + + 382, 28 - - 101, 12 + + Refetch tweets and verify whether marked favorites. This option causes traffic incleasement. - - Lock Sorting Order - - + 58, 16 - + Enable - - 57, 12 + + Open... - - Show Grid + + 58, 16 - - 51, 16 + + Enable - - Show + + Sounds will play when you enable this option and set sound file for each tabs. - - 150, 12 + + 58, 16 - - Font in Detail Pane(for AA) + + Enable - - 81, 16 + + 88, 12 - - Monospace + + Path to Browser - - 81, 12 + + 58, 16 - - Read own post + + Enable - + 58, 16 - + Enable + + 58, 16 + + + Enable + Don't notify @@ -828,18 +804,6 @@ Tasktray icon with unread mentions - - 130, 12 - - - Blink with new mentions - - - 90, 12 - - - Show icon in tab - 58, 16 @@ -852,156 +816,90 @@ Show - - 148, 12 + + 58, 16 - - Limit the condition of popup + + Enable - - 193, 16 - - - only at the minimization and icon - - - 162, 12 - - - Unread styles(Font&&Forecolor) - - + 58, 16 - + Enable - - View + + 81, 16 - - Fonts & Colors + + Monospace - - 241, 16 + + 193, 16 - - Enable to select BASIC auth in 'Basic' tab + + only at the minimization and icon - - 130, 16 + + 103, 12 - - Use HTTPS Protocol + + Username in popup - - 371, 12 + + None - - ※Adjust Connection timeout if the error of timeout happens frequently. + + Program Version - - 130, 12 + + Latest your post - - Connection timeout(sec) + + unread @reply items - - 320, 12 + + unread items - - Keep credential empty if the proxy server don't need to log in + + unread items(unread @reply items) - - 54, 12 + + unread items/all items - - Pass&word + + Count of Status/Follow/Follower - - 56, 12 + + 65, 12 - - &Username + + Title format - - 26, 12 + + None - - &Port + + User ID - - 62, 12 + + Nickname - - Pro&xy Host + + 58, 16 - - 80, 16 + + Enable - - Use Below: + + 58, 16 - - 200, 16 + + Enable - - Refer Settings of Internet Explorer + + Cancel - - 73, 16 - - - Don't Use - - - Proxy Server - - - Connection - - - 125, 12 - - - Favorites/PublicSearch - - - 98, 12 - - - Get more/Starting - - - 188, 16 - - - Enable to edit 'Count' parameter - - - 196, 16 - - - Shorten nicovideo urls by nico.ms - - - 107, 12 - - - URI of your Outputz - - - 86, 12 - - - Your secret key - - - 87, 16 - - - Use Outputz - Settings Modified: trunk/Tween/AppendSettingDialog.resx =================================================================== --- trunk/Tween/AppendSettingDialog.resx 2010-12-21 11:03:18 UTC (rev 1236) +++ trunk/Tween/AppendSettingDialog.resx 2010-12-21 11:52:03 UTC (rev 1237) @@ -117,6248 +117,6248 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Top + + search.twitter.com - - 0, 0 + + 205, 242 - - Fill + + + True - - 0, 0 + + none - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQwAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wCWNoaWxkcmVuMQljaGlsZHJlbjIJY2hpbGRyZW4zAQEAAAEAAQAEBAQEAQgICB1TeXN0ZW0u - V2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUCAAAA - HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlAgAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVl - Tm9kZQIAAAACAAAABgMAAAAG5Z+65pysBgQAAAAJQmFzZWROb2RlAP////8GBQAAAAD/////CQUAAAAE - AAAACQYAAAAJBwAAAAkIAAAACQkAAAAFBgAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgA - AAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRl - eBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAABgoAAAAM5pu05paw6ZaT - 6ZqUBgsAAAAKUGVyaW9kTm9kZQD/////CQUAAAD/////CQUAAAAAAAAABQcAAAAdU3lzdGVtLldpbmRv - d3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtl - eRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgI - AgAAAAYNAAAAEui1t+WLleaZguOBruWLleS9nAYOAAAAC1N0YXJ0VXBOb2RlAP////8JBQAAAP////8J - BQAAAAAAAAAFCAAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlz - Q2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdl - S2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAABhAAAAAM5Y+W5b6X5Lu25pWwBhEAAAAMR2V0Q291 - bnROb2RlAP////8JBQAAAP////8JBQAAAAAAAAAFCQAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVl - Tm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1h - Z2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAABhMAAAAKVXNl - clN0cmVhbQYUAAAADlVzZXJTdHJlYW1Ob2RlAP////8JBQAAAP////8JBQAAAAAAAAAL - + + + NoControl - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAG5YuV5L2cBgQAAAAKQWN0aW9uTm9kZQD/////BgUAAAAA/////wkFAAAAAQAAAAkGAAAABQYAAAAd - U3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJ - bmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50 - AQEAAAEAAQABCAgIAgAAAAYHAAAAFeODhOOCpOODvOODiOOBruWLleS9nAYIAAAADFR3ZWV0QWN0Tm9k - ZQD/////CQUAAAD/////CQUAAAAAAAAACw== - + + 51 - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAG6KGo56S6BgQAAAALUHJldmlld05vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUGAAAA - HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdl - SW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3Vu - dAEBAAABAAEAAQgICAIAAAAGBwAAABLjg6rjgrnjg4jjga7ooajnpLoGCAAAAAxUd2VldFBydk5vZGUA - /////wkFAAAA/////wkFAAAAAAAAAAs= - + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAM44OV44Kp44Oz44OIBgQAAAAIRm9udE5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG - AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt - YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD - b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAA3jg5Xjgqnjg7Pjg4gyBggAAAAJRm9udE5vZGUyAP////8J - BQAAAP////8JBQAAAAAAAAAL - + + 12 - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAG6YCa5L+hBgQAAAAOQ29ubmVjdGlvbk5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG - AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt - YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD - b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAAzjg5fjg63jgq3jgrcGCAAAAAlQcm94eU5vZGUA/////wkF - AAAA/////wkFAAAAAAAAAAs= - + + 100, 16 - - 172, 368 + + 90, 22 - - - 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TreeView1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + OK - - SplitContainer1.Panel1 + + NoControl - - 0 + + 16*16 - - SplitContainer1.Panel1 + + True - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - SplitContainer1 + + 11 - + + PreviewPanel + + + 72 + + + True + + 0 - - 343, 94 + + UserStreamPanel - - 70, 19 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 69 + + 29 - - TextBitlyPw + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetActPanel + + 163, 12 - - 0 + + AuthClearButton - - Enter + + 83, 290 - - Ctrl+Enter - Shift+Enter - - 181, 136 + + 38 - - 246, 20 + + BasedPanel - - 60 + + 9 - - ComboBoxPostKeySelect + + True - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 154, 16 - - TweetActPanel + + False - - 1 + + 70 - - True + + 13 - - NoControl + + 16, 45 - - 19, 139 + + 40 - - 137, 12 + + 背景色 - - 59 + + 16 - - POSTキー(デフォルトEnter) + + Label63 - - Label27 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 57 - - TweetActPanel + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQwAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wCWNoaWxkcmVuMQljaGlsZHJlbjIJY2hpbGRyZW4zAQEAAAEAAQAEBAQEAQgICB1TeXN0ZW0u + V2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUCAAAA + HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlAgAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVl + Tm9kZQIAAAACAAAABgMAAAAG5Z+65pysBgQAAAAJQmFzZWROb2RlAP////8GBQAAAAD/////CQUAAAAE + AAAACQYAAAAJBwAAAAkIAAAACQkAAAAFBgAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgA + AAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRl + eBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAABgoAAAAM5pu05paw6ZaT + 6ZqUBgsAAAAKUGVyaW9kTm9kZQD/////CQUAAAD/////CQUAAAAAAAAABQcAAAAdU3lzdGVtLldpbmRv + d3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtl + eRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgI + AgAAAAYNAAAAEui1t+WLleaZguOBruWLleS9nAYOAAAAC1N0YXJ0VXBOb2RlAP////8JBQAAAP////8J + BQAAAAAAAAAFCAAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlz + Q2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdl + S2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAABhAAAAAM5Y+W5b6X5Lu25pWwBhEAAAAMR2V0Q291 + bnROb2RlAP////8JBQAAAP////8JBQAAAAAAAAAFCQAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVl + Tm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1h + Z2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAABhMAAAAKVXNl + clN0cmVhbQYUAAAADlVzZXJTdHJlYW1Ob2RlAP////8JBQAAAP////8JBQAAAAAAAAAL + - - 2 + + LanguageCombo - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GetPeriodPanel - - 21, 163 + + 16 - - 165, 16 + + 73, 19 - - 62 + + 2 - - 公式RTする際に確認をしない + + 75, 23 - - CheckRetweetNoConfirm + + ConnectionTimeOut - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - TweetActPanel + + True - - 3 + + 199, 20 - - 201, 95 + + cmbNameBalloon - - 71, 19 + + 104, 19 - - 57 + + 10 - - TextBitlyId + + 174, 16 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - TweetActPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 - - - True - - + NoControl - - 20, 211 - - - 107, 12 - 66 - - フッター(文末に付加) + + NoControl - - Label12 + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - TweetActPanel + + 396, 194 - - 5 - - - True - - + NoControl - - 278, 97 + + 自動調整する - - 42, 12 + + 50, 12 - - 58 + + 11 - - APIKey - - - Label77 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetActPanel + + 10 - - 6 - - + True - - NoControl + + Fill - - 182, 211 + + 44 - - 195, 16 + + 398, 166 - - 67 + + tinyurl - - 推奨フッターを使用する[TWNv○○] + + 76 - - CheckUseRecommendStatus + + Favoritesを取得する - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblOWL - - TweetActPanel + + 53, 12 - - 7 + + 93 - - True + + 154, 12 - - NoControl + + 8 - - 179, 97 - - - 16, 12 - - - 56 - - - ID - - - Label76 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetActPanel + + 0, 0 - - 8 + + CheckMonospace - - 182, 233 + + FontPanel2 - - 232, 19 + + 194, 236 - - 68 + + 182, 19 - - StatusText + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 24 - - TweetActPanel + + 1 - - 9 + + 48*48 - - tinyurl + + HotkeyCtrl - - is.gd + + GetPeriodPanel - - twurl.nl + + 12 - - bit.ly + + GroupBox1 - - j.mp + + True - - 181, 71 + + GroupBox5 - - 246, 20 + + 6 - - 55 + + True - - ComboBoxAutoShortUrlFirst + + 33 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 66 - - TweetActPanel + + True - - 10 + + 22, 21 - - True + + Label44 - + NoControl - - 19, 74 + + Win - - 154, 12 + + 398, 116 - - 54 + + True - - URL自動短縮で優先的に使用 + + 8 - - Label71 + + 398, 216 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 TweetActPanel - - 11 + + 12 - - True + + 54 - - NoControl + + Fill - - 22, 21 + + Label45 - - 122, 16 + + tt h:mm - - 51 + + MiddleLeft - - 短縮URLを解決する + + 13, 14 - - CheckTinyURL + + chkGetFav - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + StatusText - - TweetActPanel + + Label8 - - 12 + + lblUnread - - True + + 読み込んだポストを既読にする - - NoControl + + 通知なし - - 22, 42 + + 1 - - 242, 16 + + TweetActPanel - - 53 + + GroupBox3 - - 入力欄のURLを投稿する際に自動で短縮する + + TweetActPanel - - CheckAutoConvertUrl + + 9, 198 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + StartupUserstreamCheck - - TweetActPanel + + 2 - - 13 + + 191, 252 - - Fill + + 172, 368 - - False + + 81, 12 - - 0, 0 + + 3 - - 525, 368 + + api.twitter.com - - 77 + + 62 - - False + + 0 - + + 8 + + + Username + + TweetActPanel - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ComboBoxAutoShortUrlFirst - - SplitContainer1.Panel2 + + MiddleLeft - - 0 + + 12 - - True + + GroupBox5 - - NoControl + + 186, 19 - - 396, 119 + + 1 - - 75, 22 + + 片思いユーザーリストを取得する - - 14 + + 525, 368 - - 文字色 + + 262, 100 - - btnRetweet + + BrowserPathText - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 259, 51 - - GroupBox1 + + ProxyPanel - - 0 + + System.Windows.Forms.FontDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 片思いを色分けして表示する - - 214, 120 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 104, 19 + + 22, 93 - - 13 + + TweetActPanel - - This is sample. + + LabelProxyPort - - MiddleLeft + + AuthStateLabel - - lblRetweet + + 41 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 94, 12 - - GroupBox1 + + 113, 68 - - 1 + + 179, 97 - - True + + OAuth(xAuth) - - NoControl + + 公式RTする際に確認をしない - - 9, 123 + + 10 - - 50, 12 + + 51 - + 12 - - ReTweet + + 157, 16 - - Label80 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 2 - - + True - + NoControl - - 194, 236 + + 発言詳細背景色 - - 90, 22 + + 認証済み - - 51 + + GetCountPanel - - デフォルトに戻す + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ButtonBackToDefaultFontColor + + 136, 20 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 42 - - GroupBox1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + 116, 15 - - True + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 216, 134 - - 396, 169 + + BasedPanel - - 75, 22 + + False - - 20 + + 214, 45 - - 文字色 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnDetailLink + + ChkNewMentionsBlink - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 59 - - GroupBox1 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + English - + NoControl - - 214, 170 + + True - - 104, 19 + + This is sample. - - 19 + + H:mm:ss - - This is sample. + + 259, 185 - - MiddleLeft + + 258, 111 - - lblDetailLink + + 70, 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 138 - - GroupBox1 + + 349, 12 - - 5 + + 41, 134 - - True + + 発言一覧への反映間隔(秒) - + NoControl - - 8, 173 + + ConnectionPanel - - 77, 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18 + + 52 - - 発言詳細リンク - - - Label18 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + ConnectionPanel - - 6 + + 7 - - True - - + NoControl - - 396, 44 + + Label47 - - 75, 22 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - フォント&&色 + + False - - btnUnread + + 16 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - GroupBox1 + + 58, 12 - - 7 + + 278, 97 - - NoControl + + 21 - - 214, 45 + + True - - 104, 19 + + ProxyPanel - - 4 + + 22, 20 - - This is sample. + + GroupBox5 - - MiddleLeft + + TweetActPanel - - lblUnread + + 174, 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox3 - - GroupBox1 + + NoControl - - 8 + + 推奨フッターを使用する[TWNv○○] - - True + + 1 - + + 22, 70 + + NoControl - - 9, 48 + + 9 - - 62, 12 + + CmbDateTimeFormat - - 3 + + 214, 145 - - 未読フォント + + False - - Label20 + + CheckSortOrderLock - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + j.mp - + GroupBox1 - - 9 + + btnTarget - - True + + 34, 19 - - NoControl + + False - - 396, 194 + + This is sample. - - 75, 22 - - + 23 - - 背景色 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnDetailBack + + 68 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 525, 368 - - GroupBox1 - - - 10 - - + NoControl - - 214, 195 + + 初回の更新 - - 104, 19 + + その人への@返信 - - 22 + + 自分の発言 - - This is sample. + + ActionPanel - - MiddleLeft + + 14 - - lblDetailBackcolor + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - GroupBox1 + + ReplyIconStateCombo - - 11 + + ConnectionPanel - - True + + PreviewPanel - - NoControl + + 2 - - 9, 198 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 89, 12 + + 131, 12 - - 21 + + OneWayLv - - 発言詳細背景色 + + NoControl - - Label37 + + タイトルバーとツールチップにユーザー名を表示 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label67 - - GroupBox1 + + True - - 12 + + 9 - - True + + 11 - - NoControl + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 396, 144 + + CheckNicoms - - 75, 22 + + 20 - - 17 + + H:mm:ss yy/M/d - - フォント&&色 + + 113, 54 - - btnDetail + + MiddleLeft - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - GroupBox1 + + Label34 - - 13 + + 0, 0 - - NoControl + + 22, 18 - - 214, 145 + + 157, 16 - - 104, 19 + + 58, 19 - - 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - This is sample. + + (なし) - - MiddleLeft + + OS Default - - lblDetail + + 65, 19 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + LabelProxyPassword - - GroupBox1 + + 3 - - 14 + + 未読Mentions通知アイコン - - True + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9, 148 + + False - - 77, 12 + + TweetActPanel - - 15 + + ButtonBackToDefaultFontColor - - 発言詳細文字 + + 5 - - Label26 + + GetCountPanel - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + 33, 43 + + GroupBox1 - - 15 + + SplitContainer1 - - True + + 408, 22 - + NoControl - - 396, 94 + + 5 - - 75, 22 + + 9 - - 11 + + FavoritesTextCountApi - - 文字色 + + 113, 20 - - btnOWL + + 186, 19 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox3 - - GroupBox1 + + Label49 - - 16 + + 75, 22 - - NoControl + + 13 - - 214, 95 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 104, 19 + + 46 - - 10 + + 22, 22 - - This is sample. + + NoControl - - MiddleLeft + + True - - lblOWL + + フッター(文末に付加) - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBox1 + + TweetPrvPanel - - 17 + + 4 - - True + + 71 - - NoControl + + 入力欄アクティブ時背景色 - - 9, 98 + + 102, 12 - - 63, 12 + + True - - 9 + + True - - 片思い発言 + + NoControl - - Label24 + + False - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + ProxyPanel - - 18 + + その発言の@先の人の発言 - + True - + NoControl - - 396, 69 + + NoControl - - 75, 22 + + TweetPrvPanel - - 8 + + CheckTinyURL - - 文字色 + + GetCountPanel - - btnFav + + 60, 12 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBox1 + + 5 - - 19 + + 7 - - NoControl + + 5 - - 214, 70 + + CheckMinimizeToTray - - 104, 19 + + False - - 7 + + GetPeriodPanel - - This is sample. + + GroupBox3 - - MiddleLeft + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lblFav + + False - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - GroupBox1 + + 4 - - 20 - - + True - + + UserstreamPeriod + + NoControl - - 9, 73 + + MiddleLeft - - 48, 12 + + 43 - - 6 + + ConnectionPanel - - Fav発言 - - - Label22 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + 11 - - 21 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + True - - NoControl + + 99, 12 - - 396, 19 + + 20 - - 75, 22 + + 22 - - 2 + + 183, 16 - - フォント&&色 + + 6 - - btnListFont - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 22 - - + NoControl - - 214, 20 + + True - - 104, 19 + + UserStreamPanel - - 1 + + 0, 0 - - This is sample. + + True - - MiddleLeft + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lblListFont + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG6YCa5L+hBgQAAAAOQ29ubmVjdGlvbk5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG + AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt + YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD + b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAAzjg5fjg63jgq3jgrcGCAAAAAlQcm94eU5vZGUA/////wkF + AAAA/////wkFAAAAAAAAAAs= + - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + btnAtSelf - - 23 + + GroupBox5 - - True + + 170, 16 - - NoControl + + chkTabIconDisp - - 9, 23 + + Label69 - - 62, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + Fill - - リストフォント + + 102, 19 - - Label61 + + 69 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 認証する - - GroupBox1 + + 0 - - 24 + + 48, 16 - - 22, 18 + + LabelPostAndGet - - 484, 267 + + 134, 12 - - 1 + + GroupBox5 - - フォント&色設定 + + CheckShowGrid - - GroupBox1 + + 525, 368 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - FontPanel - - + 0 - - Fill + + GroupBox5 - - False + + True - - 0, 0 + + lblDetail - - 525, 368 + + 13 - - 51 + + リストフォント - - False + + 117, 12 - - FontPanel + + 9 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + キャンセル - - SplitContainer1.Panel2 + + NoControl - - 1 + + BasedPanel - - 258, 21 + + NoControl - - 65, 19 + + 11 - - 29 + + btnAtTo - - TimelinePeriod + + 背景色 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 15 - - GetPeriodPanel + + GroupBox1 - - 0 - - + True - - NoControl + + 5 - - 22, 24 + + CheckRetweetNoConfirm - - 130, 12 + + 2 - - 28 + + 1 - - タイムライン更新間隔(秒) + + 217, 90 - - Label3 + + 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22 - - GetPeriodPanel + + 5 - - 1 + + SplitContainer1.Panel2 - + NoControl - - 122, 216 + + Fill - - 108, 23 + + TweetPrvPanel - - 41 + + CheckAutoConvertUrl - - 再計算 + + 通信にHTTPSを使用する - - ButtonApiCalc + + 文字色 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + 305, 64 - - True + + ユーザー名 - + + 104, 19 + + + 25 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 29, 195 + + 有効 - - 285, 12 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 42 + + 53 - - 投稿時取得が有効のため、投稿のたびにAPIを消費します。 + + SplitContainer1.Panel2 - - LabelPostAndGet + + GetPeriodPanel - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + 214, 145 - - 3 + + Disable - - True - - + NoControl - - 29, 174 + + 22, 263 - - 23, 12 + + ProxyPanel - - 40 + + FirstTextCountApi - - 999 + + NoControl - - MiddleRight + + 343, 16 - - LabelApiUsing + + 復活の呪文 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TweetActPanel - - GetPeriodPanel + + 122, 16 - - 4 + + TreeView1 - + + btnAtTarget + + True - - NoControl + + 1 - - 22, 138 + + 214, 19 - - 102, 12 + + PreviewPanel - - 38 + + False - - Lists更新間隔(秒) + + 87, 12 - - Label33 + + NoControl - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + 216, 106 - - 258, 135 + + 7 - - 65, 19 + + GroupBox1 - - 39 + + 44 - - ListsPeriod + + 2 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 30 - - GetPeriodPanel + + NoControl - - 6 + + 343, 94 - + + 125, 19 + + + lblRetweet + + + 3 + + + 22, 90 + + + AuthBasicRadio + + True - + NoControl - - 22, 114 + + 0 - - 137, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 36 + + 22, 42 - - Twitter検索更新間隔(秒) + + 102, 19 - - Label7 + + 623, 374 - + + 75, 22 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + 74, 110 + + 396, 169 + 7 - - 258, 111 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 65, 19 + + 6 - - 37 + + Twitter検索更新間隔(秒) - - PubSearchPeriod + + 6 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 182, 211 - - GetPeriodPanel + + NoControl - - 8 + + GroupBox1 - + True - - NoControl + + GroupBox1 - - 22, 66 + + GroupBox1 - - 123, 12 + + btnUnread - - 32 + + 14 - - Mentions更新間隔(秒) + + 3 - - Label69 + + GroupBox3 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleLeft - - GetPeriodPanel + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 258, 63 + + Alt - - 65, 19 + + 184, 160 - - 33 + + 47 - - ReplyPeriod + + 35 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 251, 43 - - GetPeriodPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 - - - True - - + NoControl - - 33, 43 + + 2 - - 84, 16 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 30 + + MiddleRight - - 投稿時取得 - CheckPostAndGet - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - 11 - - + True - - NoControl + + 1 - - 251, 43 - 91, 16 - - 31 + + 214, 20 - - 自動調整する + + 145, 16 - - False + + TweetActPanel - - CheckPeriodAdjust + + 52 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 12 + + 4 - - True + + 45 - - NoControl + + 17 - - 22, 90 + + Fill - - 94, 12 + + 398, 141 - - 34 + + 15 - - DM更新間隔(秒) + + 41 - - Label5 + + 投稿時取得が有効のため、投稿のたびにAPIを消費します。 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GetPeriodPanel + + 2 - - 13 + + 165, 16 - - 258, 87 + + LabelProxyUser - - 65, 19 + + GroupBox5 - - 35 + + GroupBox1 - - DMPeriod - - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + 108, 23 - + + Password + + + 0 + + 14 - - Fill + + 104, 19 - - False + + NoControl - - 0, 0 + + True - - 525, 368 + + 一般発言 - - 1 + + ブラウザパス - - False + + 100 - - GetPeriodPanel + + 8 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GetCountPanel - - SplitContainer1.Panel2 + + 17 - - 2 + + 101 - - True + + 96 - - 22, 186 + + ConnectionPanel - - 117, 12 + + 214, 70 - - 52 + + 82 - - PublicSearchの取得数 + + 0 - - Label30 + + 999 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetCountPanel + + M/d H:mm - - 0 + + NoControl - - True + + NoControl - - 22, 136 + + SplitContainer1.Panel1 - - 63, 12 + + GroupBox1 - - 51 + + 92 - - 初回の更新 + + lblInputBackcolor - - Label28 + + False - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GetCountPanel + + MiddleLeft - - 1 - - + True - - 22, 54 + + 11 - - 87, 12 + + PreviewPanel - - 50 + + 22, 178 - - Mentions取得数 + + 3 - - Label19 + + 8 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - GetCountPanel + + 0 - - 2 + + TweetActPanel - - 259, 159 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 58, 19 + + サウンドを再生する - - 48 + + 24 - - FavoritesTextCountApi + + 44 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 525, 368 - - GetCountPanel + + 1 - - 3 + + 99, 12 - - 259, 185 + + 28 - - 58, 19 + + 75, 22 - - 49 + + ConnectionPanel - - SearchTextCountApi + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetCountPanel + + True - - 4 + + $this - + True - + + 53, 12 + + + 49 + + NoControl - - 22, 160 + + 42, 12 - - 99, 12 + + 9, 148 - - 47 + + System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Favoritesの取得数 + + 23 - - Label66 + + 259, 159 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 26 - - GetCountPanel + + 0, 0 - - 5 + + ColorDialog1 - - 259, 135 + + フォント&&色 - - 58, 19 + + 画像リンクがあった場合にサムネイルを表示する - - 46 + + 64 - - FirstTextCountApi - - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetCountPanel + + NoControl - - 6 + + 0 - - 259, 112 + + MiddleLeft - - 58, 19 + + 22, 293 - - 45 + + 17 - - GetMoreTextCountApi + + 1 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GetPeriodPanel - - GetCountPanel + + 1 - - 7 - - + True - + + 541, 374 + + + アウトプット先のURL + + NoControl - - 22, 112 + + GroupBox1 - - 79, 12 + + 130, 12 - - 44 + + 22, 160 - - 前データの更新 + + 22, 86 - - Label53 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 214, 120 - - GetCountPanel - 8 - - True + + RadioProxyIE - - NoControl + + BasedPanel - - 22, 86 + + ConnectionPanel - - 247, 16 + + 6 - - 43 + + TweetPrvPanel - - 次の項目の更新時の取得数を個別に設定する + + ActionPanel - - UseChangeGetCount + + CheckPeriodAdjust - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 65 - - GetCountPanel + + True - - 9 + + 6 - - 259, 51 + + 96, 19 - - 58, 19 + + ProxyPanel - - 41 + + 4 - - TextCountApiReply + + 125, 19 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetCountPanel + + NoControl - - 10 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True - - + NoControl - - 22, 24 + + btnFav - - 77, 12 + + False - - 39 + + 14 - - 標準取得件数 + + 新着バルーンのユーザー名 - - Label67 + + PublicSearchの取得数 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 340, 16 - + GetCountPanel - - 11 + + HotkeyCheck - - 259, 21 + + Shift - - 58, 19 + + 入力欄フォント - - 40 + + True - - TextCountApi + + NoControl - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetCountPanel + + 3 - - 12 + + 216, 67 - - Fill + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + GroupBox1 - - 0, 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 525, 368 + + 62, 12 - - 44 + + True - - False + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetCountPanel + + Simplified Chinese - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - SplitContainer1.Panel2 + + 13 - - 3 + + Label80 - - True + + 12 - + + M/d tt h:mm:ss + + + 5 + + NoControl - - 16, 220 + + GetCountPanel - - 74, 12 + + 22, 118 - - 78 + + NoControl - - 入力欄フォント + + Label14 - - Label65 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + True - - 0 + + 0, 0 - + + 4 + + True - - NoControl + + True - - 16, 195 + + 22, 22 - - 131, 12 + + Label53 - - 77 + + 58, 19 - - 入力欄アクティブ時背景色 + + Label81 - - Label52 + + 2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblDetailLink - - GroupBox5 + + 246, 20 - - 1 + + 214, 70 - - True + + 305, 126 - - NoControl + + 11 - - 16, 145 + + ConnectionPanel - - 102, 12 + + Label30 - - 75 + + 68 - - その発言の@先発言 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label49 + + Ctrl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + 84, 16 - - 2 + + 22, 229 - - True + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 16, 170 + + 18 - - 53, 12 + + 22, 203 - - 76 + + 525, 368 - - 一般発言 + + 215, 88 - - Label9 + + Label31 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9, 23 - - GroupBox5 + + 56 - - 3 + + 166, 16 - - True - - + NoControl - - 16, 120 + + 22, 103 - - 134, 12 + + 75, 22 - - 74 + + System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - その発言の@先の人の発言 + + 6, 12 - - Label14 + + 22 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 45 - - GroupBox5 + + 17 - - 4 + + 0 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + Label36 - - 16, 95 + + Label77 - - 88, 12 + + GroupBox1 - - 73 + + This is sample. - - その人への@返信 + + 6 - - Label16 + + ConnectionPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - + + GetPeriodPanel + + GroupBox5 - - 5 + + Label10 - - True + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + ActionPanel - - 16, 70 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 70, 12 + + 195, 16 - - 72 + + 168, 15 - - その人の発言 + + M/d tt h:mm - - Label32 + + CheckHashSupple - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label37 - - GroupBox5 + + H:mm:ss M/d - - 6 + + 143, 107 - - True + + lblAtTarget - - NoControl + + 143, 16 - - 16, 45 + + 22, 21 - - 81, 12 + + 396, 94 - - 71 + + False - - 自分への@返信 + + 7 - - Label34 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBox5 + + 256, 16 - - 7 + + 文字色 - - True + + 77, 19 - - NoControl + + 15 - - 16, 20 + + 5 - - 63, 12 + + 214, 170 - - 70 + + GroupBox5 - - 自分の発言 + + 22, 71 - - Label36 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + 9 - + + SearchTextCountApi + + True - + + 162, 16 + + NoControl - - 398, 216 + + GroupBox1 - - 75, 22 + + NoControl - - 69 + + 19 - - フォント&&色 + + 113, 12 - - btnInputFont + + 247, 16 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + GroupBox5 - - 9 + + Label83 - + + 8 + + + 23 + + True - + + Label32 + + + is.gd + + NoControl - - 398, 191 + + 未読ポストのフォントと色を変更する(低速) - + + ProxyPanel + + + 22, 191 + + 75, 22 - - 68 + + 19 - - 背景色 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnInputBackcolor + + 259, 21 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 66 - - GroupBox5 + + True 10 - - True + + 39 - - NoControl + + Label15 - - 398, 141 + + Mentions更新間隔(秒) - - 75, 22 + + 15 - - 66 + + MiddleLeft - - 背景色 + + 22, 24 - - btnAtTo + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label33 - - GroupBox5 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + 259, 112 - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 9, 98 + + True - - NoControl + + 48, 16 - - 398, 166 + + 新着時に未読をクリアする - - 75, 22 + + 7 - - 67 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 背景色 + + 2 - - btnListBack + + 69, 15 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + This is sample. - - GroupBox5 + + MiddleLeft - + 12 - - True + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 投稿時取得 - - 398, 116 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 75, 22 + + 16 - - 65 + + StartupPanel - - 背景色 + + NoControl - - btnAtFromTarget + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAM44OV44Kp44Oz44OIBgQAAAAIRm9udE5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG + AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt + YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD + b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAA3jg5Xjgqnjg7Pjg4gyBggAAAAJRm9udE5vZGUyAP////8J + BQAAAP////8JBQAAAAAAAAAL + - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PreviewPanel - - GroupBox5 + + BasedPanel - - 13 - - - True - - + NoControl - - 398, 91 + + btnDetailBack - - 75, 22 + + Label12 - - 64 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 背景色 + + 16, 95 - - btnAtTarget + + btnListFont - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + HotkeyShift - - GroupBox5 + + True - - 14 + + True - + True - + + True + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 58 + + NoControl - - 398, 66 + + 22, 51 - - 75, 22 + + TweetActPanel - - 63 + + 104 - - 背景色 + + 1 - - btnTarget + + 9, 123 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - GroupBox5 + + 286, 107 - - 15 + + 258, 21 - - True + + GetPeriodPanel - + NoControl - - 398, 41 + + False - - 75, 22 + + 161, 16 - - 62 + + This is sample. - - 背景色 + + CheckStartupFollowers - - btnAtSelf + + UseChangeGetCount - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - GroupBox5 + + Fill - - 16 + + False - + True - + NoControl - - 398, 16 + + TweetPrvPanel - - 75, 22 + + 8 - - 61 + + 22, 45 - - 背景色 + + True - - btnSelf + + 23 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ActionPanel - - GroupBox5 + + Label11 - - 17 + + 22, 145 - - NoControl + + 21 - - 214, 220 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 19 + + True - - 60 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - This is sample. + + 2 - - MiddleLeft + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lblInputFont + + 58 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - GroupBox5 + + True - - 18 + + True - - NoControl + + SplitContainer1.Panel2 - - 214, 195 + + PlaySnd - - 102, 19 + + TimelinePeriod - - 59 + + Label16 - - This is sample. + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleLeft + + 4 - - lblInputBackcolor + + 19, 282 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - GroupBox5 + + 7 - - 19 + + 525, 368 - + + 8, 173 + + NoControl - - 214, 145 + + 54 - - 102, 19 + + 243, 16 - - 57 + + 37 - - This is sample. + + True - - MiddleLeft + + 認証方法 - - lblAtTo + + ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - GroupBox5 + + 8 - - 20 + + True - - NoControl + + 13 - - 214, 170 + + TextBitlyPw - - 102, 19 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 58 + + 1 - - This is sample. + + 22, 20 - - MiddleLeft + + 84 - - lblListBackcolor - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + Fill - - 21 + + chkUnreadStyle - - NoControl + + AuthorizeButton - - 214, 120 + + 215, 15 - - 102, 19 + + 9 - - 56 + + 65 - - This is sample. + + 19, 139 - - MiddleLeft + + 19 - - lblAtFromTarget + + ListsPeriod - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PubSearchPeriod - - GroupBox5 + + 396, 69 - - 22 + + 10 - - NoControl + + False - - 214, 95 + + 182, 233 - - 102, 19 + + 3 - - 55 + + SplitContainer1.Panel2 - - This is sample. + + 起動時に自動的に接続する - - MiddleLeft + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lblAtTarget - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + 5 - - 23 + + True - - NoControl + + 12 - - 214, 70 + + GetPeriodPanel - - 102, 19 + + 発言数/フォロー数/フォロワー数 - - 54 + + TweetPrvPanel - - This is sample. + + 77, 12 - - MiddleLeft + + 4 - - lblTarget + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - GroupBox5 + + Label1 - - 24 + + 前データの更新 - + + True + + NoControl - - 214, 45 + + True - - 102, 19 + + ActionPanel - + + False + + + 22, 24 + + 53 - - This is sample. + + 0, 0 - - MiddleLeft + + ConnectionPanel - - lblAtSelf + + This is sample. - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - GroupBox5 + + True - - 25 + + ProxyPanel - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 214, 19 + + 67 - - 102, 19 + + TweetPrvPanel - - 52 + + 3 - - This is sample. + + 113, 130 - - MiddleLeft + + 5 - - lblSelf - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + 145, 12 - - 26 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + Label5 - - 191, 252 + + Label13 - - 90, 22 + + ReTweet - - 51 + + True - - デフォルトに戻す + + StartupReaded - - ButtonBackToDefaultFontColor2 + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + False - - 27 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 18 + + NoControl - - 489, 290 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 - - - フォント&色設定 - - + GroupBox5 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GetPeriodPanel - - FontPanel2 + + True - - 0 + + Label18 - - Fill + + GetMoreTextCountApi - - False + + NoControl - - 0, 0 - - + 525, 368 - - 25 + + 6 - - False + + GroupBox5 - - FontPanel2 + + 18 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - SplitContainer1.Panel2 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 - - + True - - False + + Label55 - + + PreviewPanel + + NoControl - - 227, 20 + + NoControl - - 57, 16 + + 258, 87 - - 14 + + 1 - - BASIC + + 93, 16 - - AuthBasicRadio + + Fill - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - BasedPanel + + Label19 - - 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox1 - - NoControl + + POSTキー(デフォルトEnter) - - 113, 20 + + 6 - - 93, 16 + + 102 - - 13 + + 262, 125 - - OAuth(xAuth) + + ButtonApiCalc - - AuthOAuthRadio + + 36, 199 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 180, 16 - - BasedPanel + + 22, 91 - - 1 + + 398, 16 - - True + + 22, 238 - - NoControl + + 70 - - 22, 22 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 53, 12 + + 83 - - 12 + + twitter.com - - 認証方法 + + NoControl - - Label6 + + Twitter API URL (api.twitter.com) - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - BasedPanel + + 31 - - 2 + + 0, 0 - - NoControl + + 10 - - 305, 64 + + 73 - - 75, 23 + + 53 - - 18 + + btnInputBackcolor - - クリア + + 135, 19 - - AuthClearButton + + 122, 216 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 44, 12 - - BasedPanel + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 47 - - 113, 68 + + 23, 12 - - 149, 14 + + 認証状態 - - 17 + + 75, 22 - - 認証済み + + ホットキー - - AuthUserLabel + + 22, 290 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 20 - - BasedPanel + + 22, 20 - - 4 + + 525, 368 - + NoControl - - 113, 54 + + PreviewPanel - - 112, 14 + + 指定する - - 16 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Not Authenticated + + GroupBox5 - - AuthStateLabel + + 22, 54 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ConnectionPanel - - BasedPanel + + 56 - - 5 + + This is sample. - + + 102, 19 + + True - + NoControl - - 22, 54 + + 86 - - 53, 12 + + NoControl - - 15 + + 205, 196 - - 認証状態 + + 69 - - Label4 + + StartupPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 77 - - BasedPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6 + + 75, 21 - - NoControl + + 125, 19 - - 305, 126 + + CheckAtIdSupple - - 75, 23 + + 22, 18 - - 23 + + 52, 12 - - 認証する + + NoControl - - AuthorizeButton + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleLeft - - BasedPanel + + 228, 12 - - 7 + + btnDetail - - True + + 50 - - NoControl + + False - - 22, 112 + + 259, 135 - - 57, 12 + + NoControl - - 19 + + リストの日時フォーマット - - ユーザー名 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label1 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 標準取得件数 - - BasedPanel + + StartupPanel - - 8 - - + True - - NoControl + + 再計算 - - 22, 133 + + ActionPanel - - 52, 12 + + 228, 19 - - 21 + + GroupBox1 - - パスワード + + BasedPanel - - Label2 + + ConnectionPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - BasedPanel + + TweetActPanel - - 9 + + 22, 153 - - 113, 109 + + NoControl - - 186, 19 + + 104, 19 - - 20 + + 4 - - Username + + GetPeriodPanel - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - BasedPanel + + 16, 120 - - 10 + + 525, 368 - - 113, 130 - - - 186, 19 - - + 22 - - Password + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GetCountPanel - - BasedPanel + + True - - 11 + + 22, 326 - - Fill + + 22, 186 - + False - - 0, 0 + + 8 - - 525, 368 - - + 0 - - False + + 57, 12 - - BasedPanel + + GroupBox3 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 48 - - SplitContainer1.Panel2 + + 9 - - 5 + + 115, 16 - - True + + GetPeriodPanel - - NoControl + + 発言詳細リンク - - 41, 134 + + 9 - - 314, 12 + + Label57 - - 11 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 + + ReplyPeriod - - Label55 + + 未読管理を行う - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ProxyPanel + + NoControl - - 0 + + NoControl - - 286, 107 + + ActionPanel - - 96, 19 + + PreviewPanel - - 10 + + Top - - TextProxyPassword + + 14 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - ProxyPanel + + True - - 1 + + 43, 16 - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 525, 368 + + + NoControl + + + 214, 45 + + True - + + 最小化したときにアイコン化する + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 22, 19 + + 13 - - 76, 16 + + 214, 95 - - 0 + + フォント&色設定 - - 使用しない + + Favoritesの取得数 - - RadioProxyNone + + 8 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 65, 19 ProxyPanel - - 2 + + 52 - - True + + GetCountPanel - - NoControl + + タイムアウトまでの時間(秒) - - 217, 110 + + 88, 12 - - 69, 12 + + 214, 195 - - 9 + + NoControl - - パスワード(&W) + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - LabelProxyPassword + + 75 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 77 - - ProxyPanel + + 文字色 - - 3 + + PreviewPanel - - True - - + NoControl - - 22, 41 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 190, 16 + + TextBoxOutputzKey - - 1 + + 68, 19 + + 112, 14 + + + Label52 + InternetExplorerの設定を使用する - - RadioProxyIE + + UserStreamPanel - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 70, 19 - - ProxyPanel + + フォント&&色 - - 4 + + 227, 20 - - 143, 107 + + なし - - 68, 19 + + NoControl - - 8 + + NoControl - - TextProxyUser + + 211, 15 - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ProxyPanel + + 26, 210 - - 5 + + 66, 16 - - True + + GroupBox5 - - NoControl + + MiddleLeft - - 22, 62 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 66, 16 + + CheckUseSsl - - 2 + + True - - 指定する + + 自分への@返信 - - RadioProxySpecified + + 102, 19 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - ProxyPanel + + リストのアイコンサイズ(初期値16) - - 6 + + LabelApiUsing - - True + + ProxyPanel - - NoControl + + 65, 19 - - 74, 110 - - + 63, 12 - - 7 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ユーザ名(&U) + + btnListBack - - LabelProxyUser + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ProxyPanel + + This is sample. - - 7 + + 264, 90 - - True - - + NoControl - - 50, 85 + + yy/M/d H:mm:ss - - 58, 12 + + 62 - - 3 + + FontDialog1 - - プロキシ(&X) + + 6 - - LabelProxyAddress + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - ProxyPanel + + True - - 8 + + TweetPrvPanel - - 309, 82 + + 102, 19 - - 73, 19 + + lblDetailBackcolor - - 6 + + 107, 12 - - TextProxyPort + + 63, 12 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + フォント&色設定 - - ProxyPanel + + 75, 22 - - 9 + + 16, 12 - - 114, 82 + + 69, 12 - - 135, 19 + + 22, 166 - - 4 + + True - - TextProxyAddress + + Fill + + GroupBox5 + + + 6 + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ProxyPanel + + 発言詳細部にアイコンを表示する - + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 65, 19 + + 10 - - True + + 215, 285 - - NoControl + + Save - - 255, 85 + + True - - 48, 12 + + 背景色 - - 5 + + 8 - - ポート(&P) + + 53, 12 - - LabelProxyPort + + CheckCloseToExit - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ActionPanel - - ProxyPanel + + 214, 170 - - 11 + + GroupBox5 - - Fill + + NoControl - + False - - 0, 0 + + 285, 12 - - 525, 368 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 54 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ProxyPanel - - + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SplitContainer1.Panel2 + + URL自動短縮で優先的に使用 - - 6 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + True - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 293 + + True - - 237, 16 + + 182, 20 - - 24 + + NoControl - - ニコニコ動画のURLをnico.msで短縮して送信 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - CheckNicoms + + 2 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ConnectionPanel + + False - - 0 + + 34 - - True - - + NoControl - - 36, 245 + + 18 - - 99, 12 + + GroupBox1 - - 22 + + 44, 12 - - アウトプット先のURL + + Label71 - - Label60 + + Label24 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 134, 12 - - ConnectionPanel + + 使用しない - - 1 + + GroupBox1 - - twitter.com + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - twitter.com/username + + ProxyPanel - - 205, 242 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 182, 20 + + CheckUseRecommendStatus - - 23 + + lblAtSelf - - ComboBoxOutputzUrlmode + + True - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ConnectionPanel + + SplitContainer1.Panel2 - - 2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 65, 19 - - NoControl + + Label76 - - 36, 199 + + 235, 16 - - 63, 12 + + True - - 20 + + 2 - - 復活の呪文 + + #タグの入力補助を使用する - - Label59 + + SplitContainer1.Panel1 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ConnectionPanel + + NoControl - - 3 + + 7 - - 205, 196 + + 102, 19 - - 182, 19 + + 18 + + 22, 41 + + + 214, 120 + 21 - - TextBoxOutputzKey + + GroupBox3 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - ConnectionPanel + + 145, 16 - - 4 + + UserStreamPanel - - True + + クリア - - NoControl + + TweetPrvPanel - - 22, 161 + + 3 - - 115, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 19 + + 0 - - Outputzに対応する + + 85 - - CheckOutputz + + BasedPanel - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - ConnectionPanel + + This is sample. - - 5 - - + True - - NoControl + + Label3 - - 22, 326 + + True - - 178, 16 + + 12 - - 18 + + 22, 137 - - BASIC認証への変更を許可する - - - CheckEnableBasicAuth - - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ConnectionPanel + + twurl.nl - - 6 + + GroupBox5 - - 262, 125 + + 22, 92 - - 125, 19 + + 50 - - 17 + + 3 - - search.twitter.com + + GetPeriodPanel - - TwitterSearchAPIText + + 14 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - ConnectionPanel + + 背景色 - - 7 + + GroupBox1 - - True + + 32 - + NoControl - - 22, 128 + + ComboDispTitle - - 228, 12 + + ConnectionPanel - - 16 + + Label61 - - Twitter SearchAPI URL (search.twitter.com) + + NoControl - - Label31 + + 21, 163 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 314, 12 - - ConnectionPanel + + lblTarget - - 8 + + True - - 262, 100 + + False - - 125, 19 + + Label20 - - 15 + + 46 - - api.twitter.com + + 1 - - TwitterAPIText - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 9 - - + True - - NoControl + + 398, 41 - - 22, 103 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 174, 12 + + 0 - - 14 + + 4 - - Twitter API URL (api.twitter.com) + + Label7 - - Label8 + + 11 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - ConnectionPanel + + CheckFavRestrict - - 10 + + GroupBox5 - - True + + 102, 19 - - NoControl + + 104, 19 - - 22, 78 + + 44 - - 145, 16 + + 2 - - 13 + + Label66 - - 通信にHTTPSを使用する + + 75 - - CheckUseSsl + + ActionPanel - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - ConnectionPanel + + Label72 - - 11 + + SplitContainer1.Panel2 - - True + + 75, 22 - - NoControl + + 77, 12 - - 22, 51 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 349, 12 + + 136, 20 - - 12 + + 104, 19 - - ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 + + 6 - - Label64 + + 9 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 19 - - ConnectionPanel + + 5 - - 12 + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG6KGo56S6BgQAAAALUHJldmlld05vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUGAAAA + HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdl + SW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3Vu + dAEBAAABAAEAAQgICAIAAAAGBwAAABLjg6rjgrnjg4jjga7ooajnpLoGCAAAAAxUd2VldFBydk5vZGUA + /////wkFAAAA/////wkFAAAAAAAAAAs= + - - 262, 18 + + TextProxyPort - - 125, 19 + + 60 - - 11 + + 113, 109 - - ConnectionTimeOut + + 2 System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ConnectionPanel - - - 13 - - - True - - + NoControl - - 22, 20 + + 4 - - 131, 12 + + 255, 85 - - 10 + + 17 - - タイムアウトまでの時間(秒) + + BASIC - - Label63 + + 63 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 51 - - ConnectionPanel + + 71, 19 - - 14 + + 5 - - Fill + + ActionPanel - - False + + 5 - - 0, 0 + + AppendSettingDialog - - 525, 368 + + 画面最小化・アイコン時のみバルーンを表示する - - 53 + + NoControl - - False + + TextBox3 - - ConnectionPanel + + 103 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - + SplitContainer1.Panel2 - - 7 + + Label27 - - 227, 41 + + SplitContainer1.Panel2 - - 65, 19 - - + 3 - - UserstreamPeriod + + TweetActPanel - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ComboBoxOutputzUrlmode - - UserStreamPanel + + 43 - - 0 + + ActionPanel - + True - - NoControl + + GroupBox5 - - 22, 20 + + 190, 16 - - 157, 16 + + 130, 12 - - 1 + + 3 - - 起動時に自動的に接続する + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - StartupUserstreamCheck + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ユーザ名(&U) - - UserStreamPanel + + 3 - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + PreviewPanel - + NoControl - - 22, 45 + + FontPanel2 - - 145, 12 + + 22, 253 - - 2 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 発言一覧への反映間隔(秒) + + chkReadOwnPost - - Label83 + + 55 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ComboBoxPostKeySelect - - UserStreamPanel + + 396, 119 - - 2 + + CheckPreviewEnable - - Fill + + 15 - - False + + GroupBox5 - - 0, 0 + + 4 - - 525, 368 + + GetCountPanel - - 44 + + 48, 12 - - False + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - UserStreamPanel + + 22, 78 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - SplitContainer1.Panel2 + + 12 - - 8 + + MiddleLeft - - True + + This is sample. - - NoControl + + btnOWL - - 22, 22 + + 484, 267 - - 166, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 37 + + 短縮URLを解決する - - 読み込んだポストを既読にする + + 22 - - StartupReaded + + 0, 0 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - StartupPanel + + TweetActPanel - - 0 + + BasedPanel - - True + + 133, 16 - - NoControl + + 39, 16 - - 22, 70 + + GetCountPanel - - 174, 16 + + NoControl - - 41 + + ConnectionPanel - - 片思いユーザーリストを取得する + + NoControl - - CheckStartupFollowers + + 7 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GetPeriodPanel - - StartupPanel + + 178, 16 - - 1 - - + True - + NoControl - - 22, 47 + + True - - 129, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 39 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 最新版のチェックをする + + 61 - - CheckStartupVersion + + CheckOutputz - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - StartupPanel + + 22, 42 - - 2 + + 5 - + + NoControl + + True - - NoControl + + 6 - - 22, 93 + + HotkeyAlt - - 124, 16 + + GroupBox5 - - 43 + + 22, 112 - - Favoritesを取得する + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - chkGetFav + + False - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 48, 12 - - StartupPanel + + True - - 3 + + NoControl - - Fill + + 9 - - False + + lblListBackcolor - - 0, 0 + + 7 - - 525, 368 + + True - - 44 + + GroupBox1 - - False + + 16, 170 - - StartupPanel + + 0 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label28 - - SplitContainer1.Panel2 + + True - - 9 + + Ctrl+Enter - + True - + + 発言詳細文字 + + NoControl - - 216, 134 + + ユーザーID - - 131, 12 + + 75, 22 - - 104 + + ニックネーム - - 再起動後有効になります。 + + btnSelf - - Label47 + + NoControl - + + NoControl + + + 2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + 396, 19 - - 0 + + BasedPanel - - True + + 6 - + + タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 + + NoControl - - 264, 90 + + 6 - - 44, 12 + + ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 - - 100 + + CheckDispUsername - - Label63 + + IconSize - - LabelDateTimeFormatApplied + + HotkeyText - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 246, 20 - - TweetPrvPanel - - - 1 - - + True - - NoControl + + 113, 16 - - 217, 90 + + 64 - - 44, 12 + + True - - 99 + + CheckBox3 - - Sample: + + 489, 290 - - Label62 + + NoControl System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + 片思い発言 - - 2 + + This is sample. - - Top, Bottom, Left, Right + + 398, 91 - - yyyy/MM/dd H:mm:ss + + 22, 20 - - yy/M/d H:mm:ss + + タイムライン更新間隔(秒) - - H:mm:ss yy/M/d + + 94 - - M/d H:mm:ss + + 2 - - M/d H:mm + + NoControl - - H:mm:ss M/d + + 1 - - H:mm:ss + + RadioProxyNone - - H:mm + + AuthOAuthRadio - - tt h:mm + + 背景色 - - M/d tt h:mm:ss + + 214, 220 - - M/d tt h:mm + + NoControl - - 216, 67 + + ConnectionPanel - - 199, 20 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 98 + + 58, 19 - - CmbDateTimeFormat + + True - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleLeft - - TweetPrvPanel + + BasedPanel - - 3 - - + True - - NoControl + + GetCountPanel - - 22, 70 + + GroupBox5 - - 113, 12 + + CheckBalloonLimit - - 97 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - リストの日時フォーマット + + GetPeriodPanel - - Label23 + + This is sample. - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TextBitlyId - - TweetPrvPanel + + HotkeyWin - - 4 + + Apply after restarting - - True + + 398, 66 - - NoControl + + PreviewPanel - - 22, 108 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 163, 12 + + NoControl - - 101 + + Fav発言 - - リストのアイコンサイズ(初期値16) + + 44 - - Label11 + + 50 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - TweetPrvPanel + + NoControl - - 5 + + 75, 23 - - none + + 再起動後有効になります。 - - 16*16 + + 29, 174 - - 24*24 + + 15 - - 48*48 + + 背景色 - - 48*48(2Column) + + 0 - - 252, 105 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 163, 20 + + 197, 20 - - 103 + + 474, 41 - - IconSize + + 0, 0 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - TweetPrvPanel + + NoControl - - 6 + + 84 - - False + + True - - 216, 106 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 34, 19 + + 63, 12 - - 102 + + 設定 - - TextBox3 + + 0, 0 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 115, 12 - - TweetPrvPanel + + True - - 7 + + 49 - - True - - + NoControl - - 22, 203 + + 11 - - 203, 16 + + 背景色 - - 96 + + 75, 22 - - ソート順を変更できないようにロックする + + 0 - - CheckSortOrderLock + + DM更新間隔(秒) - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 47 - - TweetPrvPanel + + 62 - - 8 + + CheckEnableBasicAuth - - True + + 0 - + NoControl - - 22, 178 + + 137, 12 - - 154, 16 + + 104, 19 - - 94 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - リストの区切り線を表示する + + Label9 - - CheckShowGrid + + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + TweetPrvPanel - - 9 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + CheckAlwaysTop + + True - - NoControl + + 4 - - 22, 153 + + PreviewPanel - - 143, 16 - - + 92 - - 自分の発言を既読にする + + 60 - - chkReadOwnPost + + 73 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetPrvPanel - - - 10 - - + True - + NoControl - - 22, 42 + + 74, 12 - - 226, 16 + + 11 - - 84 + + 4 - - 未読ポストのフォントと色を変更する(低速) + + TextProxyUser - - chkUnreadStyle + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 163, 20 - - TweetPrvPanel + + 18 - - 11 + + BasedPanel - - True + + NoControl - + NoControl - - 22, 21 + + True - - 162, 16 + + ProxyPanel - - 82 + + 22, 108 - - 片思いを色分けして表示する + + PreviewPanel - - OneWayLv + + Sample: - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CheckStartupVersion - - TweetPrvPanel + + 63, 12 - + 12 - - Fill + + 12 - - False + + True - - 0, 0 + + 62, 12 - - 525, 368 + + 7 - - 86 + + 54 - - False + + ポート(&P) - - TweetPrvPanel + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + SplitContainer1.Panel2 - - 10 + + True - + + アイコン変更&点滅 + + True - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 15 + + 16 - - 48, 16 - - + 0 - - 有効 + + False - - HotkeyCheck + + 0, 0 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 89, 12 - - GroupBox3 + + Fill - - 0 + + 1 - + + 59 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - NoControl + + 57 - - 340, 16 + + 67 - - 13, 14 + + 25 - - 6 + + 75, 22 - - 0 + + True - - HotkeyCode + + 525, 368 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBox3 + + 16 - - 1 + + 99 - - Disable + + $this - - 257, 13 + + lblSelf - - 77, 19 + + 40 - - 5 + + NoControl - - HotkeyText + + 181, 136 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Mentions取得数 - - GroupBox3 + + ID - - 2 + + 36 - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 211, 15 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 42, 16 + + 22, 161 - - 4 + + 396, 44 - - Win + + NoControl - - HotkeyWin + + 104, 19 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16, 70 - - GroupBox3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 - - + True - - NoControl + + twitter.com/username - - 168, 15 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 39, 16 + + NoControl - - 3 + + This is sample. - - Alt + + 1 - - HotkeyAlt + + 58, 19 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 82 - - GroupBox3 + + 43 - - 4 - - + True - - NoControl + + 1 - - 116, 15 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 48, 16 + + SplitContainer1.Panel2 - - 2 + + TweetPrvPanel - - Shift + + 75, 23 - - HotkeyShift + + GetPeriodPanel - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox3 + + 58, 19 - - 5 + + 75, 22 - - True + + 340, 12 - - NoControl + + 396, 144 - - 69, 15 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 43, 16 + + ConnectionPanel - - 1 + + 24 - - Ctrl + + NoControl - - HotkeyCtrl + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 未読フォント - - GroupBox3 + + TextCountApiReply - - 6 + + Fill - - 19, 282 + + 257, 13 - - 474, 41 - - + 76 - - ホットキー + + Fav操作結果を厳密にチェックする - - GroupBox3 + + 76, 16 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - ActionPanel - - + 0 - - True + + ソート順を変更できないようにロックする - - NoControl + + TextProxyPassword - - 22, 253 + + TweetPrvPanel - - 157, 16 + + 42, 16 - - 75 + + 36, 245 - - #タグの入力補助を使用する + + Japanese - - CheckHashSupple + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15 - + ActionPanel - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True - - + NoControl - - 22, 229 + + SplitContainer1.Panel2 - - 153, 16 + + 6 - - 73 + + 60, 12 - - @IDの入力補助を使用する + + GroupBox5 - - CheckAtIdSupple + + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Cancel - - ActionPanel + + NoControl - - 2 + + lblInputFont - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 0, 0 - - 26, 210 + + ProxyPanel - - 340, 12 + + 75, 22 - - 71 + + Button3 - - 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 + + 8 - - Label57 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ActionPanel + + 137, 12 - - 3 + + PreviewPanel - - True + + GetCountPanel - + + 215, 142 + + + GroupBox1 + + NoControl - - 22, 188 + + 114, 82 - - 183, 16 + + 22, 54 - - 70 + + 7 - - Fav操作結果を厳密にチェックする + + DMPeriod - - CheckFavRestrict + + 41 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnRetweet - - ActionPanel + + GetCountPanel - - 4 + + 9, 73 - - NoControl + + This is sample. - - 418, 157 + + Fill - - 75, 21 + + 文字色 - - 65 + + 48*48(2Column) - - 参照 + + SplitContainer1.Panel2 - - Button3 + + 40 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - ActionPanel + + 79, 12 - - 5 + + 2 - - True + + 123, 12 - - NoControl + + 16, 220 - - 22, 20 + + MiddleLeft - - 113, 16 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 40 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - サウンドを再生する + + 53, 12 - - PlaySnd + + @IDの入力補助を使用する - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 112 - - ActionPanel + + 22, 133 - - 6 + + 214, 195 - - NoControl + + 10 - - 22, 42 + + lblListFont - - 408, 22 + + デフォルトに戻す - - 41 + + 22, 70 - - タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 + + 227, 41 - - Label15 + + 203, 16 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + タイトルバー + + ActionPanel - - 7 + + 10 - - 184, 160 + + 96 - - 228, 19 + + 0 - - 64 + + Label26 - - BrowserPathText + + btnAtFromTarget - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - ActionPanel + + Not Authenticated - - 8 + + 発言詳細を等幅フォントで表示(AA対応、フォント適用不具合あり) - - True + + 2 - + NoControl - - 22, 71 + + 0 - - 100, 16 + + デフォルトに戻す - - 43 + + 39 - - 未読管理を行う + + 3 - - UReadMng + + Fill - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - ActionPanel + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9 + + 22, 19 - - True + + 4 - - NoControl + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 21, 164 + + 237, 16 - - 60, 12 + + 14 - - 63 + + H:mm - - ブラウザパス + + フォント&&色 - - Label44 + + 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 62 - - ActionPanel - - - 10 - - + True - - NoControl + + PreviewPanel - - 22, 114 + + 525, 368 - - 171, 16 + + 242, 16 - - 47 + + 20 - - ×ボタンを押したときに終了する + + LabelProxyAddress - - CheckCloseToExit + + 22, 188 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 258, 63 - - ActionPanel + + 102, 12 - - 11 + + NoControl - - True + + 23 - + NoControl - - 22, 137 + + 75, 22 - - 170, 16 + + 75, 23 - - 49 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 最小化したときにアイコン化する + + UReadMng - - CheckMinimizeToTray + + 1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 309, 82 - - ActionPanel + + 90, 22 - - 12 + + btnInputFont - - True + + MiddleLeft - - NoControl + + 常に最前面に表示する - - 22, 92 + + 14 - - 145, 16 + + 5 - - 45 + + 50, 85 - - 新着時に未読をクリアする + + 94 - - CheckReadOldPosts + + MiddleLeft - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - ActionPanel + + プロキシ(&X) - - 13 + + 75, 22 - - Fill + + NoControl - - False + + Label64 - - 0, 0 + + NoControl - - 525, 368 + + ニコニコ動画のURLをnico.msで短縮して送信 - - 52 + + Outputzに対応する - + + BASIC認証への変更を許可する + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - ActionPanel + + 22, 114 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SplitContainer1.Panel2 + + 9 - - 11 + + Twitter SearchAPI URL (search.twitter.com) - - 通知なし + + btnDetailLink - - アイコン変更 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - アイコン変更&点滅 + + Label22 - - 215, 142 + + 77, 12 - - 136, 20 + + Label65 - - 94 + + bit.ly - - ReplyIconStateCombo + + BasedPanel - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - PreviewPanel + + Label4 - - 0 + + ProxyPanel - + True - - NoControl + + True - - 22, 145 + + 58, 19 - - 134, 12 + + True - - 93 + + 51 - - 未読Mentions通知アイコン + + 0, 0 - - Label72 + + 22, 114 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 19 - - PreviewPanel + + True - - 1 + + $this - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + NoControl - - 22, 166 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 256, 16 + + TweetPrvPanel - - 96 + + パスワード(&W) Mentionsの新着があるときにウインドウを点滅する - - ChkNewMentionsBlink + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label23 - - PreviewPanel + + 27 - - 2 + + 20 - - True + + This is sample. - - NoControl + + BasedPanel - - 22, 118 + + 75, 22 - - 161, 16 + + Label62 - - 92 + + 1 - - タブに未読アイコンを表示する + + ButtonBackToDefaultFontColor2 - - chkTabIconDisp + + SplitContainer1.Panel2 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - PreviewPanel + + lblAtFromTarget - - 3 + + M/d H:mm:ss - - True + + ×ボタンを押したときに終了する - - NoControl + + タブに未読アイコンを表示する - - 22, 191 + + 7 - - 243, 16 + + 背景色 - - 60 + + NoControl - - 画像リンクがあった場合にサムネイルを表示する + + True - - CheckPreviewEnable + + False - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + その人の発言 - - PreviewPanel + + 16, 145 - - 4 + + 66 - - True + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG5YuV5L2cBgQAAAAKQWN0aW9uTm9kZQD/////BgUAAAAA/////wkFAAAAAQAAAAkGAAAABQYAAAAd + U3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJ + bmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50 + AQEAAAEAAQABCAgIAgAAAAYHAAAAFeODhOOCpOODvOODiOOBruWLleS9nAYIAAAADFR3ZWV0QWN0Tm9k + ZQD/////CQUAAAD/////CQUAAAAAAAAACw== + - + NoControl - - 83, 290 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 115, 12 + + 16, 20 - - 84 + + Label59 - - Apply after restarting + + GetCountPanel - - Label81 + + Label60 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - PreviewPanel + + lblAtTo - - 5 + + 背景色 - - OS Default + + 217, 110 - - Japanese + + NoControl - - English + + TweetPrvPanel - - Simplified Chinese + + 13 - - 215, 285 + + NoControl - - 136, 20 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 85 + + NoControl - - LanguageCombo + + TextProxyAddress - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 21 - - PreviewPanel + + SplitContainer1 - - 6 - - + True - + NoControl - - 22, 290 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 53, 12 + + 0 - - 83 + + 55 - - Language + + lblFav - - Label13 + + RadioProxySpecified - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 63 - - PreviewPanel + + CheckReadOldPosts - - 7 + + 214, 95 - - True + + 41 - - NoControl + + TwitterAPIText - - 22, 263 + + 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 - - 133, 16 + + True - - 82 + + 418, 157 - - 常に最前面に表示する + + 64 - - CheckAlwaysTop + + 78 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 21, 164 - - PreviewPanel + + NoControl - - 8 + + 21 - - True + + 3 - + NoControl - - 22, 238 + + AuthUserLabel - - 343, 16 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 64 + + 701, 368 - - 発言詳細を等幅フォントで表示(AA対応、フォント適用不具合あり) + + MiddleLeft - - CheckMonospace + + その発言の@先発言 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 131, 12 - + + 226, 16 + + + TwitterSearchAPIText + + PreviewPanel - - 9 + + GroupBox1 True - - NoControl + + 74 - - 22, 66 + + 39 - - 249, 16 + + 次の項目の更新時の取得数を個別に設定する - - 48 + + TweetActPanel - - 画面最小化・アイコン時のみバルーンを表示する + + StartupPanel - - CheckBalloonLimit + + 0 - + + 16, 195 + + + 49 + + + ActionPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PreviewPanel + + 102, 19 - - 10 + + Label2 - - True + + 9, 48 - + NoControl - - 22, 20 + + False - - 130, 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 43 + + TextCountApi - - 新着バルーンのユーザー名 - - - Label10 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PreviewPanel + + パスワード - - 11 + + 65, 19 - - (なし) + + 201, 95 バージョン + + @未読数 + 最終発言 - - @未読数 + + 未読数(@未読数) 未読数 - - 未読数(@未読数) + + 10 全未読/全発言数 - - 発言数/フォロー数/フォロワー数 + + 131, 12 - - 215, 88 + + 24*24 - - 197, 20 + + SplitContainer1 - - 50 + + NoControl - - ComboDispTitle + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - PreviewPanel + + LabelDateTimeFormatApplied - - 12 + + Top, Bottom, Left, Right - + + 0, 0 + + True - + NoControl - - 22, 91 + + 20, 211 - - 60, 12 + + Language - - 49 + + Lists更新間隔(秒) - - タイトルバー + + 71 - - Label45 + + Label6 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + APIKey - - PreviewPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + 262, 18 - - なし + + yyyy/MM/dd H:mm:ss - - ユーザーID + + NoControl - - ニックネーム + + 181, 71 - - 215, 15 + + 124, 16 - - 136, 20 + + True - - 44 + + 10 - - cmbNameBalloon + + 22, 42 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - PreviewPanel + + 11 - - 14 + + 参照 - + + 22, 128 + + + 11 + + True - + + 10 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + フォント&&色 + + + Enter + + + GroupBox1 + + + 37 + + NoControl - - 22, 43 + + 0 - - 235, 16 + + 149, 14 - - 46 + + 525, 368 - - タイトルバーとツールチップにユーザー名を表示 + + Label63 - - CheckDispUsername + + 60 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CenterParent - - PreviewPanel + + 75, 22 - - 15 + + FontPanel - - True + + GroupBox5 - - False + + 10 - + + 0, 0 + + + 51 + + + リストの区切り線を表示する + + + アイコン変更 + + + 172 + + + ActionPanel + + NoControl - - 22, 215 + + 48 - - 180, 16 + + 102, 19 - - 62 + + 57, 16 - - 発言詳細部にアイコンを表示する + + 171, 16 - - CheckBox3 + + 19, 74 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - + + True + + PreviewPanel - - 16 + + 22, 43 - - Fill + + 98 - - False + + True - - 0, 0 + + HotkeyCode - - 525, 368 + + 258, 135 - - 50 + + GroupBox1 - - False - - + PreviewPanel - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + FontPanel - - SplitContainer1.Panel2 + + False - - 12 + + 701, 403 - - SplitContainer1.Panel2 + + 2 - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 43 - - SplitContainer1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 701, 368 + + 入力欄のURLを投稿する際に自動で短縮する - - 172 + + 97 - - 0 + + 249, 16 - - SplitContainer1 + + 自分の発言を既読にする - - System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 29, 195 - - $this + + 22, 215 - - 2 + + 1 - - 17, 17 - - - 140, 17 - - - NoControl + + True - - 623, 374 + + GroupBox1 - - 75, 23 + + 9 - - 4 + + StartupPanel - - キャンセル + + 5 - - Cancel + + Fill - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - $this + + 232, 19 - - 0 + + SplitContainer1.Panel2 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 541, 374 + + 136, 20 - - 75, 23 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + 153, 16 - - OK + + 最新版のチェックをする - - Save + + 252, 105 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + This is sample. - - $this + + GetPeriodPanel - - 1 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True - - - 82 - - - 6, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 701, 403 + + 13 - - CenterParent + + 63, 12 - - 設定 + + 9 - - FontDialog1 + + 398, 191 - - System.Windows.Forms.FontDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + This is sample. - - ColorDialog1 + + 22, 136 - - System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 129, 16 - - AppendSettingDialog + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox3 + + NoControl + + + True + + + 17, 17 + + + 82 + + + 140, 17 + \ No newline at end of file Modified: trunk/Tween/Tween.en.resx =================================================================== --- trunk/Tween/Tween.en.resx 2010-12-21 11:03:18 UTC (rev 1236) +++ trunk/Tween/Tween.en.resx 2010-12-21 11:52:03 UTC (rev 1237) @@ -269,19 +269,19 @@ - 570, 242 + 570, 244 - 570, 242 + 570, 244 - 570, 214 + 570, 216 @@ -311,19 +311,19 @@ - 0, 214 + 0, 216 - 570, 242 + 570, 244 - 570, 242 + 570, 244 @@ -401,19 +401,22 @@ - 185, 22 + 201, 22 - 185, 22 + 201, 22 - 185, 22 + 201, 22 + + TwitterYatsSearch(&Y) + - 185, 22 + 201, 22 - 185, 22 + 201, 22 Current Tab(&Local) @@ -517,14 +520,20 @@ Use this &Hashtag + + 263, 22 + + + Translate + - 264, 342 + 264, 364 - 508, 46 + 508, 44 @@ -536,7 +545,7 @@ - 570, 69 + 570, 67 @@ -557,11 +566,11 @@ - 570, 96 + 570, 94 - 69 + 67 @@ -570,13 +579,13 @@ - 194, 98 + 194, 96 - 17, 98 + 17, 96 @@ -585,7 +594,7 @@ - 570, 96 + 570, 94 @@ -594,7 +603,7 @@ - 246 + 248 @@ -731,24 +740,72 @@ &Edit + + 292, 22 + @&Reply + + 292, 22 + @R&eply All + + 292, 22 + Send D&M + + 292, 22 + + + 292, 22 + + + 292, 22 + + + 289, 6 + + + 292, 22 + Favorite(&S) + + 292, 22 + + + Fav+Retweet + + + 292, 22 + + + Fav+Retweet(Unofficial) + + + 292, 22 + Unfavorite(&V) + + 289, 6 + + + 292, 22 + User &Profile + + 292, 22 + Related Posts (&G) @@ -794,6 +851,9 @@ &Retweeter Home + + 292, 22 + &Open as ... @@ -809,12 +869,21 @@ Filter by &ID + + 292, 22 + Make &Filter as ... + + 292, 22 + Manage &Lists + + 289, 6 + 263, 22 @@ -827,21 +896,42 @@ Make not read(&U) + + 292, 22 + Change Unread state ... + + 292, 22 + Jump next to read tweet + + 289, 6 + + + 292, 22 + Select &All + + 292, 22 + &Delete your tweet/DM + + 292, 22 + Refresh(&U) + + 292, 22 + Get More(&I)... @@ -1062,67 +1152,73 @@ - 243, 22 + 219, 22 @ &Reply - 243, 22 + 219, 22 @ Reply ALL - 243, 22 + 219, 22 Send D&M - 243, 22 + 219, 22 RT OriginalPost - 243, 22 + 219, 22 - 243, 22 + 219, 22 - 240, 6 + 216, 6 - 243, 22 + 219, 22 Mark &Favorite - 243, 22 + 219, 22 + + Fav+Retweet + - 243, 22 + 219, 22 + + Fav+Retweet(Unofficial) + - 243, 22 + 219, 22 Unmark Favorite - 240, 6 + 216, 6 - 243, 22 + 219, 22 User &Profile - 243, 22 + 219, 22 Related Posts (&G) @@ -1170,7 +1266,7 @@ Open &Retweeter Home - 243, 22 + 219, 22 Open as ... @@ -1188,19 +1284,19 @@ Filter by ID... - 243, 22 + 219, 22 Make filter as ... - 243, 22 + 219, 22 Add to &Lists - 240, 6 + 216, 6 165, 22 @@ -1215,46 +1311,46 @@ Make Not Read - 243, 22 + 219, 22 Change unread state - 243, 22 + 219, 22 Jump Next to read post - 240, 6 + 216, 6 - 243, 22 + 219, 22 Select &All - 243, 22 + 219, 22 &Delete - 243, 22 + 219, 22 &Update - 243, 22 + 219, 22 GetMore - 244, 490 + 220, 490 Modified: trunk/Tween/Tween.resx =================================================================== --- trunk/Tween/Tween.resx 2010-12-21 11:03:18 UTC (rev 1236) +++ trunk/Tween/Tween.resx 2010-12-21 11:52:03 UTC (rev 1237) @@ -382,7 +382,7 @@ 0, 0, 0, 0 - 570, 252 + 570, 256 0 @@ -406,7 +406,7 @@ 0, 0 - 570, 252 + 570, 256 0 @@ -436,7 +436,7 @@ 0, 0 - 570, 224 + 570, 228 Zoom @@ -640,7 +640,7 @@ Bottom - 0, 224 + 0, 228 3, 3, 3, 3 @@ -670,7 +670,7 @@ 0, 0 - 570, 252 + 570, 256 1 @@ -697,7 +697,7 @@ 0, 0 - 570, 252 + 570, 256 2 @@ -826,7 +826,7 @@ 3, 3 - 50, 50 + 50, 49 Zoom @@ -1045,7 +1045,7 @@ 59, 20 - 508, 36 + 508, 32 6 @@ -1150,7 +1150,7 @@ 2 - 570, 59 + 570, 55 1 @@ -1288,10 +1288,10 @@ 19 - 570, 86 + 570, 82 - 59 + 55 2 @@ -1333,7 +1333,7 @@ 0, 0 - 194, 88 + 194, 84 Zoom @@ -1363,7 +1363,7 @@ 194, 0 - 17, 88 + 17, 84 0 @@ -1393,7 +1393,7 @@ 1 - 570, 86 + 570, 82 355 @@ -1432,7 +1432,7 @@ 574, 348 - 256 + 260 2 From svnnotify @ sourceforge.jp Tue Dec 21 22:53:08 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 21 Dec 2010 22:53:08 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMzhdIC4gdmJwcm9q44OV44Kh44Kk44Or44Gr?= =?utf-8?b?QW55Q1BV44Gu44Kz44O844OJ44GM6L+95Yqg44GV44KM44Gm44GE44Gf44Gu?= =?utf-8?b?44KS5YmK6Zmk?= Message-ID: <1292939588.324448.29062.nullmailer@users.sourceforge.jp> Revision: 1238 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1238 Author: f_swallow Date: 2010-12-21 22:53:08 +0900 (Tue, 21 Dec 2010) Log Message: ----------- .vbprojファイルにAnyCPUのコードが追加されていたのを削除 Modified Paths: -------------- trunk/Tween/Tween.vbproj -------------- next part -------------- Modified: trunk/Tween/Tween.vbproj =================================================================== --- trunk/Tween/Tween.vbproj 2010-12-21 11:52:03 UTC (rev 1237) +++ trunk/Tween/Tween.vbproj 2010-12-21 13:53:08 UTC (rev 1238) @@ -48,7 +48,6 @@ 42353,42354,42355 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036 true - AnyCPU pdbonly From svnnotify @ sourceforge.jp Wed Dec 22 02:08:34 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 22 Dec 2010 02:08:34 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyMzldICDntbHlkIjjga7jgZ/jgoHliYrpmaQ=?= Message-ID: <1292951314.636077.4262.nullmailer@users.sourceforge.jp> Revision: 1239 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1239 Author: syo68k Date: 2010-12-22 02:08:34 +0900 (Wed, 22 Dec 2010) Log Message: ----------- 統合のため削除 Removed Paths: ------------- branches/translation/ -------------- next part -------------- From svnnotify @ sourceforge.jp Wed Dec 22 02:11:06 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 22 Dec 2010 02:11:06 +0900 Subject: [Tween-svn] [1240] Message-ID: <1292951466.347050.5945.nullmailer@users.sourceforge.jp> Revision: 1240 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1240 Author: syo68k Date: 2010-12-22 02:11:06 +0900 (Wed, 22 Dec 2010) Log Message: ----------- Added Paths: ----------- branches/query/ -------------- next part -------------- Property changes on: branches/query ___________________________________________________________________ Added: svn:ignore + *.suo Tween.5.1.ReSharper.user _ReSharper.Tween Added: svn:mergeinfo + /branches/APIchangeevent:723-746 /branches/FixedImage:787-910 /branches/SettingDialog:1216-1230 /branches/UserStream:1077-1144 /branches/editlist:667-697 /branches/panelswitch:447-572 /branches/tm:782-794 From svnnotify @ sourceforge.jp Wed Dec 22 02:17:47 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 22 Dec 2010 02:17:47 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNDFdICDoqK3lrprnlLvpnaLoi7Hoqp7jg6o=?= =?utf-8?b?44K944O844K55a++5b+c?= Message-ID: <1292951867.367476.13180.nullmailer@users.sourceforge.jp> Revision: 1241 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1241 Author: kiri_feather Date: 2010-12-22 02:17:47 +0900 (Wed, 22 Dec 2010) Log Message: ----------- 設定画面英語リソース対応 設定画面のパネル切り替えコードを簡易に Modified Paths: -------------- trunk/Tween/AppendSettingDialog.Designer.vb trunk/Tween/AppendSettingDialog.en.resx trunk/Tween/AppendSettingDialog.resx trunk/Tween/AppendSettingDialog.vb -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.Designer.vb =================================================================== --- trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-21 17:11:06 UTC (rev 1240) +++ trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-21 17:17:47 UTC (rev 1241) @@ -25,6 +25,80 @@ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AppendSettingDialog)) Me.SplitContainer1 = New System.Windows.Forms.SplitContainer() Me.TreeView1 = New System.Windows.Forms.TreeView() + Me.BasedPanel = New System.Windows.Forms.Panel() + Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() + Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() + Me.Label6 = New System.Windows.Forms.Label() + Me.AuthClearButton = New System.Windows.Forms.Button() + Me.AuthUserLabel = New System.Windows.Forms.Label() + Me.AuthStateLabel = New System.Windows.Forms.Label() + Me.Label4 = New System.Windows.Forms.Label() + Me.AuthorizeButton = New System.Windows.Forms.Button() + Me.Label1 = New System.Windows.Forms.Label() + Me.Label2 = New System.Windows.Forms.Label() + Me.Username = New System.Windows.Forms.TextBox() + Me.Password = New System.Windows.Forms.TextBox() + Me.GetPeriodPanel = New System.Windows.Forms.Panel() + Me.TimelinePeriod = New System.Windows.Forms.TextBox() + Me.Label3 = New System.Windows.Forms.Label() + Me.ButtonApiCalc = New System.Windows.Forms.Button() + Me.LabelPostAndGet = New System.Windows.Forms.Label() + Me.LabelApiUsing = New System.Windows.Forms.Label() + Me.Label33 = New System.Windows.Forms.Label() + Me.ListsPeriod = New System.Windows.Forms.TextBox() + Me.Label7 = New System.Windows.Forms.Label() + Me.PubSearchPeriod = New System.Windows.Forms.TextBox() + Me.Label69 = New System.Windows.Forms.Label() + Me.ReplyPeriod = New System.Windows.Forms.TextBox() + Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() + Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() + Me.Label5 = New System.Windows.Forms.Label() + Me.DMPeriod = New System.Windows.Forms.TextBox() + Me.StartupPanel = New System.Windows.Forms.Panel() + Me.StartupReaded = New System.Windows.Forms.CheckBox() + Me.CheckStartupFollowers = New System.Windows.Forms.CheckBox() + Me.CheckStartupVersion = New System.Windows.Forms.CheckBox() + Me.chkGetFav = New System.Windows.Forms.CheckBox() + Me.GetCountPanel = New System.Windows.Forms.Panel() + Me.Label30 = New System.Windows.Forms.Label() + Me.Label28 = New System.Windows.Forms.Label() + Me.Label19 = New System.Windows.Forms.Label() + Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() + Me.SearchTextCountApi = New System.Windows.Forms.TextBox() + Me.Label66 = New System.Windows.Forms.Label() + Me.FirstTextCountApi = New System.Windows.Forms.TextBox() + Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() + Me.Label53 = New System.Windows.Forms.Label() + Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() + Me.TextCountApiReply = New System.Windows.Forms.TextBox() + Me.Label67 = New System.Windows.Forms.Label() + Me.TextCountApi = New System.Windows.Forms.TextBox() + Me.UserStreamPanel = New System.Windows.Forms.Panel() + Me.UserstreamPeriod = New System.Windows.Forms.TextBox() + Me.StartupUserstreamCheck = New System.Windows.Forms.CheckBox() + Me.Label83 = New System.Windows.Forms.Label() + Me.ActionPanel = New System.Windows.Forms.Panel() + Me.GroupBox3 = New System.Windows.Forms.GroupBox() + Me.HotkeyCheck = New System.Windows.Forms.CheckBox() + Me.HotkeyCode = New System.Windows.Forms.Label() + Me.HotkeyText = New System.Windows.Forms.TextBox() + Me.HotkeyWin = New System.Windows.Forms.CheckBox() + Me.HotkeyAlt = New System.Windows.Forms.CheckBox() + Me.HotkeyShift = New System.Windows.Forms.CheckBox() + Me.HotkeyCtrl = New System.Windows.Forms.CheckBox() + Me.CheckHashSupple = New System.Windows.Forms.CheckBox() + Me.CheckAtIdSupple = New System.Windows.Forms.CheckBox() + Me.Label57 = New System.Windows.Forms.Label() + Me.CheckFavRestrict = New System.Windows.Forms.CheckBox() + Me.Button3 = New System.Windows.Forms.Button() + Me.PlaySnd = New System.Windows.Forms.CheckBox() + Me.Label15 = New System.Windows.Forms.Label() + Me.BrowserPathText = New System.Windows.Forms.TextBox() + Me.UReadMng = New System.Windows.Forms.CheckBox() + Me.Label44 = New System.Windows.Forms.Label() + Me.CheckCloseToExit = New System.Windows.Forms.CheckBox() + Me.CheckMinimizeToTray = New System.Windows.Forms.CheckBox() + Me.CheckReadOldPosts = New System.Windows.Forms.CheckBox() Me.TweetActPanel = New System.Windows.Forms.Panel() Me.TextBitlyPw = New System.Windows.Forms.TextBox() Me.ComboBoxPostKeySelect = New System.Windows.Forms.ComboBox() @@ -40,6 +114,38 @@ Me.Label71 = New System.Windows.Forms.Label() Me.CheckTinyURL = New System.Windows.Forms.CheckBox() Me.CheckAutoConvertUrl = New System.Windows.Forms.CheckBox() + Me.PreviewPanel = New System.Windows.Forms.Panel() + Me.ReplyIconStateCombo = New System.Windows.Forms.ComboBox() + Me.Label72 = New System.Windows.Forms.Label() + Me.ChkNewMentionsBlink = New System.Windows.Forms.CheckBox() + Me.chkTabIconDisp = New System.Windows.Forms.CheckBox() + Me.CheckPreviewEnable = New System.Windows.Forms.CheckBox() + Me.Label81 = New System.Windows.Forms.Label() + Me.LanguageCombo = New System.Windows.Forms.ComboBox() + Me.Label13 = New System.Windows.Forms.Label() + Me.CheckAlwaysTop = New System.Windows.Forms.CheckBox() + Me.CheckMonospace = New System.Windows.Forms.CheckBox() + Me.CheckBalloonLimit = New System.Windows.Forms.CheckBox() + Me.Label10 = New System.Windows.Forms.Label() + Me.ComboDispTitle = New System.Windows.Forms.ComboBox() + Me.Label45 = New System.Windows.Forms.Label() + Me.cmbNameBalloon = New System.Windows.Forms.ComboBox() + Me.CheckDispUsername = New System.Windows.Forms.CheckBox() + Me.CheckBox3 = New System.Windows.Forms.CheckBox() + Me.TweetPrvPanel = New System.Windows.Forms.Panel() + Me.Label47 = New System.Windows.Forms.Label() + Me.LabelDateTimeFormatApplied = New System.Windows.Forms.Label() + Me.Label62 = New System.Windows.Forms.Label() + Me.CmbDateTimeFormat = New System.Windows.Forms.ComboBox() + Me.Label23 = New System.Windows.Forms.Label() + Me.Label11 = New System.Windows.Forms.Label() + Me.IconSize = New System.Windows.Forms.ComboBox() + Me.TextBox3 = New System.Windows.Forms.TextBox() + Me.CheckSortOrderLock = New System.Windows.Forms.CheckBox() + Me.CheckShowGrid = New System.Windows.Forms.CheckBox() + Me.chkReadOwnPost = New System.Windows.Forms.CheckBox() + Me.chkUnreadStyle = New System.Windows.Forms.CheckBox() + Me.OneWayLv = New System.Windows.Forms.CheckBox() Me.FontPanel = New System.Windows.Forms.Panel() Me.GroupBox1 = New System.Windows.Forms.GroupBox() Me.btnRetweet = New System.Windows.Forms.Button() @@ -67,36 +173,6 @@ Me.btnListFont = New System.Windows.Forms.Button() Me.lblListFont = New System.Windows.Forms.Label() Me.Label61 = New System.Windows.Forms.Label() - Me.GetPeriodPanel = New System.Windows.Forms.Panel() - Me.TimelinePeriod = New System.Windows.Forms.TextBox() - Me.Label3 = New System.Windows.Forms.Label() - Me.ButtonApiCalc = New System.Windows.Forms.Button() - Me.LabelPostAndGet = New System.Windows.Forms.Label() - Me.LabelApiUsing = New System.Windows.Forms.Label() - Me.Label33 = New System.Windows.Forms.Label() - Me.ListsPeriod = New System.Windows.Forms.TextBox() - Me.Label7 = New System.Windows.Forms.Label() - Me.PubSearchPeriod = New System.Windows.Forms.TextBox() - Me.Label69 = New System.Windows.Forms.Label() - Me.ReplyPeriod = New System.Windows.Forms.TextBox() - Me.CheckPostAndGet = New System.Windows.Forms.CheckBox() - Me.CheckPeriodAdjust = New System.Windows.Forms.CheckBox() - Me.Label5 = New System.Windows.Forms.Label() - Me.DMPeriod = New System.Windows.Forms.TextBox() - Me.GetCountPanel = New System.Windows.Forms.Panel() - Me.Label30 = New System.Windows.Forms.Label() - Me.Label28 = New System.Windows.Forms.Label() - Me.Label19 = New System.Windows.Forms.Label() - Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() - Me.SearchTextCountApi = New System.Windows.Forms.TextBox() - Me.Label66 = New System.Windows.Forms.Label() - Me.FirstTextCountApi = New System.Windows.Forms.TextBox() - Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() - Me.Label53 = New System.Windows.Forms.Label() - Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() - Me.TextCountApiReply = New System.Windows.Forms.TextBox() - Me.Label67 = New System.Windows.Forms.Label() - Me.TextCountApi = New System.Windows.Forms.TextBox() Me.FontPanel2 = New System.Windows.Forms.Panel() Me.GroupBox5 = New System.Windows.Forms.GroupBox() Me.Label65 = New System.Windows.Forms.Label() @@ -127,32 +203,6 @@ Me.lblAtSelf = New System.Windows.Forms.Label() Me.lblSelf = New System.Windows.Forms.Label() Me.ButtonBackToDefaultFontColor2 = New System.Windows.Forms.Button() - Me.BasedPanel = New System.Windows.Forms.Panel() - Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() - Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() - Me.Label6 = New System.Windows.Forms.Label() - Me.AuthClearButton = New System.Windows.Forms.Button() - Me.AuthUserLabel = New System.Windows.Forms.Label() - Me.AuthStateLabel = New System.Windows.Forms.Label() - Me.Label4 = New System.Windows.Forms.Label() - Me.AuthorizeButton = New System.Windows.Forms.Button() - Me.Label1 = New System.Windows.Forms.Label() - Me.Label2 = New System.Windows.Forms.Label() - Me.Username = New System.Windows.Forms.TextBox() - Me.Password = New System.Windows.Forms.TextBox() - Me.ProxyPanel = New System.Windows.Forms.Panel() - Me.Label55 = New System.Windows.Forms.Label() - Me.TextProxyPassword = New System.Windows.Forms.TextBox() - Me.RadioProxyNone = New System.Windows.Forms.RadioButton() - Me.LabelProxyPassword = New System.Windows.Forms.Label() - Me.RadioProxyIE = New System.Windows.Forms.RadioButton() - Me.TextProxyUser = New System.Windows.Forms.TextBox() - Me.RadioProxySpecified = New System.Windows.Forms.RadioButton() - Me.LabelProxyUser = New System.Windows.Forms.Label() - Me.LabelProxyAddress = New System.Windows.Forms.Label() - Me.TextProxyPort = New System.Windows.Forms.TextBox() - Me.TextProxyAddress = New System.Windows.Forms.TextBox() - Me.LabelProxyPort = New System.Windows.Forms.Label() Me.ConnectionPanel = New System.Windows.Forms.Panel() Me.CheckNicoms = New System.Windows.Forms.CheckBox() Me.Label60 = New System.Windows.Forms.Label() @@ -169,69 +219,19 @@ Me.Label64 = New System.Windows.Forms.Label() Me.ConnectionTimeOut = New System.Windows.Forms.TextBox() Me.Label63 = New System.Windows.Forms.Label() - Me.UserStreamPanel = New System.Windows.Forms.Panel() - Me.UserstreamPeriod = New System.Windows.Forms.TextBox() - Me.StartupUserstreamCheck = New System.Windows.Forms.CheckBox() - Me.Label83 = New System.Windows.Forms.Label() - Me.StartupPanel = New System.Windows.Forms.Panel() - Me.StartupReaded = New System.Windows.Forms.CheckBox() - Me.CheckStartupFollowers = New System.Windows.Forms.CheckBox() - Me.CheckStartupVersion = New System.Windows.Forms.CheckBox() - Me.chkGetFav = New System.Windows.Forms.CheckBox() - Me.TweetPrvPanel = New System.Windows.Forms.Panel() - Me.Label47 = New System.Windows.Forms.Label() - Me.LabelDateTimeFormatApplied = New System.Windows.Forms.Label() - Me.Label62 = New System.Windows.Forms.Label() - Me.CmbDateTimeFormat = New System.Windows.Forms.ComboBox() - Me.Label23 = New System.Windows.Forms.Label() - Me.Label11 = New System.Windows.Forms.Label() - Me.IconSize = New System.Windows.Forms.ComboBox() - Me.TextBox3 = New System.Windows.Forms.TextBox() - Me.CheckSortOrderLock = New System.Windows.Forms.CheckBox() - Me.CheckShowGrid = New System.Windows.Forms.CheckBox() - Me.chkReadOwnPost = New System.Windows.Forms.CheckBox() - Me.chkUnreadStyle = New System.Windows.Forms.CheckBox() - Me.OneWayLv = New System.Windows.Forms.CheckBox() - Me.ActionPanel = New System.Windows.Forms.Panel() - Me.GroupBox3 = New System.Windows.Forms.GroupBox() - Me.HotkeyCheck = New System.Windows.Forms.CheckBox() - Me.HotkeyCode = New System.Windows.Forms.Label() - Me.HotkeyText = New System.Windows.Forms.TextBox() - Me.HotkeyWin = New System.Windows.Forms.CheckBox() - Me.HotkeyAlt = New System.Windows.Forms.CheckBox() - Me.HotkeyShift = New System.Windows.Forms.CheckBox() - Me.HotkeyCtrl = New System.Windows.Forms.CheckBox() - Me.CheckHashSupple = New System.Windows.Forms.CheckBox() - Me.CheckAtIdSupple = New System.Windows.Forms.CheckBox() - Me.Label57 = New System.Windows.Forms.Label() - Me.CheckFavRestrict = New System.Windows.Forms.CheckBox() - Me.Button3 = New System.Windows.Forms.Button() - Me.PlaySnd = New System.Windows.Forms.CheckBox() - Me.Label15 = New System.Windows.Forms.Label() - Me.BrowserPathText = New System.Windows.Forms.TextBox() - Me.UReadMng = New System.Windows.Forms.CheckBox() - Me.Label44 = New System.Windows.Forms.Label() - Me.CheckCloseToExit = New System.Windows.Forms.CheckBox() - Me.CheckMinimizeToTray = New System.Windows.Forms.CheckBox() - Me.CheckReadOldPosts = New System.Windows.Forms.CheckBox() - Me.PreviewPanel = New System.Windows.Forms.Panel() - Me.ReplyIconStateCombo = New System.Windows.Forms.ComboBox() - Me.Label72 = New System.Windows.Forms.Label() - Me.ChkNewMentionsBlink = New System.Windows.Forms.CheckBox() - Me.chkTabIconDisp = New System.Windows.Forms.CheckBox() - Me.CheckPreviewEnable = New System.Windows.Forms.CheckBox() - Me.Label81 = New System.Windows.Forms.Label() - Me.LanguageCombo = New System.Windows.Forms.ComboBox() - Me.Label13 = New System.Windows.Forms.Label() - Me.CheckAlwaysTop = New System.Windows.Forms.CheckBox() - Me.CheckMonospace = New System.Windows.Forms.CheckBox() - Me.CheckBalloonLimit = New System.Windows.Forms.CheckBox() - Me.Label10 = New System.Windows.Forms.Label() - Me.ComboDispTitle = New System.Windows.Forms.ComboBox() - Me.Label45 = New System.Windows.Forms.Label() - Me.cmbNameBalloon = New System.Windows.Forms.ComboBox() - Me.CheckDispUsername = New System.Windows.Forms.CheckBox() - Me.CheckBox3 = New System.Windows.Forms.CheckBox() + Me.ProxyPanel = New System.Windows.Forms.Panel() + Me.Label55 = New System.Windows.Forms.Label() + Me.TextProxyPassword = New System.Windows.Forms.TextBox() + Me.RadioProxyNone = New System.Windows.Forms.RadioButton() + Me.LabelProxyPassword = New System.Windows.Forms.Label() + Me.RadioProxyIE = New System.Windows.Forms.RadioButton() + Me.TextProxyUser = New System.Windows.Forms.TextBox() + Me.RadioProxySpecified = New System.Windows.Forms.RadioButton() + Me.LabelProxyUser = New System.Windows.Forms.Label() + Me.LabelProxyAddress = New System.Windows.Forms.Label() + Me.TextProxyPort = New System.Windows.Forms.TextBox() + Me.TextProxyAddress = New System.Windows.Forms.TextBox() + Me.LabelProxyPort = New System.Windows.Forms.Label() Me.FontDialog1 = New System.Windows.Forms.FontDialog() Me.ColorDialog1 = New System.Windows.Forms.ColorDialog() Me.Cancel = New System.Windows.Forms.Button() @@ -240,22 +240,22 @@ Me.SplitContainer1.Panel1.SuspendLayout() Me.SplitContainer1.Panel2.SuspendLayout() Me.SplitContainer1.SuspendLayout() + Me.BasedPanel.SuspendLayout() + Me.GetPeriodPanel.SuspendLayout() + Me.StartupPanel.SuspendLayout() + Me.GetCountPanel.SuspendLayout() + Me.UserStreamPanel.SuspendLayout() + Me.ActionPanel.SuspendLayout() + Me.GroupBox3.SuspendLayout() Me.TweetActPanel.SuspendLayout() + Me.PreviewPanel.SuspendLayout() + Me.TweetPrvPanel.SuspendLayout() Me.FontPanel.SuspendLayout() Me.GroupBox1.SuspendLayout() - Me.GetPeriodPanel.SuspendLayout() - Me.GetCountPanel.SuspendLayout() Me.FontPanel2.SuspendLayout() Me.GroupBox5.SuspendLayout() - Me.BasedPanel.SuspendLayout() + Me.ConnectionPanel.SuspendLayout() Me.ProxyPanel.SuspendLayout() - Me.ConnectionPanel.SuspendLayout() - Me.UserStreamPanel.SuspendLayout() - Me.StartupPanel.SuspendLayout() - Me.TweetPrvPanel.SuspendLayout() - Me.ActionPanel.SuspendLayout() - Me.GroupBox3.SuspendLayout() - Me.PreviewPanel.SuspendLayout() Me.SuspendLayout() ' 'SplitContainer1 @@ -265,37 +265,515 @@ ' 'SplitContainer1.Panel1 ' - resources.ApplyResources(Me.SplitContainer1.Panel1, "SplitContainer1.Panel1") Me.SplitContainer1.Panel1.Controls.Add(Me.TreeView1) ' 'SplitContainer1.Panel2 ' - resources.ApplyResources(Me.SplitContainer1.Panel2, "SplitContainer1.Panel2") Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Control - Me.SplitContainer1.Panel2.Controls.Add(Me.TweetActPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.BasedPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.StartupPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.GetCountPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel2) - Me.SplitContainer1.Panel2.Controls.Add(Me.BasedPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.ProxyPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.ConnectionPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.UserStreamPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.StartupPanel) - Me.SplitContainer1.Panel2.Controls.Add(Me.TweetPrvPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.ActionPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.TweetActPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.PreviewPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.TweetPrvPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel2) + Me.SplitContainer1.Panel2.Controls.Add(Me.ConnectionPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.ProxyPanel) + Me.SplitContainer1.TabStop = False ' 'TreeView1 ' + Me.TreeView1.Cursor = System.Windows.Forms.Cursors.Hand resources.ApplyResources(Me.TreeView1, "TreeView1") - Me.TreeView1.Cursor = System.Windows.Forms.Cursors.Hand + Me.TreeView1.HideSelection = False Me.TreeView1.Name = "TreeView1" Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {CType(resources.GetObject("TreeView1.Nodes"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes1"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes2"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes3"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes4"), System.Windows.Forms.TreeNode)}) + Me.TreeView1.ShowLines = False ' + 'BasedPanel + ' + Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) + Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) + Me.BasedPanel.Controls.Add(Me.Label6) + Me.BasedPanel.Controls.Add(Me.AuthClearButton) + Me.BasedPanel.Controls.Add(Me.AuthUserLabel) + Me.BasedPanel.Controls.Add(Me.AuthStateLabel) + Me.BasedPanel.Controls.Add(Me.Label4) + Me.BasedPanel.Controls.Add(Me.AuthorizeButton) + Me.BasedPanel.Controls.Add(Me.Label1) + Me.BasedPanel.Controls.Add(Me.Label2) + Me.BasedPanel.Controls.Add(Me.Username) + Me.BasedPanel.Controls.Add(Me.Password) + resources.ApplyResources(Me.BasedPanel, "BasedPanel") + Me.BasedPanel.Name = "BasedPanel" + ' + 'AuthBasicRadio + ' + resources.ApplyResources(Me.AuthBasicRadio, "AuthBasicRadio") + Me.AuthBasicRadio.Name = "AuthBasicRadio" + Me.AuthBasicRadio.UseVisualStyleBackColor = True + ' + 'AuthOAuthRadio + ' + resources.ApplyResources(Me.AuthOAuthRadio, "AuthOAuthRadio") + Me.AuthOAuthRadio.Checked = True + Me.AuthOAuthRadio.Name = "AuthOAuthRadio" + Me.AuthOAuthRadio.TabStop = True + Me.AuthOAuthRadio.UseVisualStyleBackColor = True + ' + 'Label6 + ' + resources.ApplyResources(Me.Label6, "Label6") + Me.Label6.Name = "Label6" + ' + 'AuthClearButton + ' + resources.ApplyResources(Me.AuthClearButton, "AuthClearButton") + Me.AuthClearButton.Name = "AuthClearButton" + Me.AuthClearButton.UseVisualStyleBackColor = True + ' + 'AuthUserLabel + ' + Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") + Me.AuthUserLabel.Name = "AuthUserLabel" + ' + 'AuthStateLabel + ' + Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") + Me.AuthStateLabel.Name = "AuthStateLabel" + ' + 'Label4 + ' + resources.ApplyResources(Me.Label4, "Label4") + Me.Label4.Name = "Label4" + ' + 'AuthorizeButton + ' + resources.ApplyResources(Me.AuthorizeButton, "AuthorizeButton") + Me.AuthorizeButton.Name = "AuthorizeButton" + Me.AuthorizeButton.UseVisualStyleBackColor = True + ' + 'Label1 + ' + resources.ApplyResources(Me.Label1, "Label1") + Me.Label1.Name = "Label1" + ' + 'Label2 + ' + resources.ApplyResources(Me.Label2, "Label2") + Me.Label2.Name = "Label2" + ' + 'Username + ' + resources.ApplyResources(Me.Username, "Username") + Me.Username.Name = "Username" + ' + 'Password + ' + resources.ApplyResources(Me.Password, "Password") + Me.Password.Name = "Password" + Me.Password.UseSystemPasswordChar = True + ' + 'GetPeriodPanel + ' + Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label3) + Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) + Me.GetPeriodPanel.Controls.Add(Me.LabelPostAndGet) + Me.GetPeriodPanel.Controls.Add(Me.LabelApiUsing) + Me.GetPeriodPanel.Controls.Add(Me.Label33) + Me.GetPeriodPanel.Controls.Add(Me.ListsPeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label7) + Me.GetPeriodPanel.Controls.Add(Me.PubSearchPeriod) + Me.GetPeriodPanel.Controls.Add(Me.Label69) + Me.GetPeriodPanel.Controls.Add(Me.ReplyPeriod) + Me.GetPeriodPanel.Controls.Add(Me.CheckPostAndGet) + Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) + Me.GetPeriodPanel.Controls.Add(Me.Label5) + Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) + resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") + Me.GetPeriodPanel.Name = "GetPeriodPanel" + ' + 'TimelinePeriod + ' + resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") + Me.TimelinePeriod.Name = "TimelinePeriod" + ' + 'Label3 + ' + resources.ApplyResources(Me.Label3, "Label3") + Me.Label3.Name = "Label3" + ' + 'ButtonApiCalc + ' + resources.ApplyResources(Me.ButtonApiCalc, "ButtonApiCalc") + Me.ButtonApiCalc.Name = "ButtonApiCalc" + Me.ButtonApiCalc.UseVisualStyleBackColor = True + ' + 'LabelPostAndGet + ' + resources.ApplyResources(Me.LabelPostAndGet, "LabelPostAndGet") + Me.LabelPostAndGet.Name = "LabelPostAndGet" + ' + 'LabelApiUsing + ' + resources.ApplyResources(Me.LabelApiUsing, "LabelApiUsing") + Me.LabelApiUsing.Name = "LabelApiUsing" + ' + 'Label33 + ' + resources.ApplyResources(Me.Label33, "Label33") + Me.Label33.Name = "Label33" + ' + 'ListsPeriod + ' + resources.ApplyResources(Me.ListsPeriod, "ListsPeriod") + Me.ListsPeriod.Name = "ListsPeriod" + ' + 'Label7 + ' + resources.ApplyResources(Me.Label7, "Label7") + Me.Label7.Name = "Label7" + ' + 'PubSearchPeriod + ' + resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") + Me.PubSearchPeriod.Name = "PubSearchPeriod" + ' + 'Label69 + ' + resources.ApplyResources(Me.Label69, "Label69") + Me.Label69.Name = "Label69" + ' + 'ReplyPeriod + ' + resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") + Me.ReplyPeriod.Name = "ReplyPeriod" + ' + 'CheckPostAndGet + ' + resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") + Me.CheckPostAndGet.Name = "CheckPostAndGet" + Me.CheckPostAndGet.UseVisualStyleBackColor = True + ' + 'CheckPeriodAdjust + ' + resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") + Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" + Me.CheckPeriodAdjust.UseVisualStyleBackColor = True + ' + 'Label5 + ' + resources.ApplyResources(Me.Label5, "Label5") + Me.Label5.Name = "Label5" + ' + 'DMPeriod + ' + resources.ApplyResources(Me.DMPeriod, "DMPeriod") + Me.DMPeriod.Name = "DMPeriod" + ' + 'StartupPanel + ' + Me.StartupPanel.Controls.Add(Me.StartupReaded) + Me.StartupPanel.Controls.Add(Me.CheckStartupFollowers) + Me.StartupPanel.Controls.Add(Me.CheckStartupVersion) + Me.StartupPanel.Controls.Add(Me.chkGetFav) + resources.ApplyResources(Me.StartupPanel, "StartupPanel") + Me.StartupPanel.Name = "StartupPanel" + ' + 'StartupReaded + ' + resources.ApplyResources(Me.StartupReaded, "StartupReaded") + Me.StartupReaded.Name = "StartupReaded" + Me.StartupReaded.UseVisualStyleBackColor = True + ' + 'CheckStartupFollowers + ' + resources.ApplyResources(Me.CheckStartupFollowers, "CheckStartupFollowers") + Me.CheckStartupFollowers.Name = "CheckStartupFollowers" + Me.CheckStartupFollowers.UseVisualStyleBackColor = True + ' + 'CheckStartupVersion + ' + resources.ApplyResources(Me.CheckStartupVersion, "CheckStartupVersion") + Me.CheckStartupVersion.Name = "CheckStartupVersion" + Me.CheckStartupVersion.UseVisualStyleBackColor = True + ' + 'chkGetFav + ' + resources.ApplyResources(Me.chkGetFav, "chkGetFav") + Me.chkGetFav.Name = "chkGetFav" + Me.chkGetFav.UseVisualStyleBackColor = True + ' + 'GetCountPanel + ' + Me.GetCountPanel.Controls.Add(Me.Label30) + Me.GetCountPanel.Controls.Add(Me.Label28) + Me.GetCountPanel.Controls.Add(Me.Label19) + Me.GetCountPanel.Controls.Add(Me.FavoritesTextCountApi) + Me.GetCountPanel.Controls.Add(Me.SearchTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label66) + Me.GetCountPanel.Controls.Add(Me.FirstTextCountApi) + Me.GetCountPanel.Controls.Add(Me.GetMoreTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label53) + Me.GetCountPanel.Controls.Add(Me.UseChangeGetCount) + Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) + Me.GetCountPanel.Controls.Add(Me.Label67) + Me.GetCountPanel.Controls.Add(Me.TextCountApi) + resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") + Me.GetCountPanel.Name = "GetCountPanel" + ' + 'Label30 + ' + resources.ApplyResources(Me.Label30, "Label30") + Me.Label30.Name = "Label30" + ' + 'Label28 + ' + resources.ApplyResources(Me.Label28, "Label28") + Me.Label28.Name = "Label28" + ' + 'Label19 + ' + resources.ApplyResources(Me.Label19, "Label19") + Me.Label19.Name = "Label19" + ' + 'FavoritesTextCountApi + ' + resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") + Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" + ' + 'SearchTextCountApi + ' + resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") + Me.SearchTextCountApi.Name = "SearchTextCountApi" + ' + 'Label66 + ' + resources.ApplyResources(Me.Label66, "Label66") + Me.Label66.Name = "Label66" + ' + 'FirstTextCountApi + ' + resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") + Me.FirstTextCountApi.Name = "FirstTextCountApi" + ' + 'GetMoreTextCountApi + ' + resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") + Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" + ' + 'Label53 + ' + resources.ApplyResources(Me.Label53, "Label53") + Me.Label53.Name = "Label53" + ' + 'UseChangeGetCount + ' + resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") + Me.UseChangeGetCount.Name = "UseChangeGetCount" + Me.UseChangeGetCount.UseVisualStyleBackColor = True + ' + 'TextCountApiReply + ' + resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") + Me.TextCountApiReply.Name = "TextCountApiReply" + ' + 'Label67 + ' + resources.ApplyResources(Me.Label67, "Label67") + Me.Label67.Name = "Label67" + ' + 'TextCountApi + ' + resources.ApplyResources(Me.TextCountApi, "TextCountApi") + Me.TextCountApi.Name = "TextCountApi" + ' + 'UserStreamPanel + ' + Me.UserStreamPanel.Controls.Add(Me.UserstreamPeriod) + Me.UserStreamPanel.Controls.Add(Me.StartupUserstreamCheck) + Me.UserStreamPanel.Controls.Add(Me.Label83) + resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") + Me.UserStreamPanel.Name = "UserStreamPanel" + ' + 'UserstreamPeriod + ' + resources.ApplyResources(Me.UserstreamPeriod, "UserstreamPeriod") + Me.UserstreamPeriod.Name = "UserstreamPeriod" + ' + 'StartupUserstreamCheck + ' + resources.ApplyResources(Me.StartupUserstreamCheck, "StartupUserstreamCheck") + Me.StartupUserstreamCheck.Name = "StartupUserstreamCheck" + Me.StartupUserstreamCheck.UseVisualStyleBackColor = True + ' + 'Label83 + ' + resources.ApplyResources(Me.Label83, "Label83") + Me.Label83.Name = "Label83" + ' + 'ActionPanel + ' + Me.ActionPanel.Controls.Add(Me.GroupBox3) + Me.ActionPanel.Controls.Add(Me.CheckHashSupple) + Me.ActionPanel.Controls.Add(Me.CheckAtIdSupple) + Me.ActionPanel.Controls.Add(Me.Label57) + Me.ActionPanel.Controls.Add(Me.CheckFavRestrict) + Me.ActionPanel.Controls.Add(Me.Button3) + Me.ActionPanel.Controls.Add(Me.PlaySnd) + Me.ActionPanel.Controls.Add(Me.chkReadOwnPost) + Me.ActionPanel.Controls.Add(Me.Label15) + Me.ActionPanel.Controls.Add(Me.BrowserPathText) + Me.ActionPanel.Controls.Add(Me.UReadMng) + Me.ActionPanel.Controls.Add(Me.Label44) + Me.ActionPanel.Controls.Add(Me.CheckCloseToExit) + Me.ActionPanel.Controls.Add(Me.CheckMinimizeToTray) + Me.ActionPanel.Controls.Add(Me.CheckReadOldPosts) + resources.ApplyResources(Me.ActionPanel, "ActionPanel") + Me.ActionPanel.Name = "ActionPanel" + ' + 'GroupBox3 + ' + Me.GroupBox3.Controls.Add(Me.HotkeyCheck) + Me.GroupBox3.Controls.Add(Me.HotkeyCode) + Me.GroupBox3.Controls.Add(Me.HotkeyText) + Me.GroupBox3.Controls.Add(Me.HotkeyWin) + Me.GroupBox3.Controls.Add(Me.HotkeyAlt) + Me.GroupBox3.Controls.Add(Me.HotkeyShift) + Me.GroupBox3.Controls.Add(Me.HotkeyCtrl) + resources.ApplyResources(Me.GroupBox3, "GroupBox3") + Me.GroupBox3.Name = "GroupBox3" + Me.GroupBox3.TabStop = False + ' + 'HotkeyCheck + ' + resources.ApplyResources(Me.HotkeyCheck, "HotkeyCheck") + Me.HotkeyCheck.Name = "HotkeyCheck" + Me.HotkeyCheck.UseVisualStyleBackColor = True + ' + 'HotkeyCode + ' + resources.ApplyResources(Me.HotkeyCode, "HotkeyCode") + Me.HotkeyCode.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D + Me.HotkeyCode.Name = "HotkeyCode" + ' + 'HotkeyText + ' + resources.ApplyResources(Me.HotkeyText, "HotkeyText") + Me.HotkeyText.Name = "HotkeyText" + Me.HotkeyText.ReadOnly = True + ' + 'HotkeyWin + ' + resources.ApplyResources(Me.HotkeyWin, "HotkeyWin") + Me.HotkeyWin.Name = "HotkeyWin" + Me.HotkeyWin.UseVisualStyleBackColor = True + ' + 'HotkeyAlt + ' + resources.ApplyResources(Me.HotkeyAlt, "HotkeyAlt") + Me.HotkeyAlt.Name = "HotkeyAlt" + Me.HotkeyAlt.UseVisualStyleBackColor = True + ' + 'HotkeyShift + ' + resources.ApplyResources(Me.HotkeyShift, "HotkeyShift") + Me.HotkeyShift.Name = "HotkeyShift" + Me.HotkeyShift.UseVisualStyleBackColor = True + ' + 'HotkeyCtrl + ' + resources.ApplyResources(Me.HotkeyCtrl, "HotkeyCtrl") + Me.HotkeyCtrl.Name = "HotkeyCtrl" + Me.HotkeyCtrl.UseVisualStyleBackColor = True + ' + 'CheckHashSupple + ' + resources.ApplyResources(Me.CheckHashSupple, "CheckHashSupple") + Me.CheckHashSupple.Name = "CheckHashSupple" + Me.CheckHashSupple.UseVisualStyleBackColor = True + ' + 'CheckAtIdSupple + ' + resources.ApplyResources(Me.CheckAtIdSupple, "CheckAtIdSupple") + Me.CheckAtIdSupple.Name = "CheckAtIdSupple" + Me.CheckAtIdSupple.UseVisualStyleBackColor = True + ' + 'Label57 + ' + resources.ApplyResources(Me.Label57, "Label57") + Me.Label57.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label57.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label57.Name = "Label57" + ' + 'CheckFavRestrict + ' + resources.ApplyResources(Me.CheckFavRestrict, "CheckFavRestrict") + Me.CheckFavRestrict.Name = "CheckFavRestrict" + Me.CheckFavRestrict.UseVisualStyleBackColor = True + ' + 'Button3 + ' + resources.ApplyResources(Me.Button3, "Button3") + Me.Button3.Name = "Button3" + Me.Button3.UseVisualStyleBackColor = True + ' + 'PlaySnd + ' + resources.ApplyResources(Me.PlaySnd, "PlaySnd") + Me.PlaySnd.Name = "PlaySnd" + Me.PlaySnd.UseVisualStyleBackColor = True + ' + 'Label15 + ' + Me.Label15.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + resources.ApplyResources(Me.Label15, "Label15") + Me.Label15.Name = "Label15" + ' + 'BrowserPathText + ' + resources.ApplyResources(Me.BrowserPathText, "BrowserPathText") + Me.BrowserPathText.Name = "BrowserPathText" + ' + 'UReadMng + ' + resources.ApplyResources(Me.UReadMng, "UReadMng") + Me.UReadMng.Name = "UReadMng" + Me.UReadMng.UseVisualStyleBackColor = True + ' + 'Label44 + ' + resources.ApplyResources(Me.Label44, "Label44") + Me.Label44.Name = "Label44" + ' + 'CheckCloseToExit + ' + resources.ApplyResources(Me.CheckCloseToExit, "CheckCloseToExit") + Me.CheckCloseToExit.Name = "CheckCloseToExit" + Me.CheckCloseToExit.UseVisualStyleBackColor = True + ' + 'CheckMinimizeToTray + ' + resources.ApplyResources(Me.CheckMinimizeToTray, "CheckMinimizeToTray") + Me.CheckMinimizeToTray.Name = "CheckMinimizeToTray" + Me.CheckMinimizeToTray.UseVisualStyleBackColor = True + ' + 'CheckReadOldPosts + ' + resources.ApplyResources(Me.CheckReadOldPosts, "CheckReadOldPosts") + Me.CheckReadOldPosts.Name = "CheckReadOldPosts" + Me.CheckReadOldPosts.UseVisualStyleBackColor = True + ' 'TweetActPanel ' - resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") Me.TweetActPanel.Controls.Add(Me.TextBitlyPw) Me.TweetActPanel.Controls.Add(Me.ComboBoxPostKeySelect) Me.TweetActPanel.Controls.Add(Me.Label27) @@ -310,6 +788,7 @@ Me.TweetActPanel.Controls.Add(Me.Label71) Me.TweetActPanel.Controls.Add(Me.CheckTinyURL) Me.TweetActPanel.Controls.Add(Me.CheckAutoConvertUrl) + resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") Me.TweetActPanel.Name = "TweetActPanel" ' 'TextBitlyPw @@ -319,10 +798,10 @@ ' 'ComboBoxPostKeySelect ' - resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") Me.ComboBoxPostKeySelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxPostKeySelect.FormattingEnabled = True Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {resources.GetString("ComboBoxPostKeySelect.Items"), resources.GetString("ComboBoxPostKeySelect.Items1"), resources.GetString("ComboBoxPostKeySelect.Items2")}) + resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") Me.ComboBoxPostKeySelect.Name = "ComboBoxPostKeySelect" ' 'Label27 @@ -369,10 +848,10 @@ ' 'ComboBoxAutoShortUrlFirst ' - resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4")}) + resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" ' 'Label71 @@ -392,15 +871,236 @@ Me.CheckAutoConvertUrl.Name = "CheckAutoConvertUrl" Me.CheckAutoConvertUrl.UseVisualStyleBackColor = True ' + 'PreviewPanel + ' + Me.PreviewPanel.Controls.Add(Me.ReplyIconStateCombo) + Me.PreviewPanel.Controls.Add(Me.Label72) + Me.PreviewPanel.Controls.Add(Me.ChkNewMentionsBlink) + Me.PreviewPanel.Controls.Add(Me.chkTabIconDisp) + Me.PreviewPanel.Controls.Add(Me.CheckPreviewEnable) + Me.PreviewPanel.Controls.Add(Me.Label81) + Me.PreviewPanel.Controls.Add(Me.LanguageCombo) + Me.PreviewPanel.Controls.Add(Me.Label13) + Me.PreviewPanel.Controls.Add(Me.CheckAlwaysTop) + Me.PreviewPanel.Controls.Add(Me.CheckMonospace) + Me.PreviewPanel.Controls.Add(Me.CheckBalloonLimit) + Me.PreviewPanel.Controls.Add(Me.Label10) + Me.PreviewPanel.Controls.Add(Me.ComboDispTitle) + Me.PreviewPanel.Controls.Add(Me.Label45) + Me.PreviewPanel.Controls.Add(Me.cmbNameBalloon) + Me.PreviewPanel.Controls.Add(Me.CheckDispUsername) + Me.PreviewPanel.Controls.Add(Me.CheckBox3) + resources.ApplyResources(Me.PreviewPanel, "PreviewPanel") + Me.PreviewPanel.Name = "PreviewPanel" + ' + 'ReplyIconStateCombo + ' + Me.ReplyIconStateCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ReplyIconStateCombo.FormattingEnabled = True + Me.ReplyIconStateCombo.Items.AddRange(New Object() {resources.GetString("ReplyIconStateCombo.Items"), resources.GetString("ReplyIconStateCombo.Items1"), resources.GetString("ReplyIconStateCombo.Items2")}) + resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") + Me.ReplyIconStateCombo.Name = "ReplyIconStateCombo" + ' + 'Label72 + ' + resources.ApplyResources(Me.Label72, "Label72") + Me.Label72.Name = "Label72" + ' + 'ChkNewMentionsBlink + ' + resources.ApplyResources(Me.ChkNewMentionsBlink, "ChkNewMentionsBlink") + Me.ChkNewMentionsBlink.Name = "ChkNewMentionsBlink" + Me.ChkNewMentionsBlink.UseVisualStyleBackColor = True + ' + 'chkTabIconDisp + ' + resources.ApplyResources(Me.chkTabIconDisp, "chkTabIconDisp") + Me.chkTabIconDisp.Name = "chkTabIconDisp" + Me.chkTabIconDisp.UseVisualStyleBackColor = True + ' + 'CheckPreviewEnable + ' + resources.ApplyResources(Me.CheckPreviewEnable, "CheckPreviewEnable") + Me.CheckPreviewEnable.Name = "CheckPreviewEnable" + Me.CheckPreviewEnable.UseVisualStyleBackColor = True + ' + 'Label81 + ' + resources.ApplyResources(Me.Label81, "Label81") + Me.Label81.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label81.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label81.Name = "Label81" + ' + 'LanguageCombo + ' + Me.LanguageCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.LanguageCombo.FormattingEnabled = True + Me.LanguageCombo.Items.AddRange(New Object() {resources.GetString("LanguageCombo.Items"), resources.GetString("LanguageCombo.Items1"), resources.GetString("LanguageCombo.Items2"), resources.GetString("LanguageCombo.Items3")}) + resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") + Me.LanguageCombo.Name = "LanguageCombo" + ' + 'Label13 + ' + resources.ApplyResources(Me.Label13, "Label13") + Me.Label13.Name = "Label13" + ' + 'CheckAlwaysTop + ' + resources.ApplyResources(Me.CheckAlwaysTop, "CheckAlwaysTop") + Me.CheckAlwaysTop.Name = "CheckAlwaysTop" + Me.CheckAlwaysTop.UseVisualStyleBackColor = True + ' + 'CheckMonospace + ' + resources.ApplyResources(Me.CheckMonospace, "CheckMonospace") + Me.CheckMonospace.Name = "CheckMonospace" + Me.CheckMonospace.UseVisualStyleBackColor = True + ' + 'CheckBalloonLimit + ' + resources.ApplyResources(Me.CheckBalloonLimit, "CheckBalloonLimit") + Me.CheckBalloonLimit.Name = "CheckBalloonLimit" + Me.CheckBalloonLimit.UseVisualStyleBackColor = True + ' + 'Label10 + ' + resources.ApplyResources(Me.Label10, "Label10") + Me.Label10.Name = "Label10" + ' + 'ComboDispTitle + ' + Me.ComboDispTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboDispTitle.FormattingEnabled = True + Me.ComboDispTitle.Items.AddRange(New Object() {resources.GetString("ComboDispTitle.Items"), resources.GetString("ComboDispTitle.Items1"), resources.GetString("ComboDispTitle.Items2"), resources.GetString("ComboDispTitle.Items3"), resources.GetString("ComboDispTitle.Items4"), resources.GetString("ComboDispTitle.Items5"), resources.GetString("ComboDispTitle.Items6"), resources.GetString("ComboDispTitle.Items7")}) + resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") + Me.ComboDispTitle.Name = "ComboDispTitle" + ' + 'Label45 + ' + resources.ApplyResources(Me.Label45, "Label45") + Me.Label45.Name = "Label45" + ' + 'cmbNameBalloon + ' + Me.cmbNameBalloon.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.cmbNameBalloon.FormattingEnabled = True + Me.cmbNameBalloon.Items.AddRange(New Object() {resources.GetString("cmbNameBalloon.Items"), resources.GetString("cmbNameBalloon.Items1"), resources.GetString("cmbNameBalloon.Items2")}) + resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") + Me.cmbNameBalloon.Name = "cmbNameBalloon" + ' + 'CheckDispUsername + ' + resources.ApplyResources(Me.CheckDispUsername, "CheckDispUsername") + Me.CheckDispUsername.Name = "CheckDispUsername" + Me.CheckDispUsername.UseVisualStyleBackColor = True + ' + 'CheckBox3 + ' + resources.ApplyResources(Me.CheckBox3, "CheckBox3") + Me.CheckBox3.Name = "CheckBox3" + Me.CheckBox3.UseVisualStyleBackColor = True + ' + 'TweetPrvPanel + ' + Me.TweetPrvPanel.Controls.Add(Me.Label47) + Me.TweetPrvPanel.Controls.Add(Me.LabelDateTimeFormatApplied) + Me.TweetPrvPanel.Controls.Add(Me.Label62) + Me.TweetPrvPanel.Controls.Add(Me.CmbDateTimeFormat) + Me.TweetPrvPanel.Controls.Add(Me.Label23) + Me.TweetPrvPanel.Controls.Add(Me.Label11) + Me.TweetPrvPanel.Controls.Add(Me.IconSize) + Me.TweetPrvPanel.Controls.Add(Me.TextBox3) + Me.TweetPrvPanel.Controls.Add(Me.CheckSortOrderLock) + Me.TweetPrvPanel.Controls.Add(Me.CheckShowGrid) + Me.TweetPrvPanel.Controls.Add(Me.chkUnreadStyle) + Me.TweetPrvPanel.Controls.Add(Me.OneWayLv) + resources.ApplyResources(Me.TweetPrvPanel, "TweetPrvPanel") + Me.TweetPrvPanel.Name = "TweetPrvPanel" + ' + 'Label47 + ' + resources.ApplyResources(Me.Label47, "Label47") + Me.Label47.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label47.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label47.Name = "Label47" + ' + 'LabelDateTimeFormatApplied + ' + resources.ApplyResources(Me.LabelDateTimeFormatApplied, "LabelDateTimeFormatApplied") + Me.LabelDateTimeFormatApplied.Name = "LabelDateTimeFormatApplied" + ' + 'Label62 + ' + resources.ApplyResources(Me.Label62, "Label62") + Me.Label62.Name = "Label62" + ' + 'CmbDateTimeFormat + ' + resources.ApplyResources(Me.CmbDateTimeFormat, "CmbDateTimeFormat") + Me.CmbDateTimeFormat.Items.AddRange(New Object() {resources.GetString("CmbDateTimeFormat.Items"), resources.GetString("CmbDateTimeFormat.Items1"), resources.GetString("CmbDateTimeFormat.Items2"), resources.GetString("CmbDateTimeFormat.Items3"), resources.GetString("CmbDateTimeFormat.Items4"), resources.GetString("CmbDateTimeFormat.Items5"), resources.GetString("CmbDateTimeFormat.Items6"), resources.GetString("CmbDateTimeFormat.Items7"), resources.GetString("CmbDateTimeFormat.Items8"), resources.GetString("CmbDateTimeFormat.Items9"), resources.GetString("CmbDateTimeFormat.Items10")}) + Me.CmbDateTimeFormat.Name = "CmbDateTimeFormat" + ' + 'Label23 + ' + resources.ApplyResources(Me.Label23, "Label23") + Me.Label23.Name = "Label23" + ' + 'Label11 + ' + resources.ApplyResources(Me.Label11, "Label11") + Me.Label11.Name = "Label11" + ' + 'IconSize + ' + Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.IconSize.FormattingEnabled = True + Me.IconSize.Items.AddRange(New Object() {resources.GetString("IconSize.Items"), resources.GetString("IconSize.Items1"), resources.GetString("IconSize.Items2"), resources.GetString("IconSize.Items3"), resources.GetString("IconSize.Items4")}) + resources.ApplyResources(Me.IconSize, "IconSize") + Me.IconSize.Name = "IconSize" + ' + 'TextBox3 + ' + resources.ApplyResources(Me.TextBox3, "TextBox3") + Me.TextBox3.Name = "TextBox3" + ' + 'CheckSortOrderLock + ' + resources.ApplyResources(Me.CheckSortOrderLock, "CheckSortOrderLock") + Me.CheckSortOrderLock.Name = "CheckSortOrderLock" + Me.CheckSortOrderLock.UseVisualStyleBackColor = True + ' + 'CheckShowGrid + ' + resources.ApplyResources(Me.CheckShowGrid, "CheckShowGrid") + Me.CheckShowGrid.Name = "CheckShowGrid" + Me.CheckShowGrid.UseVisualStyleBackColor = True + ' + 'chkReadOwnPost + ' + resources.ApplyResources(Me.chkReadOwnPost, "chkReadOwnPost") + Me.chkReadOwnPost.Name = "chkReadOwnPost" + Me.chkReadOwnPost.UseVisualStyleBackColor = True + ' + 'chkUnreadStyle + ' + resources.ApplyResources(Me.chkUnreadStyle, "chkUnreadStyle") + Me.chkUnreadStyle.Name = "chkUnreadStyle" + Me.chkUnreadStyle.UseVisualStyleBackColor = True + ' + 'OneWayLv + ' + resources.ApplyResources(Me.OneWayLv, "OneWayLv") + Me.OneWayLv.Name = "OneWayLv" + Me.OneWayLv.UseVisualStyleBackColor = True + ' 'FontPanel ' + Me.FontPanel.Controls.Add(Me.GroupBox1) resources.ApplyResources(Me.FontPanel, "FontPanel") - Me.FontPanel.Controls.Add(Me.GroupBox1) Me.FontPanel.Name = "FontPanel" ' 'GroupBox1 ' - resources.ApplyResources(Me.GroupBox1, "GroupBox1") Me.GroupBox1.Controls.Add(Me.btnRetweet) Me.GroupBox1.Controls.Add(Me.lblRetweet) Me.GroupBox1.Controls.Add(Me.Label80) @@ -426,6 +1126,7 @@ Me.GroupBox1.Controls.Add(Me.btnListFont) Me.GroupBox1.Controls.Add(Me.lblListFont) Me.GroupBox1.Controls.Add(Me.Label61) + resources.ApplyResources(Me.GroupBox1, "GroupBox1") Me.GroupBox1.Name = "GroupBox1" Me.GroupBox1.TabStop = False ' @@ -437,8 +1138,8 @@ ' 'lblRetweet ' + Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblRetweet, "lblRetweet") - Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblRetweet.Name = "lblRetweet" ' 'Label80 @@ -460,8 +1161,8 @@ ' 'lblDetailLink ' + Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") - Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblDetailLink.Name = "lblDetailLink" ' 'Label18 @@ -477,8 +1178,8 @@ ' 'lblUnread ' + Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblUnread, "lblUnread") - Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblUnread.Name = "lblUnread" ' 'Label20 @@ -494,8 +1195,8 @@ ' 'lblDetailBackcolor ' + Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") - Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblDetailBackcolor.Name = "lblDetailBackcolor" ' 'Label37 @@ -511,8 +1212,8 @@ ' 'lblDetail ' + Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblDetail, "lblDetail") - Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblDetail.Name = "lblDetail" ' 'Label26 @@ -528,8 +1229,8 @@ ' 'lblOWL ' + Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblOWL, "lblOWL") - Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblOWL.Name = "lblOWL" ' 'Label24 @@ -545,8 +1246,8 @@ ' 'lblFav ' + Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblFav, "lblFav") - Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblFav.Name = "lblFav" ' 'Label22 @@ -562,8 +1263,8 @@ ' 'lblListFont ' + Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblListFont, "lblListFont") - Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblListFont.Name = "lblListFont" ' 'Label61 @@ -571,197 +1272,14 @@ resources.ApplyResources(Me.Label61, "Label61") Me.Label61.Name = "Label61" ' - 'GetPeriodPanel - ' - resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") - Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) - Me.GetPeriodPanel.Controls.Add(Me.Label3) - Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) - Me.GetPeriodPanel.Controls.Add(Me.LabelPostAndGet) - Me.GetPeriodPanel.Controls.Add(Me.LabelApiUsing) - Me.GetPeriodPanel.Controls.Add(Me.Label33) - Me.GetPeriodPanel.Controls.Add(Me.ListsPeriod) - Me.GetPeriodPanel.Controls.Add(Me.Label7) - Me.GetPeriodPanel.Controls.Add(Me.PubSearchPeriod) - Me.GetPeriodPanel.Controls.Add(Me.Label69) - Me.GetPeriodPanel.Controls.Add(Me.ReplyPeriod) - Me.GetPeriodPanel.Controls.Add(Me.CheckPostAndGet) - Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) - Me.GetPeriodPanel.Controls.Add(Me.Label5) - Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) - Me.GetPeriodPanel.Name = "GetPeriodPanel" - ' - 'TimelinePeriod - ' - resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") - Me.TimelinePeriod.Name = "TimelinePeriod" - ' - 'Label3 - ' - resources.ApplyResources(Me.Label3, "Label3") - Me.Label3.Name = "Label3" - ' - 'ButtonApiCalc - ' - resources.ApplyResources(Me.ButtonApiCalc, "ButtonApiCalc") - Me.ButtonApiCalc.Name = "ButtonApiCalc" - Me.ButtonApiCalc.UseVisualStyleBackColor = True - ' - 'LabelPostAndGet - ' - resources.ApplyResources(Me.LabelPostAndGet, "LabelPostAndGet") - Me.LabelPostAndGet.Name = "LabelPostAndGet" - ' - 'LabelApiUsing - ' - resources.ApplyResources(Me.LabelApiUsing, "LabelApiUsing") - Me.LabelApiUsing.Name = "LabelApiUsing" - ' - 'Label33 - ' - resources.ApplyResources(Me.Label33, "Label33") - Me.Label33.Name = "Label33" - ' - 'ListsPeriod - ' - resources.ApplyResources(Me.ListsPeriod, "ListsPeriod") - Me.ListsPeriod.Name = "ListsPeriod" - ' - 'Label7 - ' - resources.ApplyResources(Me.Label7, "Label7") - Me.Label7.Name = "Label7" - ' - 'PubSearchPeriod - ' - resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") - Me.PubSearchPeriod.Name = "PubSearchPeriod" - ' - 'Label69 - ' - resources.ApplyResources(Me.Label69, "Label69") - Me.Label69.Name = "Label69" - ' - 'ReplyPeriod - ' - resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") - Me.ReplyPeriod.Name = "ReplyPeriod" - ' - 'CheckPostAndGet - ' - resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") - Me.CheckPostAndGet.Name = "CheckPostAndGet" - Me.CheckPostAndGet.UseVisualStyleBackColor = True - ' - 'CheckPeriodAdjust - ' - resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") - Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" - Me.CheckPeriodAdjust.UseVisualStyleBackColor = True - ' - 'Label5 - ' - resources.ApplyResources(Me.Label5, "Label5") - Me.Label5.Name = "Label5" - ' - 'DMPeriod - ' - resources.ApplyResources(Me.DMPeriod, "DMPeriod") - Me.DMPeriod.Name = "DMPeriod" - ' - 'GetCountPanel - ' - resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") - Me.GetCountPanel.Controls.Add(Me.Label30) - Me.GetCountPanel.Controls.Add(Me.Label28) - Me.GetCountPanel.Controls.Add(Me.Label19) - Me.GetCountPanel.Controls.Add(Me.FavoritesTextCountApi) - Me.GetCountPanel.Controls.Add(Me.SearchTextCountApi) - Me.GetCountPanel.Controls.Add(Me.Label66) - Me.GetCountPanel.Controls.Add(Me.FirstTextCountApi) - Me.GetCountPanel.Controls.Add(Me.GetMoreTextCountApi) - Me.GetCountPanel.Controls.Add(Me.Label53) - Me.GetCountPanel.Controls.Add(Me.UseChangeGetCount) - Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) - Me.GetCountPanel.Controls.Add(Me.Label67) - Me.GetCountPanel.Controls.Add(Me.TextCountApi) - Me.GetCountPanel.Name = "GetCountPanel" - ' - 'Label30 - ' - resources.ApplyResources(Me.Label30, "Label30") - Me.Label30.Name = "Label30" - ' - 'Label28 - ' - resources.ApplyResources(Me.Label28, "Label28") - Me.Label28.Name = "Label28" - ' - 'Label19 - ' - resources.ApplyResources(Me.Label19, "Label19") - Me.Label19.Name = "Label19" - ' - 'FavoritesTextCountApi - ' - resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") - Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" - ' - 'SearchTextCountApi - ' - resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") - Me.SearchTextCountApi.Name = "SearchTextCountApi" - ' - 'Label66 - ' - resources.ApplyResources(Me.Label66, "Label66") - Me.Label66.Name = "Label66" - ' - 'FirstTextCountApi - ' - resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") - Me.FirstTextCountApi.Name = "FirstTextCountApi" - ' - 'GetMoreTextCountApi - ' - resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") - Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" - ' - 'Label53 - ' - resources.ApplyResources(Me.Label53, "Label53") - Me.Label53.Name = "Label53" - ' - 'UseChangeGetCount - ' - resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") - Me.UseChangeGetCount.Name = "UseChangeGetCount" - Me.UseChangeGetCount.UseVisualStyleBackColor = True - ' - 'TextCountApiReply - ' - resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") - Me.TextCountApiReply.Name = "TextCountApiReply" - ' - 'Label67 - ' - resources.ApplyResources(Me.Label67, "Label67") - Me.Label67.Name = "Label67" - ' - 'TextCountApi - ' - resources.ApplyResources(Me.TextCountApi, "TextCountApi") - Me.TextCountApi.Name = "TextCountApi" - ' 'FontPanel2 ' + Me.FontPanel2.Controls.Add(Me.GroupBox5) resources.ApplyResources(Me.FontPanel2, "FontPanel2") - Me.FontPanel2.Controls.Add(Me.GroupBox5) Me.FontPanel2.Name = "FontPanel2" ' 'GroupBox5 ' - resources.ApplyResources(Me.GroupBox5, "GroupBox5") Me.GroupBox5.Controls.Add(Me.Label65) Me.GroupBox5.Controls.Add(Me.Label52) Me.GroupBox5.Controls.Add(Me.Label49) @@ -790,6 +1308,7 @@ Me.GroupBox5.Controls.Add(Me.lblAtSelf) Me.GroupBox5.Controls.Add(Me.lblSelf) Me.GroupBox5.Controls.Add(Me.ButtonBackToDefaultFontColor2) + resources.ApplyResources(Me.GroupBox5, "GroupBox5") Me.GroupBox5.Name = "GroupBox5" Me.GroupBox5.TabStop = False ' @@ -894,56 +1413,56 @@ ' 'lblInputFont ' + Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblInputFont, "lblInputFont") - Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblInputFont.Name = "lblInputFont" ' 'lblInputBackcolor ' + Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") - Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblInputBackcolor.Name = "lblInputBackcolor" ' 'lblAtTo ' + Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblAtTo, "lblAtTo") - Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblAtTo.Name = "lblAtTo" ' 'lblListBackcolor ' + Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") - Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblListBackcolor.Name = "lblListBackcolor" ' 'lblAtFromTarget ' + Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") - Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblAtFromTarget.Name = "lblAtFromTarget" ' 'lblAtTarget ' + Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") - Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblAtTarget.Name = "lblAtTarget" ' 'lblTarget ' + Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblTarget, "lblTarget") - Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblTarget.Name = "lblTarget" ' 'lblAtSelf ' + Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") - Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblAtSelf.Name = "lblAtSelf" ' 'lblSelf ' + Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblSelf, "lblSelf") - Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblSelf.Name = "lblSelf" ' 'ButtonBackToDefaultFontColor2 @@ -952,180 +1471,8 @@ Me.ButtonBackToDefaultFontColor2.Name = "ButtonBackToDefaultFontColor2" Me.ButtonBackToDefaultFontColor2.UseVisualStyleBackColor = True ' - 'BasedPanel - ' - resources.ApplyResources(Me.BasedPanel, "BasedPanel") - Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) - Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) - Me.BasedPanel.Controls.Add(Me.Label6) - Me.BasedPanel.Controls.Add(Me.AuthClearButton) - Me.BasedPanel.Controls.Add(Me.AuthUserLabel) - Me.BasedPanel.Controls.Add(Me.AuthStateLabel) - Me.BasedPanel.Controls.Add(Me.Label4) - Me.BasedPanel.Controls.Add(Me.AuthorizeButton) - Me.BasedPanel.Controls.Add(Me.Label1) - Me.BasedPanel.Controls.Add(Me.Label2) - Me.BasedPanel.Controls.Add(Me.Username) - Me.BasedPanel.Controls.Add(Me.Password) - Me.BasedPanel.Name = "BasedPanel" - ' - 'AuthBasicRadio - ' - resources.ApplyResources(Me.AuthBasicRadio, "AuthBasicRadio") - Me.AuthBasicRadio.Name = "AuthBasicRadio" - Me.AuthBasicRadio.UseVisualStyleBackColor = True - ' - 'AuthOAuthRadio - ' - resources.ApplyResources(Me.AuthOAuthRadio, "AuthOAuthRadio") - Me.AuthOAuthRadio.Checked = True - Me.AuthOAuthRadio.Name = "AuthOAuthRadio" - Me.AuthOAuthRadio.TabStop = True - Me.AuthOAuthRadio.UseVisualStyleBackColor = True - ' - 'Label6 - ' - resources.ApplyResources(Me.Label6, "Label6") - Me.Label6.Name = "Label6" - ' - 'AuthClearButton - ' - resources.ApplyResources(Me.AuthClearButton, "AuthClearButton") - Me.AuthClearButton.Name = "AuthClearButton" - Me.AuthClearButton.UseVisualStyleBackColor = True - ' - 'AuthUserLabel - ' - resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") - Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.AuthUserLabel.Name = "AuthUserLabel" - ' - 'AuthStateLabel - ' - resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") - Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.AuthStateLabel.Name = "AuthStateLabel" - ' - 'Label4 - ' - resources.ApplyResources(Me.Label4, "Label4") - Me.Label4.Name = "Label4" - ' - 'AuthorizeButton - ' - resources.ApplyResources(Me.AuthorizeButton, "AuthorizeButton") - Me.AuthorizeButton.Name = "AuthorizeButton" - Me.AuthorizeButton.UseVisualStyleBackColor = True - ' - 'Label1 - ' - resources.ApplyResources(Me.Label1, "Label1") - Me.Label1.Name = "Label1" - ' - 'Label2 - ' - resources.ApplyResources(Me.Label2, "Label2") - Me.Label2.Name = "Label2" - ' - 'Username - ' - resources.ApplyResources(Me.Username, "Username") - Me.Username.Name = "Username" - ' - 'Password - ' - resources.ApplyResources(Me.Password, "Password") - Me.Password.Name = "Password" - Me.Password.UseSystemPasswordChar = True - ' - 'ProxyPanel - ' - resources.ApplyResources(Me.ProxyPanel, "ProxyPanel") - Me.ProxyPanel.Controls.Add(Me.Label55) - Me.ProxyPanel.Controls.Add(Me.TextProxyPassword) - Me.ProxyPanel.Controls.Add(Me.RadioProxyNone) - Me.ProxyPanel.Controls.Add(Me.LabelProxyPassword) - Me.ProxyPanel.Controls.Add(Me.RadioProxyIE) - Me.ProxyPanel.Controls.Add(Me.TextProxyUser) - Me.ProxyPanel.Controls.Add(Me.RadioProxySpecified) - Me.ProxyPanel.Controls.Add(Me.LabelProxyUser) - Me.ProxyPanel.Controls.Add(Me.LabelProxyAddress) - Me.ProxyPanel.Controls.Add(Me.TextProxyPort) - Me.ProxyPanel.Controls.Add(Me.TextProxyAddress) - Me.ProxyPanel.Controls.Add(Me.LabelProxyPort) - Me.ProxyPanel.Name = "ProxyPanel" - ' - 'Label55 - ' - resources.ApplyResources(Me.Label55, "Label55") - Me.Label55.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label55.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label55.Name = "Label55" - ' - 'TextProxyPassword - ' - resources.ApplyResources(Me.TextProxyPassword, "TextProxyPassword") - Me.TextProxyPassword.Name = "TextProxyPassword" - Me.TextProxyPassword.UseSystemPasswordChar = True - ' - 'RadioProxyNone - ' - resources.ApplyResources(Me.RadioProxyNone, "RadioProxyNone") - Me.RadioProxyNone.Name = "RadioProxyNone" - Me.RadioProxyNone.UseVisualStyleBackColor = True - ' - 'LabelProxyPassword - ' - resources.ApplyResources(Me.LabelProxyPassword, "LabelProxyPassword") - Me.LabelProxyPassword.Name = "LabelProxyPassword" - ' - 'RadioProxyIE - ' - resources.ApplyResources(Me.RadioProxyIE, "RadioProxyIE") - Me.RadioProxyIE.Checked = True - Me.RadioProxyIE.Name = "RadioProxyIE" - Me.RadioProxyIE.TabStop = True - Me.RadioProxyIE.UseVisualStyleBackColor = True - ' - 'TextProxyUser - ' - resources.ApplyResources(Me.TextProxyUser, "TextProxyUser") - Me.TextProxyUser.Name = "TextProxyUser" - ' - 'RadioProxySpecified - ' - resources.ApplyResources(Me.RadioProxySpecified, "RadioProxySpecified") - Me.RadioProxySpecified.Name = "RadioProxySpecified" - Me.RadioProxySpecified.UseVisualStyleBackColor = True - ' - 'LabelProxyUser - ' - resources.ApplyResources(Me.LabelProxyUser, "LabelProxyUser") - Me.LabelProxyUser.Name = "LabelProxyUser" - ' - 'LabelProxyAddress - ' - resources.ApplyResources(Me.LabelProxyAddress, "LabelProxyAddress") - Me.LabelProxyAddress.Name = "LabelProxyAddress" - ' - 'TextProxyPort - ' - resources.ApplyResources(Me.TextProxyPort, "TextProxyPort") - Me.TextProxyPort.Name = "TextProxyPort" - ' - 'TextProxyAddress - ' - resources.ApplyResources(Me.TextProxyAddress, "TextProxyAddress") - Me.TextProxyAddress.Name = "TextProxyAddress" - ' - 'LabelProxyPort - ' - resources.ApplyResources(Me.LabelProxyPort, "LabelProxyPort") - Me.LabelProxyPort.Name = "LabelProxyPort" - ' 'ConnectionPanel ' - resources.ApplyResources(Me.ConnectionPanel, "ConnectionPanel") Me.ConnectionPanel.Controls.Add(Me.CheckNicoms) Me.ConnectionPanel.Controls.Add(Me.Label60) Me.ConnectionPanel.Controls.Add(Me.ComboBoxOutputzUrlmode) @@ -1141,6 +1488,7 @@ Me.ConnectionPanel.Controls.Add(Me.Label64) Me.ConnectionPanel.Controls.Add(Me.ConnectionTimeOut) Me.ConnectionPanel.Controls.Add(Me.Label63) + resources.ApplyResources(Me.ConnectionPanel, "ConnectionPanel") Me.ConnectionPanel.Name = "ConnectionPanel" ' 'CheckNicoms @@ -1156,10 +1504,10 @@ ' 'ComboBoxOutputzUrlmode ' - resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxOutputzUrlmode.FormattingEnabled = True Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {resources.GetString("ComboBoxOutputzUrlmode.Items"), resources.GetString("ComboBoxOutputzUrlmode.Items1")}) + resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" ' 'Label59 @@ -1227,450 +1575,103 @@ resources.ApplyResources(Me.Label63, "Label63") Me.Label63.Name = "Label63" ' - 'UserStreamPanel + 'ProxyPanel ' - resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") - Me.UserStreamPanel.Controls.Add(Me.UserstreamPeriod) - Me.UserStreamPanel.Controls.Add(Me.StartupUserstreamCheck) - Me.UserStreamPanel.Controls.Add(Me.Label83) - Me.UserStreamPanel.Name = "UserStreamPanel" + Me.ProxyPanel.Controls.Add(Me.Label55) + Me.ProxyPanel.Controls.Add(Me.TextProxyPassword) + Me.ProxyPanel.Controls.Add(Me.RadioProxyNone) + Me.ProxyPanel.Controls.Add(Me.LabelProxyPassword) + Me.ProxyPanel.Controls.Add(Me.RadioProxyIE) + Me.ProxyPanel.Controls.Add(Me.TextProxyUser) + Me.ProxyPanel.Controls.Add(Me.RadioProxySpecified) + Me.ProxyPanel.Controls.Add(Me.LabelProxyUser) + Me.ProxyPanel.Controls.Add(Me.LabelProxyAddress) + Me.ProxyPanel.Controls.Add(Me.TextProxyPort) + Me.ProxyPanel.Controls.Add(Me.TextProxyAddress) + Me.ProxyPanel.Controls.Add(Me.LabelProxyPort) + resources.ApplyResources(Me.ProxyPanel, "ProxyPanel") + Me.ProxyPanel.Name = "ProxyPanel" ' - 'UserstreamPeriod + 'Label55 ' - resources.ApplyResources(Me.UserstreamPeriod, "UserstreamPeriod") - Me.UserstreamPeriod.Name = "UserstreamPeriod" + resources.ApplyResources(Me.Label55, "Label55") + Me.Label55.BackColor = System.Drawing.SystemColors.ActiveCaption + Me.Label55.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + Me.Label55.Name = "Label55" ' - 'StartupUserstreamCheck + 'TextProxyPassword ' - resources.ApplyResources(Me.StartupUserstreamCheck, "StartupUserstreamCheck") - Me.StartupUserstreamCheck.Name = "StartupUserstreamCheck" - Me.StartupUserstreamCheck.UseVisualStyleBackColor = True + resources.ApplyResources(Me.TextProxyPassword, "TextProxyPassword") + Me.TextProxyPassword.Name = "TextProxyPassword" + Me.TextProxyPassword.UseSystemPasswordChar = True ' - 'Label83 + 'RadioProxyNone ' - resources.ApplyResources(Me.Label83, "Label83") - Me.Label83.Name = "Label83" + resources.ApplyResources(Me.RadioProxyNone, "RadioProxyNone") + Me.RadioProxyNone.Name = "RadioProxyNone" + Me.RadioProxyNone.UseVisualStyleBackColor = True ' - 'StartupPanel + 'LabelProxyPassword ' - resources.ApplyResources(Me.StartupPanel, "StartupPanel") - Me.StartupPanel.Controls.Add(Me.StartupReaded) - Me.StartupPanel.Controls.Add(Me.CheckStartupFollowers) - Me.StartupPanel.Controls.Add(Me.CheckStartupVersion) - Me.StartupPanel.Controls.Add(Me.chkGetFav) - Me.StartupPanel.Name = "StartupPanel" + resources.ApplyResources(Me.LabelProxyPassword, "LabelProxyPassword") + Me.LabelProxyPassword.Name = "LabelProxyPassword" ' - 'StartupReaded + 'RadioProxyIE ' - resources.ApplyResources(Me.StartupReaded, "StartupReaded") - Me.StartupReaded.Name = "StartupReaded" - Me.StartupReaded.UseVisualStyleBackColor = True + resources.ApplyResources(Me.RadioProxyIE, "RadioProxyIE") + Me.RadioProxyIE.Checked = True + Me.RadioProxyIE.Name = "RadioProxyIE" + Me.RadioProxyIE.TabStop = True + Me.RadioProxyIE.UseVisualStyleBackColor = True ' - 'CheckStartupFollowers + 'TextProxyUser ' - resources.ApplyResources(Me.CheckStartupFollowers, "CheckStartupFollowers") - Me.CheckStartupFollowers.Name = "CheckStartupFollowers" - Me.CheckStartupFollowers.UseVisualStyleBackColor = True + resources.ApplyResources(Me.TextProxyUser, "TextProxyUser") + Me.TextProxyUser.Name = "TextProxyUser" ' - 'CheckStartupVersion + 'RadioProxySpecified ' - resources.ApplyResources(Me.CheckStartupVersion, "CheckStartupVersion") - Me.CheckStartupVersion.Name = "CheckStartupVersion" - Me.CheckStartupVersion.UseVisualStyleBackColor = True + resources.ApplyResources(Me.RadioProxySpecified, "RadioProxySpecified") + Me.RadioProxySpecified.Name = "RadioProxySpecified" + Me.RadioProxySpecified.UseVisualStyleBackColor = True ' - 'chkGetFav + 'LabelProxyUser ' - resources.ApplyResources(Me.chkGetFav, "chkGetFav") - Me.chkGetFav.Name = "chkGetFav" - Me.chkGetFav.UseVisualStyleBackColor = True + resources.ApplyResources(Me.LabelProxyUser, "LabelProxyUser") + Me.LabelProxyUser.Name = "LabelProxyUser" ' - 'TweetPrvPanel + 'LabelProxyAddress ' - resources.ApplyResources(Me.TweetPrvPanel, "TweetPrvPanel") - Me.TweetPrvPanel.Controls.Add(Me.Label47) - Me.TweetPrvPanel.Controls.Add(Me.LabelDateTimeFormatApplied) - Me.TweetPrvPanel.Controls.Add(Me.Label62) - Me.TweetPrvPanel.Controls.Add(Me.CmbDateTimeFormat) - Me.TweetPrvPanel.Controls.Add(Me.Label23) - Me.TweetPrvPanel.Controls.Add(Me.Label11) - Me.TweetPrvPanel.Controls.Add(Me.IconSize) - Me.TweetPrvPanel.Controls.Add(Me.TextBox3) - Me.TweetPrvPanel.Controls.Add(Me.CheckSortOrderLock) - Me.TweetPrvPanel.Controls.Add(Me.CheckShowGrid) - Me.TweetPrvPanel.Controls.Add(Me.chkReadOwnPost) - Me.TweetPrvPanel.Controls.Add(Me.chkUnreadStyle) - Me.TweetPrvPanel.Controls.Add(Me.OneWayLv) - Me.TweetPrvPanel.Name = "TweetPrvPanel" + resources.ApplyResources(Me.LabelProxyAddress, "LabelProxyAddress") + Me.LabelProxyAddress.Name = "LabelProxyAddress" ' - 'Label47 + 'TextProxyPort ' - resources.ApplyResources(Me.Label47, "Label47") - Me.Label47.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label47.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label47.Name = "Label47" + resources.ApplyResources(Me.TextProxyPort, "TextProxyPort") + Me.TextProxyPort.Name = "TextProxyPort" ' - 'LabelDateTimeFormatApplied + 'TextProxyAddress ' - resources.ApplyResources(Me.LabelDateTimeFormatApplied, "LabelDateTimeFormatApplied") - Me.LabelDateTimeFormatApplied.Name = "LabelDateTimeFormatApplied" + resources.ApplyResources(Me.TextProxyAddress, "TextProxyAddress") + Me.TextProxyAddress.Name = "TextProxyAddress" ' - 'Label62 + 'LabelProxyPort ' - resources.ApplyResources(Me.Label62, "Label62") - Me.Label62.Name = "Label62" + resources.ApplyResources(Me.LabelProxyPort, "LabelProxyPort") + Me.LabelProxyPort.Name = "LabelProxyPort" ' - 'CmbDateTimeFormat - ' - resources.ApplyResources(Me.CmbDateTimeFormat, "CmbDateTimeFormat") - Me.CmbDateTimeFormat.Items.AddRange(New Object() {resources.GetString("CmbDateTimeFormat.Items"), resources.GetString("CmbDateTimeFormat.Items1"), resources.GetString("CmbDateTimeFormat.Items2"), resources.GetString("CmbDateTimeFormat.Items3"), resources.GetString("CmbDateTimeFormat.Items4"), resources.GetString("CmbDateTimeFormat.Items5"), resources.GetString("CmbDateTimeFormat.Items6"), resources.GetString("CmbDateTimeFormat.Items7"), resources.GetString("CmbDateTimeFormat.Items8"), resources.GetString("CmbDateTimeFormat.Items9"), resources.GetString("CmbDateTimeFormat.Items10")}) - Me.CmbDateTimeFormat.Name = "CmbDateTimeFormat" - ' - 'Label23 - ' - resources.ApplyResources(Me.Label23, "Label23") - Me.Label23.Name = "Label23" - ' - 'Label11 - ' - resources.ApplyResources(Me.Label11, "Label11") - Me.Label11.Name = "Label11" - ' - 'IconSize - ' - resources.ApplyResources(Me.IconSize, "IconSize") - Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.IconSize.FormattingEnabled = True - Me.IconSize.Items.AddRange(New Object() {resources.GetString("IconSize.Items"), resources.GetString("IconSize.Items1"), resources.GetString("IconSize.Items2"), resources.GetString("IconSize.Items3"), resources.GetString("IconSize.Items4")}) - Me.IconSize.Name = "IconSize" - ' - 'TextBox3 - ' - resources.ApplyResources(Me.TextBox3, "TextBox3") - Me.TextBox3.Name = "TextBox3" - ' - 'CheckSortOrderLock - ' - resources.ApplyResources(Me.CheckSortOrderLock, "CheckSortOrderLock") - Me.CheckSortOrderLock.Name = "CheckSortOrderLock" - Me.CheckSortOrderLock.UseVisualStyleBackColor = True - ' - 'CheckShowGrid - ' - resources.ApplyResources(Me.CheckShowGrid, "CheckShowGrid") - Me.CheckShowGrid.Name = "CheckShowGrid" - Me.CheckShowGrid.UseVisualStyleBackColor = True - ' - 'chkReadOwnPost - ' - resources.ApplyResources(Me.chkReadOwnPost, "chkReadOwnPost") - Me.chkReadOwnPost.Name = "chkReadOwnPost" - Me.chkReadOwnPost.UseVisualStyleBackColor = True - ' - 'chkUnreadStyle - ' - resources.ApplyResources(Me.chkUnreadStyle, "chkUnreadStyle") - Me.chkUnreadStyle.Name = "chkUnreadStyle" - Me.chkUnreadStyle.UseVisualStyleBackColor = True - ' - 'OneWayLv - ' - resources.ApplyResources(Me.OneWayLv, "OneWayLv") - Me.OneWayLv.Name = "OneWayLv" - Me.OneWayLv.UseVisualStyleBackColor = True - ' - 'ActionPanel - ' - resources.ApplyResources(Me.ActionPanel, "ActionPanel") - Me.ActionPanel.Controls.Add(Me.GroupBox3) - Me.ActionPanel.Controls.Add(Me.CheckHashSupple) - Me.ActionPanel.Controls.Add(Me.CheckAtIdSupple) - Me.ActionPanel.Controls.Add(Me.Label57) - Me.ActionPanel.Controls.Add(Me.CheckFavRestrict) - Me.ActionPanel.Controls.Add(Me.Button3) - Me.ActionPanel.Controls.Add(Me.PlaySnd) - Me.ActionPanel.Controls.Add(Me.Label15) - Me.ActionPanel.Controls.Add(Me.BrowserPathText) - Me.ActionPanel.Controls.Add(Me.UReadMng) - Me.ActionPanel.Controls.Add(Me.Label44) - Me.ActionPanel.Controls.Add(Me.CheckCloseToExit) - Me.ActionPanel.Controls.Add(Me.CheckMinimizeToTray) - Me.ActionPanel.Controls.Add(Me.CheckReadOldPosts) - Me.ActionPanel.Name = "ActionPanel" - ' - 'GroupBox3 - ' - resources.ApplyResources(Me.GroupBox3, "GroupBox3") - Me.GroupBox3.Controls.Add(Me.HotkeyCheck) - Me.GroupBox3.Controls.Add(Me.HotkeyCode) - Me.GroupBox3.Controls.Add(Me.HotkeyText) - Me.GroupBox3.Controls.Add(Me.HotkeyWin) - Me.GroupBox3.Controls.Add(Me.HotkeyAlt) - Me.GroupBox3.Controls.Add(Me.HotkeyShift) - Me.GroupBox3.Controls.Add(Me.HotkeyCtrl) - Me.GroupBox3.Name = "GroupBox3" - Me.GroupBox3.TabStop = False - ' - 'HotkeyCheck - ' - resources.ApplyResources(Me.HotkeyCheck, "HotkeyCheck") - Me.HotkeyCheck.Name = "HotkeyCheck" - Me.HotkeyCheck.UseVisualStyleBackColor = True - ' - 'HotkeyCode - ' - resources.ApplyResources(Me.HotkeyCode, "HotkeyCode") - Me.HotkeyCode.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.HotkeyCode.Name = "HotkeyCode" - ' - 'HotkeyText - ' - resources.ApplyResources(Me.HotkeyText, "HotkeyText") - Me.HotkeyText.Name = "HotkeyText" - Me.HotkeyText.ReadOnly = True - ' - 'HotkeyWin - ' - resources.ApplyResources(Me.HotkeyWin, "HotkeyWin") - Me.HotkeyWin.Name = "HotkeyWin" - Me.HotkeyWin.UseVisualStyleBackColor = True - ' - 'HotkeyAlt - ' - resources.ApplyResources(Me.HotkeyAlt, "HotkeyAlt") - Me.HotkeyAlt.Name = "HotkeyAlt" - Me.HotkeyAlt.UseVisualStyleBackColor = True - ' - 'HotkeyShift - ' - resources.ApplyResources(Me.HotkeyShift, "HotkeyShift") - Me.HotkeyShift.Name = "HotkeyShift" - Me.HotkeyShift.UseVisualStyleBackColor = True - ' - 'HotkeyCtrl - ' - resources.ApplyResources(Me.HotkeyCtrl, "HotkeyCtrl") - Me.HotkeyCtrl.Name = "HotkeyCtrl" - Me.HotkeyCtrl.UseVisualStyleBackColor = True - ' - 'CheckHashSupple - ' - resources.ApplyResources(Me.CheckHashSupple, "CheckHashSupple") - Me.CheckHashSupple.Name = "CheckHashSupple" - Me.CheckHashSupple.UseVisualStyleBackColor = True - ' - 'CheckAtIdSupple - ' - resources.ApplyResources(Me.CheckAtIdSupple, "CheckAtIdSupple") - Me.CheckAtIdSupple.Name = "CheckAtIdSupple" - Me.CheckAtIdSupple.UseVisualStyleBackColor = True - ' - 'Label57 - ' - resources.ApplyResources(Me.Label57, "Label57") - Me.Label57.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label57.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label57.Name = "Label57" - ' - 'CheckFavRestrict - ' - resources.ApplyResources(Me.CheckFavRestrict, "CheckFavRestrict") - Me.CheckFavRestrict.Name = "CheckFavRestrict" - Me.CheckFavRestrict.UseVisualStyleBackColor = True - ' - 'Button3 - ' - resources.ApplyResources(Me.Button3, "Button3") - Me.Button3.Name = "Button3" - Me.Button3.UseVisualStyleBackColor = True - ' - 'PlaySnd - ' - resources.ApplyResources(Me.PlaySnd, "PlaySnd") - Me.PlaySnd.Name = "PlaySnd" - Me.PlaySnd.UseVisualStyleBackColor = True - ' - 'Label15 - ' - resources.ApplyResources(Me.Label15, "Label15") - Me.Label15.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label15.Name = "Label15" - ' - 'BrowserPathText - ' - resources.ApplyResources(Me.BrowserPathText, "BrowserPathText") - Me.BrowserPathText.Name = "BrowserPathText" - ' - 'UReadMng - ' - resources.ApplyResources(Me.UReadMng, "UReadMng") - Me.UReadMng.Name = "UReadMng" - Me.UReadMng.UseVisualStyleBackColor = True - ' - 'Label44 - ' - resources.ApplyResources(Me.Label44, "Label44") - Me.Label44.Name = "Label44" - ' - 'CheckCloseToExit - ' - resources.ApplyResources(Me.CheckCloseToExit, "CheckCloseToExit") - Me.CheckCloseToExit.Name = "CheckCloseToExit" - Me.CheckCloseToExit.UseVisualStyleBackColor = True - ' - 'CheckMinimizeToTray - ' - resources.ApplyResources(Me.CheckMinimizeToTray, "CheckMinimizeToTray") - Me.CheckMinimizeToTray.Name = "CheckMinimizeToTray" - Me.CheckMinimizeToTray.UseVisualStyleBackColor = True - ' - 'CheckReadOldPosts - ' - resources.ApplyResources(Me.CheckReadOldPosts, "CheckReadOldPosts") - Me.CheckReadOldPosts.Name = "CheckReadOldPosts" - Me.CheckReadOldPosts.UseVisualStyleBackColor = True - ' - 'PreviewPanel - ' - resources.ApplyResources(Me.PreviewPanel, "PreviewPanel") - Me.PreviewPanel.Controls.Add(Me.ReplyIconStateCombo) - Me.PreviewPanel.Controls.Add(Me.Label72) - Me.PreviewPanel.Controls.Add(Me.ChkNewMentionsBlink) - Me.PreviewPanel.Controls.Add(Me.chkTabIconDisp) - Me.PreviewPanel.Controls.Add(Me.CheckPreviewEnable) - Me.PreviewPanel.Controls.Add(Me.Label81) - Me.PreviewPanel.Controls.Add(Me.LanguageCombo) - Me.PreviewPanel.Controls.Add(Me.Label13) - Me.PreviewPanel.Controls.Add(Me.CheckAlwaysTop) - Me.PreviewPanel.Controls.Add(Me.CheckMonospace) - Me.PreviewPanel.Controls.Add(Me.CheckBalloonLimit) - Me.PreviewPanel.Controls.Add(Me.Label10) - Me.PreviewPanel.Controls.Add(Me.ComboDispTitle) - Me.PreviewPanel.Controls.Add(Me.Label45) - Me.PreviewPanel.Controls.Add(Me.cmbNameBalloon) - Me.PreviewPanel.Controls.Add(Me.CheckDispUsername) - Me.PreviewPanel.Controls.Add(Me.CheckBox3) - Me.PreviewPanel.Name = "PreviewPanel" - ' - 'ReplyIconStateCombo - ' - resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") - Me.ReplyIconStateCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ReplyIconStateCombo.FormattingEnabled = True - Me.ReplyIconStateCombo.Items.AddRange(New Object() {resources.GetString("ReplyIconStateCombo.Items"), resources.GetString("ReplyIconStateCombo.Items1"), resources.GetString("ReplyIconStateCombo.Items2")}) - Me.ReplyIconStateCombo.Name = "ReplyIconStateCombo" - ' - 'Label72 - ' - resources.ApplyResources(Me.Label72, "Label72") - Me.Label72.Name = "Label72" - ' - 'ChkNewMentionsBlink - ' - resources.ApplyResources(Me.ChkNewMentionsBlink, "ChkNewMentionsBlink") - Me.ChkNewMentionsBlink.Name = "ChkNewMentionsBlink" - Me.ChkNewMentionsBlink.UseVisualStyleBackColor = True - ' - 'chkTabIconDisp - ' - resources.ApplyResources(Me.chkTabIconDisp, "chkTabIconDisp") - Me.chkTabIconDisp.Name = "chkTabIconDisp" - Me.chkTabIconDisp.UseVisualStyleBackColor = True - ' - 'CheckPreviewEnable - ' - resources.ApplyResources(Me.CheckPreviewEnable, "CheckPreviewEnable") - Me.CheckPreviewEnable.Name = "CheckPreviewEnable" - Me.CheckPreviewEnable.UseVisualStyleBackColor = True - ' - 'Label81 - ' - resources.ApplyResources(Me.Label81, "Label81") - Me.Label81.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label81.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - Me.Label81.Name = "Label81" - ' - 'LanguageCombo - ' - resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") - Me.LanguageCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.LanguageCombo.FormattingEnabled = True - Me.LanguageCombo.Items.AddRange(New Object() {resources.GetString("LanguageCombo.Items"), resources.GetString("LanguageCombo.Items1"), resources.GetString("LanguageCombo.Items2"), resources.GetString("LanguageCombo.Items3")}) - Me.LanguageCombo.Name = "LanguageCombo" - ' - 'Label13 - ' - resources.ApplyResources(Me.Label13, "Label13") - Me.Label13.Name = "Label13" - ' - 'CheckAlwaysTop - ' - resources.ApplyResources(Me.CheckAlwaysTop, "CheckAlwaysTop") - Me.CheckAlwaysTop.Name = "CheckAlwaysTop" - Me.CheckAlwaysTop.UseVisualStyleBackColor = True - ' - 'CheckMonospace - ' - resources.ApplyResources(Me.CheckMonospace, "CheckMonospace") - Me.CheckMonospace.Name = "CheckMonospace" - Me.CheckMonospace.UseVisualStyleBackColor = True - ' - 'CheckBalloonLimit - ' - resources.ApplyResources(Me.CheckBalloonLimit, "CheckBalloonLimit") - Me.CheckBalloonLimit.Name = "CheckBalloonLimit" - Me.CheckBalloonLimit.UseVisualStyleBackColor = True - ' - 'Label10 - ' - resources.ApplyResources(Me.Label10, "Label10") - Me.Label10.Name = "Label10" - ' - 'ComboDispTitle - ' - resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") - Me.ComboDispTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboDispTitle.FormattingEnabled = True - Me.ComboDispTitle.Items.AddRange(New Object() {resources.GetString("ComboDispTitle.Items"), resources.GetString("ComboDispTitle.Items1"), resources.GetString("ComboDispTitle.Items2"), resources.GetString("ComboDispTitle.Items3"), resources.GetString("ComboDispTitle.Items4"), resources.GetString("ComboDispTitle.Items5"), resources.GetString("ComboDispTitle.Items6"), resources.GetString("ComboDispTitle.Items7")}) - Me.ComboDispTitle.Name = "ComboDispTitle" - ' - 'Label45 - ' - resources.ApplyResources(Me.Label45, "Label45") - Me.Label45.Name = "Label45" - ' - 'cmbNameBalloon - ' - resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") - Me.cmbNameBalloon.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.cmbNameBalloon.FormattingEnabled = True - Me.cmbNameBalloon.Items.AddRange(New Object() {resources.GetString("cmbNameBalloon.Items"), resources.GetString("cmbNameBalloon.Items1"), resources.GetString("cmbNameBalloon.Items2")}) - Me.cmbNameBalloon.Name = "cmbNameBalloon" - ' - 'CheckDispUsername - ' - resources.ApplyResources(Me.CheckDispUsername, "CheckDispUsername") - Me.CheckDispUsername.Name = "CheckDispUsername" - Me.CheckDispUsername.UseVisualStyleBackColor = True - ' - 'CheckBox3 - ' - resources.ApplyResources(Me.CheckBox3, "CheckBox3") - Me.CheckBox3.Name = "CheckBox3" - Me.CheckBox3.UseVisualStyleBackColor = True - ' 'Cancel ' - resources.ApplyResources(Me.Cancel, "Cancel") Me.Cancel.CausesValidation = False Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel + resources.ApplyResources(Me.Cancel, "Cancel") Me.Cancel.Name = "Cancel" Me.Cancel.UseVisualStyleBackColor = True ' 'Save ' + Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK resources.ApplyResources(Me.Save, "Save") - Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK Me.Save.Name = "Save" Me.Save.UseVisualStyleBackColor = True ' @@ -1694,36 +1695,36 @@ Me.SplitContainer1.Panel2.ResumeLayout(False) CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit() Me.SplitContainer1.ResumeLayout(False) - Me.TweetActPanel.ResumeLayout(False) - Me.TweetActPanel.PerformLayout() - Me.FontPanel.ResumeLayout(False) - Me.GroupBox1.ResumeLayout(False) - Me.GroupBox1.PerformLayout() + Me.BasedPanel.ResumeLayout(False) + Me.BasedPanel.PerformLayout() Me.GetPeriodPanel.ResumeLayout(False) Me.GetPeriodPanel.PerformLayout() + Me.StartupPanel.ResumeLayout(False) + Me.StartupPanel.PerformLayout() Me.GetCountPanel.ResumeLayout(False) Me.GetCountPanel.PerformLayout() - Me.FontPanel2.ResumeLayout(False) - Me.GroupBox5.ResumeLayout(False) - Me.GroupBox5.PerformLayout() - Me.BasedPanel.ResumeLayout(False) - Me.BasedPanel.PerformLayout() - Me.ProxyPanel.ResumeLayout(False) - Me.ProxyPanel.PerformLayout() - Me.ConnectionPanel.ResumeLayout(False) - Me.ConnectionPanel.PerformLayout() Me.UserStreamPanel.ResumeLayout(False) Me.UserStreamPanel.PerformLayout() - Me.StartupPanel.ResumeLayout(False) - Me.StartupPanel.PerformLayout() - Me.TweetPrvPanel.ResumeLayout(False) - Me.TweetPrvPanel.PerformLayout() Me.ActionPanel.ResumeLayout(False) Me.ActionPanel.PerformLayout() Me.GroupBox3.ResumeLayout(False) Me.GroupBox3.PerformLayout() + Me.TweetActPanel.ResumeLayout(False) + Me.TweetActPanel.PerformLayout() Me.PreviewPanel.ResumeLayout(False) Me.PreviewPanel.PerformLayout() + Me.TweetPrvPanel.ResumeLayout(False) + Me.TweetPrvPanel.PerformLayout() + Me.FontPanel.ResumeLayout(False) + Me.GroupBox1.ResumeLayout(False) + Me.GroupBox1.PerformLayout() + Me.FontPanel2.ResumeLayout(False) + Me.GroupBox5.ResumeLayout(False) + Me.GroupBox5.PerformLayout() + Me.ConnectionPanel.ResumeLayout(False) + Me.ConnectionPanel.PerformLayout() + Me.ProxyPanel.ResumeLayout(False) + Me.ProxyPanel.PerformLayout() Me.ResumeLayout(False) End Sub Modified: trunk/Tween/AppendSettingDialog.en.resx =================================================================== --- trunk/Tween/AppendSettingDialog.en.resx 2010-12-21 17:11:06 UTC (rev 1240) +++ trunk/Tween/AppendSettingDialog.en.resx 2010-12-21 17:17:47 UTC (rev 1241) @@ -126,21 +126,21 @@ bGRyZW4wCWNoaWxkcmVuMQljaGlsZHJlbjIJY2hpbGRyZW4zAQEAAAEAAQAEBAQEAQgICB1TeXN0ZW0u V2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUCAAAA HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlAgAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVl - Tm9kZQIAAAACAAAABgMAAAAFQmFzaWMGBAAAAAlCYXNlZE5vZGUA/////wYFAAAAAP////8JBQAAAAQA - AAAJBgAAAAkHAAAACQgAAAAJCQAAAAUGAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAA - AARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4 - EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3VudAEBAAABAAEAAQgICAIAAAAGCgAAABRQZXJpb2RzIGZv - ciBSRVNUIEFwaQYLAAAAClBlcmlvZE5vZGUA/////wkFAAAA/////wkFAAAAAAAAAAUHAAAAHVN5c3Rl - bS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdlSW5kZXgI - SW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3VudAEBAAAB - AAEAAQgICAIAAAAGDQAAAAdTdGFydHVwBg4AAAALU3RhcnRVcE5vZGUA/////wkFAAAA/////wkFAAAA - AAAAAAUIAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVj - a2VkCkltYWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkK - Q2hpbGRDb3VudAEBAAABAAEAAQgICAIAAAAGEAAAAAZDb3VudHMGEQAAAAxHZXRDb3VudE5vZGUA//// - /wkFAAAA/////wkFAAAAAAAAAAUJAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARU - ZXh0BE5hbWUJSXNDaGVja2VkCkltYWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNl - bGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3VudAEBAAABAAEAAQgICAIAAAAGEwAAAApVc2VyU3RyZWFtBhQA - AAAOVXNlclN0cmVhbU5vZGUA/////wkFAAAA/////wkFAAAAAAAAAAs= + Tm9kZQIAAAACAAAABgMAAAAHR2VuZXJhbAYEAAAACUJhc2VkTm9kZQD/////BgUAAAAA/////wkFAAAA + BAAAAAkGAAAACQcAAAAJCAAAAAkJAAAABQYAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUI + AAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5k + ZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgIAgAAAAYKAAAACEludGVydmFs + BgsAAAAKUGVyaW9kTm9kZQD/////CQUAAAD/////CQUAAAAAAAAABQcAAAAdU3lzdGVtLldpbmRvd3Mu + Rm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtleRJT + ZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgIAgAA + AAYNAAAAB1N0YXJ0dXAGDgAAAAtTdGFydFVwTm9kZQD/////CQUAAAD/////CQUAAAAAAAAABQgAAAAd + U3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJ + bmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50 + AQEAAAEAAQABCAgIAgAAAAYQAAAABkNvdW50cwYRAAAADEdldENvdW50Tm9kZQD/////CQUAAAD///// + CQUAAAAAAAAABQkAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJ + c0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFn + ZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgIAgAAAAYTAAAAClVzZXJTdHJlYW0GFAAAAA5Vc2VyU3Ry + ZWFtTm9kZQD/////CQUAAAD/////CQUAAAAAAAAACw== @@ -200,123 +200,36 @@ - - 50, 12 + + 70, 12 - - Post key + + Auth method - - 239, 16 + + Clear - - Bypass confirm dialog at posting Retweet + + 65, 12 - - 38, 12 + + Auth status - - Footer + + Auth - - 151, 16 + + 56, 12 - - Use Default [TWNvNNN] + + Username - - 149, 12 + + 54, 12 - - Primary URLshorten service + + Password - - 145, 16 - - - Resolve shortend URLs - - - 205, 16 - - - Auto shorten Urls in posting status - - - Fore... - - - 96, 22 - - - Back to Default - - - Fore... - - - 119, 12 - - - Details of Tweet(Link) - - - Font&&Fore... - - - 76, 12 - - - Unread Tweet - - - Back... - - - 110, 12 - - - Backcolor of Details - - - Font&&Fore... - - - 90, 12 - - - Details of Tweet - - - Fore... - - - 100, 12 - - - One-way following - - - Fore... - - - 53, 12 - - - Favorited - - - Font&&Fore... - - - 94, 12 - - - Font of tweet list - - - Font && Color - 170, 12 @@ -368,291 +281,313 @@ DM Fetching Interval (sec.) + + 81, 16 + + + Make Read + + + 123, 16 + + + Fetch followers list + + + 121, 16 + + + Check new version + + + 105, 16 + + + Fetch Favorites + - 137, 12 + 75, 12 - Replies for Selected User + Public Search - 114, 12 + 105, 12 - Replied User's Tweet + Timeline at starting - 90, 12 + 51, 12 - Backcolor of list + Mentions - 125, 12 + 53, 12 - Favorites/PublicSearch + Favorites - 98, 12 + 52, 12 - Get more/Starting + Get more - 188, 16 + 243, 16 - Enable to edit 'Count' parameter + Enable to edit 'Count' parameters as below - 226, 12 + 192, 12 - Getting number of tweets/mentions in API + Getting number of tweets in timeline - - 97, 12 + + 149, 16 - - Font of input field + + Auto connect at starting - - 169, 12 + + 117, 12 - - Backcolor of focused input field + + Refresh Interval (sec) - - 78, 12 + + 58, 16 - - Replied Tweet + + Enable - - 135, 12 + + Hotkey - - First-time Reading Posts + + 213, 16 - - 42, 12 + + Use Hashtag supplementary function - - Sounds + + 188, 16 - - 145, 12 + + Use @id supplementary function - - Colorize One-way following + + + False - - 120, 12 + + 496, 17 - - Selected User's Tweet + + Refetch tweets and verify whether marked favorites. This option causes traffic increasement. - - 84, 12 + + 149, 16 - - Replies for You + + Check fav result strictly - - 89, 12 + + Open... - - Your Own Tweet + + 215, 16 - - Font... + + Play sounds when new status arrived - - Back... + + Sounds will play when you enable this option and set sound file for each tabs. - - Back... + + 126, 16 - - Back... + + Enable unread state - - Back... + + 88, 12 - - Back... + + Path to Browser - - Back... + + 150, 16 - - Back... + + Close to Exit application - - Back... + + 106, 16 - - 70, 12 + + Minimize to tray - - Auth method + + 265, 16 - - Clear + + Make read old tweets when new tweets arrived - - 65, 12 + + 50, 12 - - Auth status + + Post key - - Auth + + 239, 16 - - 56, 12 + + Bypass confirm dialog at posting Retweet - - Username + + 38, 12 - - 54, 12 + + Footer - - Password + + 151, 16 - - 320, 12 + + Use Default [TWNvNNN] - - Keep credential empty if the proxy server don't need to log in + + 149, 12 - - 73, 16 + + Primary URLshorten service - - Don't Use + + 145, 16 - - 54, 12 + + Resolve shortend URLs - - Pass&word + + 205, 16 - - 200, 16 + + Auto shorten Urls in posting status - - Refer Settings of Internet Explorer + + Don't notify - - 80, 16 + + Change icon - - Use Below: + + Change icon&blink - - 56, 12 + + 188, 12 - - &Username + + Tasktray icon with unread mentions - - 62, 12 + + 180, 16 - - Pro&xy Host + + Blink window mentions arrived - - 26, 12 + + 210, 16 - - &Port + + Show icon on tab has unread tweets - - 196, 16 + + 138, 16 - - Shorten nicovideo urls by nico.ms + + Show image thumbnail - - 107, 12 + + 110, 16 - - URI of your Outputz + + Always top most - - 86, 12 + + 177, 16 - - Your secret key + + Monospace font in detail view - - 87, 16 + + 293, 16 - - Use Outputz + + Popup balloon only at the minimization or iconization - - 241, 16 + + 103, 12 - - Enable to select BASIC auth in 'Basic' tab + + Username in popup - - 130, 16 + + None - - Use HTTPS Protocol + + Program Version - - 371, 12 + + Latest your post - - ※Adjust Connection timeout if the error of timeout happens frequently. + + unread @reply items - - 130, 12 + + unread items - - Connection timeout(sec) + + unread items(unread @reply items) - - 58, 16 + + unread items/all items - - Enable + + Count of Status/Follow/Follower - - 117, 12 + + 65, 12 - - Refresh Interval (sec) + + Title format - - 81, 16 + + None - - Make Read + + User ID - - 58, 16 + + Nickname - - Enable + + 278, 16 - - 58, 16 + + Show username in application titlebar and balloon - - Enable + + 148, 16 - - 58, 16 + + Show icon in detail view - - Enable - 115, 12 @@ -675,228 +610,296 @@ None - 58, 16 + 102, 16 - Enable + Lock sort order - 51, 16 + 125, 16 - Show + Show separator line - 58, 16 + 133, 16 - Enable + Make read own tweet - 58, 16 + 393, 16 - Enable + Enable unread style(font and color). (Unread can be found by star mark) - 58, 16 + 136, 16 - Enable + Colorize one way love - - 58, 16 + + Fore... - - Enable + + 96, 22 - - Hotkey + + Back to Default - - 173, 438 + + Fore... - - 58, 16 + + 119, 12 - - Enable + + Details of Tweet(Link) - - 173, 420 + + Font&&Fore... - - 58, 16 + + 76, 12 - - Enable + + Unread Tweet - - - False + + Back... - - 382, 28 + + 110, 12 - - Refetch tweets and verify whether marked favorites. This option causes traffic incleasement. + + Backcolor of Details - - 58, 16 + + Font&&Fore... - - Enable + + 90, 12 - - Open... + + Details of Tweet - - 58, 16 + + Fore... - - Enable + + 100, 12 - - Sounds will play when you enable this option and set sound file for each tabs. + + One-way following - - 58, 16 + + Fore... - - Enable + + 53, 12 - - 88, 12 + + Favorited - - Path to Browser + + Font&&Fore... - - 58, 16 + + 94, 12 - - Enable + + Font of tweet list - - 58, 16 + + Font && Color - - Enable + + 97, 12 - - 58, 16 + + Font of input field - - Enable + + 169, 12 - - Don't notify + + Backcolor of focused input field - - Change icon + + 78, 12 - - Change icon&blink + + Replied Tweet - - 188, 12 + + 135, 12 - - Tasktray icon with unread mentions + + First-time Reading Posts - - 58, 16 + + 42, 12 - - Enable + + Sounds - - 51, 16 + + 145, 12 - - Show + + Colorize One-way following - - 58, 16 + + 120, 12 - - Enable + + Selected User's Tweet - - 58, 16 + + 84, 12 - - Enable + + Replies for You - - 81, 16 + + 89, 12 - - Monospace + + Your Own Tweet - - 193, 16 + + Font... - - only at the minimization and icon + + Back... - - 103, 12 + + Back... - - Username in popup + + Back... - - None + + Back... - - Program Version + + Back... - - Latest your post + + Back... - - unread @reply items + + Back... - - unread items + + Back... - - unread items(unread @reply items) + + 96, 22 - - unread items/all items + + Back to Default - - Count of Status/Follow/Follower + + Font && Color - - 65, 12 + + 196, 16 - - Title format + + Shorten nicovideo urls by nico.ms - - None + + 107, 12 - - User ID + + URI of your Outputz - - Nickname + + 86, 12 - - 58, 16 + + Your secret key - - Enable + + 87, 16 - - 58, 16 + + Use Outputz - - Enable + + 241, 16 + + Enable to select BASIC auth in 'Basic' tab + + + 130, 16 + + + Use HTTPS Protocol + + + 371, 12 + + + ※Adjust Connection timeout if the error of timeout happens frequently. + + + 130, 12 + + + Connection timeout(sec) + + + 320, 12 + + + Keep credential empty if the proxy server don't need to log in + + + 73, 16 + + + Don't Use + + + 54, 12 + + + Pass&word + + + 200, 16 + + + Refer Settings of Internet Explorer + + + 80, 16 + + + Use Below: + + + 56, 12 + + + &Username + + + 62, 12 + + + Pro&xy Host + + + 26, 12 + + + &Port + Cancel Modified: trunk/Tween/AppendSettingDialog.resx =================================================================== --- trunk/Tween/AppendSettingDialog.resx 2010-12-21 17:11:06 UTC (rev 1240) +++ trunk/Tween/AppendSettingDialog.resx 2010-12-21 17:17:47 UTC (rev 1241) @@ -117,150 +117,20 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - search.twitter.com + + + Top - - 205, 242 + + 0, 0 - - - True + + Fill - - none + + 0, 0 - - - NoControl - - - 51 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 12 - - - 100, 16 - - - 90, 22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - OK - - - NoControl - - - 16*16 - - - True - - - 1 - - - 11 - - - PreviewPanel - - - 72 - - - True - - - 0 - - - UserStreamPanel - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 29 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 163, 12 - - - AuthClearButton - - - 83, 290 - - - Shift+Enter - - - 38 - - - BasedPanel - - - 9 - - - True - - - 154, 16 - - - False - - - 70 - - - 13 - - - 16, 45 - - - 40 - - - 背景色 - - - 16 - - - Label63 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 57 - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w @@ -287,6078 +157,6208 @@ clN0cmVhbQYUAAAADlVzZXJTdHJlYW1Ob2RlAP////8JBQAAAP////8JBQAAAAAAAAAL - - LanguageCombo + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG5YuV5L2cBgQAAAAKQWN0aW9uTm9kZQD/////BgUAAAAA/////wkFAAAAAQAAAAkGAAAABQYAAAAd + U3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJ + bmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50 + AQEAAAEAAQABCAgIAgAAAAYHAAAAFeODhOOCpOODvOODiOOBruWLleS9nAYIAAAADFR3ZWV0QWN0Tm9k + ZQD/////CQUAAAD/////CQUAAAAAAAAACw== + - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG6KGo56S6BgQAAAALUHJldmlld05vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUGAAAA + HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdl + SW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3Vu + dAEBAAABAAEAAQgICAIAAAAGBwAAABLjg6rjgrnjg4jjga7ooajnpLoGCAAAAAxUd2VldFBydk5vZGUA + /////wkFAAAA/////wkFAAAAAAAAAAs= + - - GetPeriodPanel + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAM44OV44Kp44Oz44OIBgQAAAAIRm9udE5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG + AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt + YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD + b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAA3jg5Xjgqnjg7Pjg4gyBggAAAAJRm9udE5vZGUyAP////8J + BQAAAP////8JBQAAAAAAAAAL + - - 16 + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG6YCa5L+hBgQAAAAOQ29ubmVjdGlvbk5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG + AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt + YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD + b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAAzjg5fjg63jgq3jgrcGCAAAAAlQcm94eU5vZGUA/////wkF + AAAA/////wkFAAAAAAAAAAs= + - - 73, 19 + + 172, 368 - - 2 + + + 0 - - 75, 23 + + TreeView1 - - ConnectionTimeOut + + System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + SplitContainer1.Panel1 + + 0 - - True + + SplitContainer1.Panel1 - - 199, 20 + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cmbNameBalloon + + SplitContainer1 - - 104, 19 + + 0 - - 10 + + True - - 174, 16 + + False - - 13 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 227, 20 - - NoControl + + 57, 16 - - 66 + + 2 - - NoControl + + BASIC - - 0 + + AuthBasicRadio - - 8 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 396, 194 + + BasedPanel - - NoControl + + 0 - - 自動調整する + + True - - 50, 12 + + NoControl - - 11 + + 113, 20 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 93, 16 - - 10 + + 1 - - True + + OAuth(xAuth) - - Fill + + AuthOAuthRadio - - 44 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 398, 166 + + BasedPanel - - tinyurl + + 1 - - 76 + + True - - Favoritesを取得する + + NoControl - - lblOWL + + 22, 22 53, 12 - - 93 + + 0 - - 154, 12 + + 認証方法 - - 8 + + Label6 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0 + + BasedPanel - - CheckMonospace + + 2 - - FontPanel2 + + NoControl - - 194, 236 + + 305, 64 - - 182, 19 + + 75, 23 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - 24 + + クリア - - 1 + + AuthClearButton - - 48*48 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - HotkeyCtrl + + BasedPanel - - GetPeriodPanel + + 3 - - 12 + + NoControl - - GroupBox1 + + 113, 68 - - True + + 149, 14 - - GroupBox5 + + 5 - - 6 + + 認証済み - - True + + AuthUserLabel - - 33 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 66 + + BasedPanel - - True + + 4 - - 22, 21 + + NoControl - - Label44 + + 113, 54 - - NoControl + + 112, 14 - - Win + + 4 - - 398, 116 + + Not Authenticated - - True + + AuthStateLabel - - 8 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 398, 216 + + BasedPanel - - 10 + + 5 - - TweetActPanel + + True - - 12 + + NoControl - - 54 + + 22, 54 - - Fill + + 53, 12 - - Label45 + + 3 - - tt h:mm + + 認証状態 - - MiddleLeft + + Label4 - - 13, 14 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - chkGetFav + + BasedPanel - - StatusText + + 6 - - Label8 + + NoControl - - lblUnread + + 305, 126 - - 読み込んだポストを既読にする + + 75, 23 - - 通知なし + + 11 - - 1 + + 認証する - - TweetActPanel + + AuthorizeButton - - GroupBox3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetActPanel + + BasedPanel - - 9, 198 + + 7 - - StartupUserstreamCheck + + True - - 2 + + NoControl - - 191, 252 + + 22, 112 - - 172, 368 + + 57, 12 - - 81, 12 + + 7 - - 3 + + ユーザー名 - - api.twitter.com + + Label1 - - 62 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + BasedPanel 8 - - Username + + True - - TweetActPanel + + NoControl - - ComboBoxAutoShortUrlFirst + + 22, 133 - - MiddleLeft + + 52, 12 - - 12 + + 9 - - GroupBox5 + + パスワード - + + Label2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 9 + + + 113, 109 + + 186, 19 - - 1 + + 8 - - 片思いユーザーリストを取得する + + Username - - 525, 368 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 262, 100 + + BasedPanel - - BrowserPathText + + 10 - - 259, 51 + + 113, 130 - - ProxyPanel + + 186, 19 - - System.Windows.Forms.FontDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 片思いを色分けして表示する + + Password - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 93 + + BasedPanel - - TweetActPanel + + 11 - - LabelProxyPort + + Fill - - AuthStateLabel + + False - - 41 + + 0, 0 - - 94, 12 + + 525, 368 - - 113, 68 + + 0 - - 179, 97 + + False - - OAuth(xAuth) + + BasedPanel - - 公式RTする際に確認をしない + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + SplitContainer1.Panel2 - - 51 + + 0 - - 12 + + 258, 21 - - 157, 16 + + 65, 19 - + + 1 + + + TimelinePeriod + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + 0 + + True - + NoControl - - 発言詳細背景色 + + 22, 24 - - 認証済み + + 130, 12 - - GetCountPanel + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + タイムライン更新間隔(秒) - - 136, 20 + + Label3 - - 42 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 116, 15 + + GetPeriodPanel - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - 216, 134 + + NoControl - - BasedPanel + + 122, 216 - - False + + 108, 23 - - 214, 45 + + 14 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 再計算 - - ChkNewMentionsBlink + + ButtonApiCalc - - 59 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GetPeriodPanel - - English + + 2 - + + True + + NoControl - - True + + 29, 195 - - This is sample. + + 285, 12 - - H:mm:ss + + 13 - - 259, 185 + + 投稿時取得が有効のため、投稿のたびにAPIを消費します。 - - 258, 111 + + LabelPostAndGet - - 70, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 138 + + GetPeriodPanel - - 349, 12 + + 3 - - 41, 134 + + True - - 発言一覧への反映間隔(秒) - - + NoControl - - ConnectionPanel + + 29, 174 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 23, 12 - - 52 + + 12 - + + 999 + + + MiddleRight + + + LabelApiUsing + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ConnectionPanel + + GetPeriodPanel - - 7 + + 4 - + + True + + NoControl - - Label47 + + 22, 138 - + + 102, 12 + + + 10 + + + Lists更新間隔(秒) + + + Label33 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GetPeriodPanel - - False + + 5 - - 16 + + 258, 135 - - 1 + + 65, 19 - - 58, 12 + + 11 - - 278, 97 + + ListsPeriod - - 21 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + GetPeriodPanel + + + 6 + + True - - ProxyPanel + + NoControl - - 22, 20 + + 22, 114 - - GroupBox5 + + 137, 12 - - TweetActPanel + + 8 - - 174, 12 + + Twitter検索更新間隔(秒) - - GroupBox3 + + Label7 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 推奨フッターを使用する[TWNv○○] + + GetPeriodPanel - - 1 + + 7 - - 22, 70 + + 258, 111 - - NoControl + + 65, 19 - + 9 - - CmbDateTimeFormat + + PubSearchPeriod - - 214, 145 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + GetPeriodPanel - - CheckSortOrderLock + + 8 - - j.mp + + True - - GroupBox1 + + NoControl - - btnTarget + + 22, 66 - - 34, 19 + + 123, 12 - - False + + 4 - - This is sample. + + Mentions更新間隔(秒) - - 23 + + Label69 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 68 + + GetPeriodPanel - - 525, 368 + + 9 - - NoControl + + 258, 63 - - 初回の更新 + + 65, 19 - - その人への@返信 + + 5 - - 自分の発言 + + ReplyPeriod - - ActionPanel + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14 + + GetPeriodPanel - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 3 + + True - - ReplyIconStateCombo + + NoControl - - ConnectionPanel + + 33, 43 - - PreviewPanel + + 84, 16 - + 2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 投稿時取得 - - 131, 12 + + CheckPostAndGet - - OneWayLv + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GetPeriodPanel - - タイトルバーとツールチップにユーザー名を表示 + + 11 - - Label67 - True - - 9 + + NoControl - - 11 + + 251, 43 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 91, 16 - - CheckNicoms + + 3 - - 20 + + 自動調整する - - H:mm:ss yy/M/d + + False - - 113, 54 + + CheckPeriodAdjust - - MiddleLeft + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + GetPeriodPanel + + + 12 + + True - - Label34 + + NoControl - - 0, 0 + + 22, 90 - - 22, 18 + + 94, 12 - - 157, 16 + + 6 - - 58, 19 + + DM更新間隔(秒) - + + Label5 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - (なし) + + GetPeriodPanel - - OS Default + + 13 - + + 258, 87 + + 65, 19 - - LabelProxyPassword + + 7 - - 3 + + DMPeriod - - 未読Mentions通知アイコン + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GetPeriodPanel - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 14 - + + Fill + + False - - TweetActPanel + + 0, 0 - - ButtonBackToDefaultFontColor + + 525, 368 - - 5 + + 1 - - GetCountPanel + + False - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GetPeriodPanel - - 33, 43 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + SplitContainer1.Panel2 - - SplitContainer1 + + 1 - - 408, 22 + + True - + NoControl - - 5 + + 22, 22 - - 9 + + 166, 16 - - FavoritesTextCountApi + + 0 - - 113, 20 + + 読み込んだポストを既読にする - - 186, 19 + + StartupReaded - - GroupBox3 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label49 + + StartupPanel - - 75, 22 + + 0 - - 13 + + True - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 46 + + 22, 70 - - 22, 22 + + 174, 16 - - NoControl + + 2 - - True + + 片思いユーザーリストを取得する - - フッター(文末に付加) + + CheckStartupFollowers - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + StartupPanel - - 4 + + 1 - - 71 + + True - - 入力欄アクティブ時背景色 + + NoControl - - 102, 12 + + 22, 47 - - True + + 129, 16 - - True + + 1 - - NoControl + + 最新版のチェックをする - - False + + CheckStartupVersion - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ProxyPanel + + StartupPanel - - その発言の@先の人の発言 + + 2 - + True - + NoControl - - NoControl + + 22, 93 - - TweetPrvPanel + + 124, 16 - - CheckTinyURL + + 3 - - GetCountPanel + + Favoritesを取得する - - 60, 12 + + chkGetFav - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + StartupPanel - - 7 + + 3 - - 5 + + Fill - - CheckMinimizeToTray - - + False - - GetPeriodPanel + + 0, 0 - - GroupBox3 + + 525, 368 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - + False - - True + + StartupPanel - - 4 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + SplitContainer1.Panel2 + + + 2 + + True - - UserstreamPeriod + + 22, 186 - - NoControl + + 117, 12 - - MiddleLeft + + 11 - - 43 + + PublicSearchの取得数 - - ConnectionPanel + + Label30 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + GetCountPanel - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - + True - - 99, 12 + + 22, 136 - - 20 + + 63, 12 - - 22 + + 7 - - 183, 16 + + 初回の更新 - - 6 + + Label28 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GetCountPanel - - UserStreamPanel + + 1 - - 0, 0 - - + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 54 - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAG6YCa5L+hBgQAAAAOQ29ubmVjdGlvbk5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG - AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt - YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD - b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAAzjg5fjg63jgq3jgrcGCAAAAAlQcm94eU5vZGUA/////wkF - AAAA/////wkFAAAAAAAAAAs= - + + 87, 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - btnAtSelf + + Mentions取得数 - - GroupBox5 + + Label19 - - 170, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - chkTabIconDisp + + GetCountPanel - - Label69 + + 2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 259, 159 - - Fill + + 58, 19 - - 102, 19 + + 10 - - 69 + + FavoritesTextCountApi - - 認証する + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + GetCountPanel - - 48, 16 + + 3 - - LabelPostAndGet + + 259, 185 - - 134, 12 + + 58, 19 - - GroupBox5 + + 12 - - CheckShowGrid + + SearchTextCountApi - - 525, 368 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + GetCountPanel - - GroupBox5 + + 4 - + True - - lblDetail + + NoControl - - 13 + + 22, 160 - - リストフォント + + 99, 12 - - 117, 12 - - + 9 - - キャンセル + + Favoritesの取得数 - - NoControl + + Label66 - - BasedPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GetCountPanel - - 11 + + 5 - - btnAtTo + + 259, 135 - - 背景色 + + 58, 19 - - 4, 15 + + 8 - - GroupBox1 + + FirstTextCountApi - - True + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + GetCountPanel - - CheckRetweetNoConfirm + + 6 - - 2 + + 259, 112 - - 1 + + 58, 19 - - 217, 90 + + 6 - - 4 + + GetMoreTextCountApi - - 22 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + GetCountPanel - - SplitContainer1.Panel2 + + 7 - + + True + + NoControl - - Fill + + 22, 112 - - TweetPrvPanel + + 79, 12 - - CheckAutoConvertUrl + + 5 - - 通信にHTTPSを使用する + + 前データの更新 - - 文字色 + + Label53 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 305, 64 + + GetCountPanel - - ユーザー名 + + 8 - - 104, 19 + + True - - 25 + + NoControl - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 86 - - System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 247, 16 - - NoControl + + 4 - - 有効 + + 次の項目の更新時の取得数を個別に設定する - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + UseChangeGetCount - - 53 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SplitContainer1.Panel2 + + GetCountPanel - - GetPeriodPanel + + 9 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 259, 51 - - 214, 145 + + 58, 19 - - Disable + + 3 - - NoControl + + TextCountApiReply - - 22, 263 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ProxyPanel + + GetCountPanel - - FirstTextCountApi + + 10 - + + True + + NoControl - - 343, 16 + + 22, 24 - - 復活の呪文 + + 77, 12 - - TweetActPanel + + 0 - - 122, 16 + + 標準取得件数 - - TreeView1 + + Label67 - - btnAtTarget + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GetCountPanel - + + 11 + + + 259, 21 + + + 58, 19 + + 1 - - 214, 19 + + TextCountApi - - PreviewPanel + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + GetCountPanel - - 87, 12 + + 12 - - NoControl + + Fill - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0 - - 216, 106 + + 525, 368 - - 7 + + 3 - - GroupBox1 + + False - - 44 + + GetCountPanel - - 2 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 30 + + SplitContainer1.Panel2 - - NoControl + + 3 - - 343, 94 + + 227, 41 - - 125, 19 + + 65, 19 - - lblRetweet + + 2 - - 3 + + UserstreamPeriod - - 22, 90 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - AuthBasicRadio + + UserStreamPanel - + + 0 + + True - + NoControl - - 0 + + 22, 20 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 157, 16 - - 22, 42 + + 0 - - 102, 19 + + 起動時に自動的に接続する - - 623, 374 + + StartupUserstreamCheck - - 75, 22 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + UserStreamPanel - - 74, 110 + + 1 - - 396, 169 + + True - - 7 + + NoControl - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 45 - - 6 + + 145, 12 - - Twitter検索更新間隔(秒) + + 1 - - 6 + + 発言一覧への反映間隔(秒) - - 182, 211 + + Label83 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + UserStreamPanel - - True + + 2 - - GroupBox1 + + Fill - - GroupBox1 + + False - - btnUnread + + 0, 0 - - 14 + + 525, 368 - - 3 + + 4 - - GroupBox3 + + False - - MiddleLeft + + UserStreamPanel - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + SplitContainer1.Panel2 - - Alt + + 4 - - 184, 160 + + True - - 47 + + NoControl - - 35 + + 4, 15 - - 251, 43 + + 48, 16 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - NoControl + + 有効 - - 2 + + HotkeyCheck - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleRight + + GroupBox3 - - CheckPostAndGet + + 0 - + True - - 1 + + NoControl - - 91, 16 + + 340, 16 - - 214, 20 + + 13, 14 - - 145, 16 + + 6 - - TweetActPanel + + 0 - - 52 + + HotkeyCode - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + GroupBox3 - - 45 + + 1 - - 17 + + Disable - - Fill + + 257, 13 - - 398, 141 + + 77, 19 - - 15 + + 5 - - 41 + + HotkeyText - - 投稿時取得が有効のため、投稿のたびにAPIを消費します。 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBox3 2 - - 165, 16 + + True - - LabelProxyUser + + NoControl - - GroupBox5 + + 211, 15 - - GroupBox1 + + 42, 16 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - 108, 23 + + Win - - Password + + HotkeyWin - - 0 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14 + + GroupBox3 - - 104, 19 + + 3 - - NoControl - - + True - - 一般発言 + + NoControl - - ブラウザパス + + 168, 15 - - 100 + + 39, 16 - - 8 + + 3 - - GetCountPanel + + Alt - - 17 + + HotkeyAlt - - 101 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 96 + + GroupBox3 - - ConnectionPanel + + 4 - - 214, 70 + + True - - 82 + + NoControl - - 0 + + 116, 15 - - 999 + + 48, 16 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - M/d H:mm + + Shift - - NoControl + + HotkeyShift - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SplitContainer1.Panel1 + + GroupBox3 - - GroupBox1 + + 5 - - 92 + + True - - lblInputBackcolor + + NoControl - - False + + 69, 15 - - NoControl + + 43, 16 - - MiddleLeft + + 1 - - True + + Ctrl - - 11 + + HotkeyCtrl - - PreviewPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 178 + + GroupBox3 - - 3 + + 6 - - 8 + + 21, 305 - - 10 + + 474, 41 - - 0 + + 14 - - TweetActPanel + + ホットキー - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox3 - - サウンドを再生する + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 24 + + ActionPanel - - 44 + + 0 - - 525, 368 + + True - - 1 + + NoControl - - 99, 12 + + 22, 253 - - 28 + + 157, 16 - - 75, 22 + + 12 - - ConnectionPanel + + #タグの入力補助を使用する - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CheckHashSupple - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + ActionPanel - - $this + + 1 - + True - - 53, 12 - - - 49 - - + NoControl - - 42, 12 + + 22, 229 - - 9, 148 + + 153, 16 - - System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - 23 + + @IDの入力補助を使用する - - 259, 159 + + CheckAtIdSupple - - 26 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0 + + ActionPanel - - ColorDialog1 + + 2 - - フォント&&色 + + True - - 画像リンクがあった場合にサムネイルを表示する + + NoControl - - 64 + + 26, 210 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 340, 12 - - NoControl + + 10 - - 0 + + 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 - - MiddleLeft + + Label57 - - 22, 293 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 17 + + ActionPanel - - 1 + + 3 - - GetPeriodPanel + + True - - 1 + + NoControl - - True + + 22, 188 - - 541, 374 + + 183, 16 - - アウトプット先のURL + + 9 - - NoControl + + Fav操作結果を厳密にチェックする - - GroupBox1 + + CheckFavRestrict - - 130, 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 160 + + ActionPanel - - 22, 86 + + 4 - + NoControl - - 214, 120 + + 418, 157 - + + 75, 21 + + 8 - - RadioProxyIE + + 参照 - - BasedPanel + + Button3 - - ConnectionPanel + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6 - - - TweetPrvPanel - - + ActionPanel - - CheckPeriodAdjust + + 5 - - 65 - - + True - - 6 + + NoControl - - 96, 19 + + 22, 20 - - ProxyPanel + + 113, 16 - - 4 + + 0 - - 125, 19 + + サウンドを再生する - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PlaySnd - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ActionPanel - - NoControl + + 6 - - btnFav + + True - - False + + NoControl - - 14 + + 22, 275 - - 新着バルーンのユーザー名 + + 143, 16 - - PublicSearchの取得数 + + 13 - - 340, 16 + + 自分の発言を既読にする - - GetCountPanel + + chkReadOwnPost - - HotkeyCheck + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Shift + + ActionPanel - - 入力欄フォント + + 7 - - True - - + NoControl - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 42 - - 3 + + 408, 22 - - 216, 67 + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 - - GroupBox1 + + Label15 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 62, 12 + + ActionPanel - - True + + 8 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 184, 160 - - Simplified Chinese + + 228, 19 - - 0 + + 7 - - 13 + + BrowserPathText - - Label80 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 12 + + ActionPanel - - M/d tt h:mm:ss + + 9 - - 5 + + True - + NoControl - - GetCountPanel + + 22, 71 - - 22, 118 + + 100, 16 - - NoControl + + 2 - - Label14 + + 未読管理を行う - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + UReadMng - - True + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0 + + ActionPanel - - 4 + + 10 - + True - - True + + NoControl - - 22, 22 + + 21, 164 - - Label53 + + 60, 12 - - 58, 19 + + 6 - - Label81 + + ブラウザパス - - 2 + + Label44 - - lblDetailLink + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 246, 20 + + ActionPanel - - 214, 70 + + 11 - - 305, 126 + + True - - 11 + + NoControl - - ConnectionPanel + + 22, 114 - - Label30 + + 171, 16 - - 68 + + 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ×ボタンを押したときに終了する - - Ctrl + + CheckCloseToExit - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 84, 16 + + ActionPanel - - 22, 229 + + 12 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 18 + + 22, 137 - - 22, 203 + + 170, 16 - - 525, 368 + + 5 - - 215, 88 + + 最小化したときにアイコン化する - - Label31 + + CheckMinimizeToTray - - 9, 23 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 56 + + ActionPanel - - 166, 16 + + 13 - + + True + + NoControl - - 22, 103 + + 22, 92 - - 75, 22 + + 145, 16 - - System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - 6, 12 + + 新着時に未読をクリアする - - 22 + + CheckReadOldPosts - - 45 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 17 + + ActionPanel - - 0 + + 14 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Fill - - Label36 + + False - - Label77 + + 0, 0 - - GroupBox1 + + 525, 368 - - This is sample. + + 5 - - 6 + + False - - ConnectionPanel + + ActionPanel - - True + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + SplitContainer1.Panel2 - - GroupBox5 + + 5 - - Label10 + + 343, 94 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 70, 19 - - ActionPanel + + 7 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TextBitlyPw - - 195, 16 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 168, 15 + + TweetActPanel - - M/d tt h:mm + + 0 - - CheckHashSupple + + Enter - - Label37 + + Ctrl+Enter - - H:mm:ss M/d + + Shift+Enter - - 143, 107 + + 181, 136 - - lblAtTarget + + 246, 20 - - 143, 16 + + 9 - - 22, 21 + + ComboBoxPostKeySelect - - 396, 94 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + TweetActPanel - - 7 + + 1 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - + NoControl - - 256, 16 + + 19, 139 - - 文字色 + + 137, 12 - - 77, 19 + + 8 - - 15 + + POSTキー(デフォルトEnter) - - 5 + + Label27 - - 214, 170 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + TweetActPanel - - 22, 71 + + 2 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 21, 163 - - 9 + + 165, 16 - - SearchTextCountApi + + 10 - - True + + 公式RTする際に確認をしない - - 162, 16 + + CheckRetweetNoConfirm - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + TweetActPanel - - NoControl + + 3 - - 19 + + 201, 95 - - 113, 12 + + 71, 19 - - 247, 16 + + 5 - - GroupBox5 + + TextBitlyId - - Label83 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + TweetActPanel - - 23 + + 4 - + True - - Label32 - - - is.gd - - + NoControl - - 未読ポストのフォントと色を変更する(低速) + + 20, 211 - - ProxyPanel + + 107, 12 - - 22, 191 + + 11 - - 75, 22 + + フッター(文末に付加) - - 19 + + Label12 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 259, 21 + + TweetActPanel - - 22, 66 + + 5 - + True - - 10 + + NoControl - - 39 + + 278, 97 - - Label15 + + 42, 12 - - Mentions更新間隔(秒) + + 6 - - 15 + + APIKey - - MiddleLeft + + Label77 - - 22, 24 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label33 + + TweetActPanel - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - 259, 112 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 9, 98 + + 182, 211 - - True + + 195, 16 - - 48, 16 + + 12 - - 新着時に未読をクリアする + + 推奨フッターを使用する[TWNv○○] - + + CheckUseRecommendStatus + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetActPanel + + 7 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 2 + + NoControl - - 69, 15 + + 179, 97 - - This is sample. + + 16, 12 - - MiddleLeft + + 4 - - 12 + + ID - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label76 - - 投稿時取得 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 16 + + TweetActPanel - - StartupPanel + + 8 - - NoControl + + 182, 233 - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAM44OV44Kp44Oz44OIBgQAAAAIRm9udE5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG - AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt - YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD - b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAA3jg5Xjgqnjg7Pjg4gyBggAAAAJRm9udE5vZGUyAP////8J - BQAAAP////8JBQAAAAAAAAAL - + + 232, 19 - - PreviewPanel + + 13 - - BasedPanel + + StatusText - - NoControl + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnDetailBack + + TweetActPanel - - Label12 + + 9 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tinyurl - - 16, 95 + + is.gd - - btnListFont + + twurl.nl - - HotkeyShift + + bit.ly - - True + + j.mp - - True + + 181, 71 - - True + + 246, 20 - - True + + 3 - + + ComboBoxAutoShortUrlFirst + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 58 + + TweetActPanel - + + 10 + + + True + + NoControl - - 22, 51 + + 19, 74 - - TweetActPanel + + 154, 12 - - 104 + + 2 - - 1 + + URL自動短縮で優先的に使用 - - 9, 123 + + Label71 - - 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 286, 107 + + TweetActPanel - - 258, 21 + + 11 - - GetPeriodPanel + + True - + NoControl - - False + + 22, 21 - - 161, 16 + + 122, 16 - - This is sample. + + 0 - - CheckStartupFollowers + + 短縮URLを解決する - - UseChangeGetCount + + CheckTinyURL - - 1 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fill + + TweetActPanel - - False + + 12 - + True - + NoControl - - TweetPrvPanel + + 22, 42 - - 8 + + 242, 16 - - 22, 45 + + 1 - - True + + 入力欄のURLを投稿する際に自動で短縮する - - 23 + + CheckAutoConvertUrl - - ActionPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label11 + + TweetActPanel - - 22, 145 + + 13 - - 21 + + Fill - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - True + + 0, 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 525, 368 - - 2 + + 6 - + + False + + + TweetActPanel + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 58 + + SplitContainer1.Panel2 - - True + + 6 - - True + + 通知なし - - True + + アイコン変更 - - SplitContainer1.Panel2 + + アイコン変更&点滅 - - PlaySnd + + 215, 142 - - TimelinePeriod + + 136, 20 - - Label16 + + 8 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ReplyIconStateCombo - - 4 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 19, 282 + + PreviewPanel - + + 0 + + True - + + NoControl + + + 22, 145 + + + 134, 12 + + 7 - - 525, 368 + + 未読Mentions通知アイコン - - 8, 173 + + Label72 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 1 + + + True + NoControl - - 54 + + 22, 166 - - 243, 16 + + 256, 16 - - 37 + + 9 - - True + + Mentionsの新着があるときにウインドウを点滅する - - 認証方法 + + ChkNewMentionsBlink - - ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + PreviewPanel - - 8 + + 2 - + True - - 13 + + NoControl - - TextBitlyPw + + 22, 118 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 161, 16 - - 1 + + 6 - - 22, 20 + + タブに未読アイコンを表示する - - 84 + + chkTabIconDisp - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fill + + PreviewPanel - - chkUnreadStyle + + 3 - - AuthorizeButton + + True - - 215, 15 + + NoControl - - 9 + + 22, 191 - - 65 + + 243, 16 - - 19, 139 + + 10 - - 19 + + 画像リンクがあった場合にサムネイルを表示する - - ListsPeriod + + CheckPreviewEnable - - PubSearchPeriod + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 396, 69 + + PreviewPanel - - 10 + + 4 - - False + + True - - 182, 233 + + NoControl - - 3 + + 83, 290 - - SplitContainer1.Panel2 + + 115, 12 - - 起動時に自動的に接続する + + 15 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Apply after restarting - + + Label81 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + PreviewPanel + + 5 - - True + + OS Default - - 12 + + Japanese - - GetPeriodPanel + + English - - 発言数/フォロー数/フォロワー数 + + Simplified Chinese - - TweetPrvPanel + + 215, 285 - - 77, 12 + + 136, 20 - - 4 + + 16 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + LanguageCombo - - False + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label1 + + PreviewPanel - - 前データの更新 + + 6 - + True - + NoControl - - True + + 22, 290 - - ActionPanel + + 53, 12 - - False + + 14 - - 22, 24 + + Language - - 53 + + Label13 - - 0, 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ConnectionPanel + + PreviewPanel - - This is sample. + + 7 - + True - - True + + NoControl - - ProxyPanel + + 22, 263 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 133, 16 - - 67 + + 13 - - TweetPrvPanel + + 常に最前面に表示する - - 3 + + CheckAlwaysTop - - 113, 130 - - - 5 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 145, 12 - - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PreviewPanel - - Label5 + + 8 - - Label13 - - - ReTweet - - + True - - StartupReaded - - + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 238 - - False + + 343, 16 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - NoControl + + 発言詳細を等幅フォントで表示(AA対応、フォント適用不具合あり) - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CheckMonospace - - GroupBox5 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + PreviewPanel - + + 9 + + True - - Label18 - - - GetMoreTextCountApi - - + NoControl - - 525, 368 + + 22, 66 - - 6 + + 249, 16 - - GroupBox5 + + 3 - - 18 + + 画面最小化・アイコン時のみバルーンを表示する - - True + + CheckBalloonLimit - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + PreviewPanel - - Label55 + + 10 - - PreviewPanel + + True - + NoControl - - NoControl + + 22, 20 - - 258, 87 + + 130, 12 - - 1 + + 0 - - 93, 16 + + 新着バルーンのユーザー名 - - Fill + + Label10 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label19 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + PreviewPanel - - POSTキー(デフォルトEnter) + + 11 - - 6 + + (なし) - - 102 + + バージョン - - 262, 125 + + 最終発言 - - ButtonApiCalc + + @未読数 - - 36, 199 + + 未読数 - - 180, 16 + + 未読数(@未読数) - - 22, 91 + + 全未読/全発言数 - - 398, 16 + + 発言数/フォロー数/フォロワー数 - - 22, 238 + + 215, 88 - - 70 + + 197, 20 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - 83 + + ComboDispTitle - - twitter.com + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + PreviewPanel - - Twitter API URL (api.twitter.com) + + 12 - - 13 + + True - - 31 + + NoControl - - 0, 0 + + 22, 91 - - 10 + + 60, 12 - - 73 + + 4 - - 53 + + タイトルバー - - btnInputBackcolor + + Label45 - - 135, 19 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 122, 216 + + PreviewPanel - - 44, 12 + + 13 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + なし - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ユーザーID - - 47 + + ニックネーム - - 23, 12 + + 215, 15 - - 認証状態 + + 136, 20 - - 75, 22 + + 1 - - ホットキー + + cmbNameBalloon - - 22, 290 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 20 + + PreviewPanel - - 22, 20 + + 14 - - 525, 368 + + True - + NoControl - - PreviewPanel + + 22, 43 - - 指定する + + 235, 16 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - GroupBox5 + + タイトルバーとツールチップにユーザー名を表示 - - 22, 54 + + CheckDispUsername - - ConnectionPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 56 + + PreviewPanel - - This is sample. + + 15 - - 102, 19 - - + True - + + False + + NoControl - - 86 + + 22, 215 - - NoControl + + 180, 16 - - 205, 196 + + 11 - - 69 + + 発言詳細部にアイコンを表示する - - StartupPanel + + CheckBox3 - - 77 - - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 75, 21 + + PreviewPanel - - 125, 19 + + 16 - - CheckAtIdSupple + + Fill - - 22, 18 + + False - - 52, 12 + + 0, 0 - - NoControl + + 525, 368 - - NoControl + + 7 - - MiddleLeft + + False - - 228, 12 + + PreviewPanel - - btnDetail + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 50 + + SplitContainer1.Panel2 - - False + + 7 - - 259, 135 + + True - + NoControl - - リストの日時フォーマット + + 216, 134 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 131, 12 - - NoControl + + 9 - - 標準取得件数 + + 再起動後有効になります。 - - StartupPanel + + Label47 - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TweetPrvPanel + + + 0 + + True - - 再計算 + + NoControl - - ActionPanel + + 264, 90 - - 228, 19 + + 44, 12 - - GroupBox1 + + 5 - - BasedPanel + + Label63 - - ConnectionPanel + + LabelDateTimeFormatApplied - - 11 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetActPanel + + TweetPrvPanel - - 22, 153 + + 1 - + + True + + NoControl - - 104, 19 + + 217, 90 - + + 44, 12 + + 4 - - GetPeriodPanel + + Sample: - - 3 + + Label62 - - 16, 120 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 525, 368 + + TweetPrvPanel - - 22 + + 2 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Top, Bottom, Left, Right - - GetCountPanel + + yyyy/MM/dd H:mm:ss - - True + + yy/M/d H:mm:ss - - 22, 326 + + H:mm:ss yy/M/d - - 22, 186 + + M/d H:mm:ss - - False + + M/d H:mm - - 8 + + H:mm:ss M/d - - 0 + + H:mm:ss - - 57, 12 + + H:mm - - GroupBox3 + + tt h:mm - - 48 + + M/d tt h:mm:ss - - 9 + + M/d tt h:mm - - 115, 16 + + 216, 67 - - GetPeriodPanel + + 199, 20 - - 発言詳細リンク + + 3 - - 9 + + CmbDateTimeFormat - - Label57 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TweetPrvPanel - - ReplyPeriod + + 3 - - 未読管理を行う + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + NoControl - - NoControl + + 22, 70 - - ActionPanel + + 113, 12 - - PreviewPanel + + 2 - - Top + + リストの日時フォーマット - - 14 + + Label23 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + TweetPrvPanel + + + 4 + + True - - 43, 16 + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 108 - - 525, 368 + + 163, 12 - - NoControl + + 6 - - 214, 45 + + リストのアイコンサイズ(初期値16) - - True + + Label11 - - 最小化したときにアイコン化する + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TweetPrvPanel - - NoControl + + 5 - - 13 + + none - - 214, 95 + + 16*16 - - フォント&色設定 + + 24*24 - - Favoritesの取得数 + + 48*48 - - 8 + + 48*48(2Column) - - 65, 19 + + 252, 105 - - ProxyPanel + + 163, 20 - - 52 + + 8 - - GetCountPanel + + IconSize - - タイムアウトまでの時間(秒) + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 88, 12 + + TweetPrvPanel - - 214, 195 + + 6 - - NoControl + + False - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 216, 106 - - 75 + + 34, 19 - - 77 + + 7 - - 文字色 + + TextBox3 - - PreviewPanel + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + TweetPrvPanel - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - TextBoxOutputzKey + + True - - 68, 19 + + NoControl - - 112, 14 + + 22, 203 - - Label52 + + 203, 16 - - InternetExplorerの設定を使用する + + 12 - - UserStreamPanel + + ソート順を変更できないようにロックする - - 70, 19 + + CheckSortOrderLock - - フォント&&色 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 227, 20 + + TweetPrvPanel - - なし + + 8 - - NoControl + + True - + NoControl - - 211, 15 + + 22, 178 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 154, 16 - - 26, 210 + + 11 - - 66, 16 + + リストの区切り線を表示する - - GroupBox5 + + CheckShowGrid - - MiddleLeft - - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - CheckUseSsl + + TweetPrvPanel - + + 9 + + True - - 自分への@返信 + + NoControl - - 102, 19 + + 22, 42 - - GroupBox5 + + 226, 16 - - リストのアイコンサイズ(初期値16) + + 1 - - LabelApiUsing + + 未読ポストのフォントと色を変更する(低速) - - ProxyPanel + + chkUnreadStyle - - 65, 19 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 63, 12 + + TweetPrvPanel - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - btnListBack + + True - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 21 - - This is sample. + + 162, 16 - - 264, 90 + + 0 - - NoControl + + 片思いを色分けして表示する - - yy/M/d H:mm:ss + + OneWayLv - - 62 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - FontDialog1 + + TweetPrvPanel - - 6 + + 11 - - NoControl + + Fill - - NoControl + + False - - True + + 0, 0 - - TweetPrvPanel + + 525, 368 - - 102, 19 + + 8 - - lblDetailBackcolor + + False - - 107, 12 + + TweetPrvPanel - - 63, 12 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - フォント&色設定 + + SplitContainer1.Panel2 - - 75, 22 + + 8 - - 16, 12 + + True - - 69, 12 + + NoControl - - 22, 166 + + 396, 119 - - True + + 75, 22 - - Fill + + 14 - - GroupBox5 + + 文字色 - - 6 + + btnRetweet - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 発言詳細部にアイコンを表示する + + GroupBox1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - 65, 19 + + NoControl - - 10 + + 214, 120 - - 215, 285 + + 104, 19 - - Save + + 13 - - True + + This is sample. - - 背景色 + + MiddleLeft - - 8 + + lblRetweet - - 53, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - CheckCloseToExit + + GroupBox1 - - ActionPanel + + 1 - - 214, 170 + + True - - GroupBox5 - - + NoControl - - False + + 9, 123 - - 285, 12 + + 50, 12 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ReTweet - + + Label80 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - URL自動短縮で優先的に使用 + + 2 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - True + + 194, 236 - - 182, 20 + + 90, 22 - - NoControl + + 24 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + デフォルトに戻す - - 2 + + ButtonBackToDefaultFontColor - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + GroupBox1 - - 34 + + 3 - + + True + + NoControl - - 18 + + 396, 169 - - GroupBox1 + + 75, 22 - - 44, 12 + + 20 - - Label71 + + 文字色 - - Label24 + + btnDetailLink - - 134, 12 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 使用しない - - + GroupBox1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - ProxyPanel + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 214, 170 - - CheckUseRecommendStatus + + 104, 19 - - lblAtSelf + + 19 - - True + + This is sample. - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleLeft - - SplitContainer1.Panel2 + + lblDetailLink - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 65, 19 + + GroupBox1 - - Label76 + + 5 - - 235, 16 - - + True - - 2 + + NoControl - - #タグの入力補助を使用する + + 8, 173 - - SplitContainer1.Panel1 + + 77, 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 18 - - NoControl + + 発言詳細リンク - - 7 + + Label18 - - 102, 19 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18 + + GroupBox1 - - 22, 41 + + 6 - - 214, 120 + + True - - 21 + + NoControl - - GroupBox3 + + 396, 44 - - 2 + + 75, 22 - - 145, 16 + + 5 - - UserStreamPanel + + フォント&&色 - - クリア + + btnUnread - - TweetPrvPanel + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + GroupBox1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - 0 + + NoControl - - 85 + + 214, 45 - - BasedPanel + + 104, 19 - - True + + 4 - + This is sample. - - True + + MiddleLeft - - Label3 + + lblUnread - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 12 + + GroupBox1 - - 22, 137 + + 8 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - twurl.nl + + NoControl - - GroupBox5 + + 9, 48 - - 22, 92 + + 62, 12 - - 50 - 3 - - GetPeriodPanel + + 未読フォント - - 14 + + Label20 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 背景色 - - + GroupBox1 - - 32 + + 9 - + + True + + NoControl - - ComboDispTitle + + 396, 194 - - ConnectionPanel + + 75, 22 - - Label61 + + 23 - - NoControl + + 背景色 - - 21, 163 + + btnDetailBack - - 314, 12 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lblTarget + + GroupBox1 - - True + + 10 - - False + + NoControl - - Label20 + + 214, 195 - - 46 + + 104, 19 - - 1 + + 22 - - True + + This is sample. - - 398, 41 + + MiddleLeft - + + lblDetailBackcolor + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + GroupBox1 - - 4 + + 11 - - Label7 + + True - - 11 + + NoControl - - 12 + + 9, 198 - - CheckFavRestrict + + 89, 12 - - GroupBox5 + + 21 - - 102, 19 + + 発言詳細背景色 - - 104, 19 + + Label37 - - 44 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + GroupBox1 - - Label66 + + 12 - - 75 + + True - - ActionPanel - - + NoControl - - Label72 + + 396, 144 - - SplitContainer1.Panel2 - - + 75, 22 - - 77, 12 + + 17 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + フォント&&色 - - 136, 20 + + btnDetail - - 104, 19 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6 + + GroupBox1 - - 9 + + 13 - - 19 + + NoControl - - 5 + + 214, 145 - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAG6KGo56S6BgQAAAALUHJldmlld05vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUGAAAA - HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdl - SW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3Vu - dAEBAAABAAEAAQgICAIAAAAGBwAAABLjg6rjgrnjg4jjga7ooajnpLoGCAAAAAxUd2VldFBydk5vZGUA - /////wkFAAAA/////wkFAAAAAAAAAAs= - + + 104, 19 - - TextProxyPort + + 16 - - 60 + + This is sample. - - 113, 109 + + MiddleLeft - - 2 + + lblDetail - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBox1 - - 4 + + 14 - - 255, 85 + + True - - 17 + + NoControl - - BASIC + + 9, 148 - - 63 + + 77, 12 - - 51 + + 15 - - 71, 19 + + 発言詳細文字 - - 5 + + Label26 - - ActionPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + GroupBox1 - - AppendSettingDialog + + 15 - - 画面最小化・アイコン時のみバルーンを表示する + + True - + NoControl - - TextBox3 + + 396, 94 - - 103 + + 75, 22 - - True + + 11 - - SplitContainer1.Panel2 + + 文字色 - - Label27 + + btnOWL - - SplitContainer1.Panel2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + GroupBox1 - - TweetActPanel + + 16 - - ComboBoxOutputzUrlmode + + NoControl - - 43 + + 214, 95 - - ActionPanel + + 104, 19 - - True + + 10 - - GroupBox5 + + This is sample. - - 190, 16 + + MiddleLeft - - 130, 12 + + lblOWL - - 3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ユーザ名(&U) + + GroupBox1 - - 3 + + 17 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - PreviewPanel - - + NoControl - - FontPanel2 + + 9, 98 - - 22, 253 + + 63, 12 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - chkReadOwnPost + + 片思い発言 - - 55 + + Label24 - - ComboBoxPostKeySelect + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 396, 119 + + GroupBox1 - - CheckPreviewEnable + + 18 - - 15 + + True - - GroupBox5 + + NoControl - - 4 + + 396, 69 - - GetCountPanel + + 75, 22 - - 48, 12 + + 8 - + + 文字色 + + + btnFav + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 78 + + GroupBox1 - + + 19 + + NoControl - - 12 + + 214, 70 - - MiddleLeft + + 104, 19 - + + 7 + + This is sample. - - btnOWL + + MiddleLeft - - 484, 267 + + lblFav - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 短縮URLを解決する + + GroupBox1 - - 22 + + 20 - - 0, 0 + + True - - GroupBox5 + + NoControl - - TweetActPanel + + 9, 73 - - BasedPanel + + 48, 12 - - 133, 16 + + 6 - - 39, 16 + + Fav発言 - - GetCountPanel + + Label22 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ConnectionPanel + + GroupBox1 - - NoControl + + 21 - - 7 - - - GetPeriodPanel - - - 178, 16 - - + True - + NoControl - - True + + 396, 19 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 22 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 61 + + フォント&&色 - - CheckOutputz + + btnListFont - - 3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 42 + + GroupBox1 - - 5 + + 22 - + NoControl - - True + + 214, 20 - - 6 + + 104, 19 - - HotkeyAlt + + 1 - - GroupBox5 + + This is sample. - - 22, 112 + + MiddleLeft - + + lblListFont + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + GroupBox1 - - 48, 12 + + 23 - + True - + NoControl - - 9 + + 9, 23 - - lblListBackcolor + + 62, 12 - - 7 + + 0 - - True + + リストフォント - + + Label61 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - 16, 170 + + 24 - - 0 + + 22, 18 - - Label28 + + 484, 267 - - True + + 0 - - Ctrl+Enter + + フォント&色設定 - - True + + GroupBox1 - - 発言詳細文字 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + FontPanel - - ユーザーID + + 0 - - 75, 22 + + Fill - - ニックネーム + + False - - btnSelf + + 0, 0 - - NoControl + + 525, 368 - - NoControl + + 9 - - 2 + + False - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + FontPanel - - 396, 19 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - BasedPanel + + SplitContainer1.Panel2 - - 6 + + 9 - - タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 + + True - + NoControl - - 6 + + 16, 220 - - ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 + + 74, 12 - - CheckDispUsername + + 24 - - IconSize + + 入力欄フォント - - HotkeyText + + Label65 - - 246, 20 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + GroupBox5 + + + 0 + + True - - 113, 16 + + NoControl - - 64 + + 16, 195 - - True + + 131, 12 - - CheckBox3 + + 21 - - 489, 290 + + 入力欄アクティブ時背景色 - - NoControl + + Label52 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 片思い発言 + + GroupBox5 - - This is sample. + + 1 - - 398, 91 + + True - - 22, 20 + + NoControl - - タイムライン更新間隔(秒) + + 16, 145 - - 94 + + 102, 12 - - 2 + + 15 - - NoControl + + その発言の@先発言 - - 1 + + Label49 - - RadioProxyNone + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - AuthOAuthRadio + + GroupBox5 - - 背景色 + + 2 - - 214, 220 + + True - + NoControl - - ConnectionPanel + + 16, 170 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 53, 12 - - 58, 19 + + 18 - - True + + 一般発言 - - MiddleLeft + + Label9 - - BasedPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox5 - - GetCountPanel + + 3 - - GroupBox5 + + True - - CheckBalloonLimit + + NoControl - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16, 120 - - GetPeriodPanel + + 134, 12 - - This is sample. + + 12 - - TextBitlyId + + その発言の@先の人の発言 - - HotkeyWin + + Label14 - - Apply after restarting + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 398, 66 + + GroupBox5 - - PreviewPanel + + 4 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - + NoControl - - Fav発言 + + 16, 95 - - 44 + + 88, 12 - - 50 + + 9 - - 7 + + その人への@返信 - - NoControl + + Label16 - - 75, 23 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 再起動後有効になります。 + + GroupBox5 - - 29, 174 + + 5 - - 15 + + True - - 背景色 + + NoControl - - 0 + + 16, 70 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 70, 12 - - 197, 20 + + 6 - - 474, 41 + + その人の発言 - - 0, 0 + + Label32 - - 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBox5 - - 84 + + 6 - + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 63, 12 + + 16, 45 - - 設定 + + 81, 12 - - 0, 0 + + 3 - - 115, 12 + + 自分への@返信 - + + Label34 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 7 + + True - - 49 - - + NoControl - - 11 + + 16, 20 - - 背景色 + + 63, 12 - - 75, 22 - - + 0 - - DM更新間隔(秒) + + 自分の発言 - - 22, 47 + + Label36 - - 62 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - CheckEnableBasicAuth + + GroupBox5 - - 0 + + 8 - + + True + + NoControl - - 137, 12 + + 398, 216 - - 104, 19 + + 75, 22 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 26 - - Label9 + + フォント&&色 - - NoControl + + btnInputFont - - TweetPrvPanel + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - CheckAlwaysTop + + 9 - + True - - 4 + + NoControl - - PreviewPanel + + 398, 191 - - 92 + + 75, 22 - - 60 + + 23 - - 73 + + 背景色 - + + btnInputBackcolor + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 10 + + True - + NoControl - - 74, 12 + + 398, 141 - - 11 + + 75, 22 - - 4 + + 17 - - TextProxyUser + + 背景色 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnAtTo - - 163, 20 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18 + + GroupBox5 - - BasedPanel + + 11 - - NoControl + + True - + NoControl - - True + + 398, 166 - - ProxyPanel + + 75, 22 - - 22, 108 + + 20 - - PreviewPanel + + 背景色 - - Sample: + + btnListBack - - CheckStartupVersion + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 63, 12 + + GroupBox5 - + 12 - - 12 - - + True - - 62, 12 + + NoControl - - 7 + + 398, 116 - - 54 + + 75, 22 - - ポート(&P) + + 14 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 背景色 - + + btnAtFromTarget + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SplitContainer1.Panel2 + + GroupBox5 - - True + + 13 - - アイコン変更&点滅 - - + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 16 + + 398, 91 - - 0 + + 75, 22 - - False + + 11 - - 0, 0 + + 背景色 - - 89, 12 + + btnAtTarget - - Fill + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + GroupBox5 - - 59 + + 14 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + True - - 57 + + NoControl - - 67 + + 398, 66 - - 25 - - + 75, 22 - - True + + 8 - - 525, 368 + + 背景色 - - NoControl + + btnTarget - - 16 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 99 + + GroupBox5 - - $this + + 15 - - lblSelf + + True - - 40 - - + NoControl - - 181, 136 + + 398, 41 - - Mentions取得数 + + 75, 22 - - ID + + 5 - - 36 + + 背景色 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnAtSelf - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16 - - 22, 161 + + True - - 396, 44 - - + NoControl - - 104, 19 + + 398, 16 - - 16, 70 + + 75, 22 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - True + + 背景色 - - twitter.com/username + + btnSelf - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + GroupBox5 + + + 17 + + NoControl - - This is sample. + + 214, 220 - - 1 + + 102, 19 - - 58, 19 + + 25 - - 82 + + This is sample. - - 43 + + MiddleLeft - - True + + lblInputFont - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - SplitContainer1.Panel2 + + 18 - - TweetPrvPanel + + NoControl - - 75, 23 + + 214, 195 - - GetPeriodPanel + + 102, 19 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22 - - 58, 19 + + This is sample. - - 75, 22 + + MiddleLeft - - 340, 12 + + lblInputBackcolor - - 396, 144 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - ConnectionPanel + + 19 - - 24 - - + NoControl - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 214, 145 - - 未読フォント + + 102, 19 - - TextCountApiReply + + 16 - - Fill + + This is sample. - - 257, 13 + + MiddleLeft - - 76 + + lblAtTo - - Fav操作結果を厳密にチェックする + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 76, 16 + + GroupBox5 - + + 20 + + NoControl - - 0 + + 214, 170 - - ソート順を変更できないようにロックする + + 102, 19 - - TextProxyPassword + + 19 - - TweetPrvPanel + + This is sample. - - 42, 16 + + MiddleLeft - - 36, 245 + + lblListBackcolor - - Japanese + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - 15 + + 21 - - ActionPanel + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 214, 120 - - NoControl + + 102, 19 - - SplitContainer1.Panel2 + + 13 - - 6 + + This is sample. - - 60, 12 + + MiddleLeft - + + lblAtFromTarget + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - NoControl + + 22 - - Cancel - - + NoControl - - lblInputFont + + 214, 95 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 19 - - 0, 0 + + 10 - - ProxyPanel + + This is sample. - - 75, 22 + + MiddleLeft - - Button3 + + lblAtTarget - - 8 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 23 - - 137, 12 + + NoControl - - PreviewPanel + + 214, 70 - - GetCountPanel + + 102, 19 - - 215, 142 + + 7 - - GroupBox1 + + This is sample. - - NoControl + + MiddleLeft - - 114, 82 + + lblTarget - - 22, 54 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + GroupBox5 - - DMPeriod + + 24 - - 41 + + NoControl - - btnRetweet + + 214, 45 - - GetCountPanel + + 102, 19 - - 9, 73 + + 4 This is sample. - - Fill + + MiddleLeft - - 文字色 + + lblAtSelf - - 48*48(2Column) + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SplitContainer1.Panel2 + + GroupBox5 - - 40 + + 25 - + NoControl - - 79, 12 + + 214, 19 - - 2 + + 102, 19 - - 123, 12 + + 1 - - 16, 220 + + This is sample. - + MiddleLeft - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblSelf - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 53, 12 + + GroupBox5 - - @IDの入力補助を使用する + + 26 - - 22, 112 + + True - - 22, 133 + + NoControl - - 214, 195 + + 191, 252 - - 10 + + 90, 22 - - lblListFont + + 27 デフォルトに戻す - - 22, 70 + + ButtonBackToDefaultFontColor2 - - 227, 41 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 203, 16 + + GroupBox5 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 27 - - タイトルバー + + 22, 18 - - ActionPanel + + 489, 290 - - 10 + + 0 - - 96 + + フォント&色設定 - - 0 + + GroupBox5 - - Label26 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnAtFromTarget + + FontPanel2 - - 11 + + 0 - - Not Authenticated + + Fill - - 発言詳細を等幅フォントで表示(AA対応、フォント適用不具合あり) + + False - - 2 + + 0, 0 - - NoControl + + 525, 368 - - 0 + + 10 - - デフォルトに戻す + + False - - 39 + + FontPanel2 - - 3 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fill + + SplitContainer1.Panel2 - - 11 + + 10 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 22, 19 + + NoControl - - 4 + + 22, 293 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 237, 16 - - 14 + + 13 - - H:mm + + ニコニコ動画のURLをnico.msで短縮して送信 - - フォント&&色 + + CheckNicoms - - 4 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 62 + + ConnectionPanel - + + 0 + + True - - PreviewPanel + + NoControl - - 525, 368 + + 36, 245 - - 242, 16 + + 99, 12 - - 20 + + 11 - - LabelProxyAddress + + アウトプット先のURL - - 22, 188 + + Label60 - - 258, 63 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 12 + + ConnectionPanel - - NoControl + + 1 - - 23 + + twitter.com - - NoControl + + twitter.com/username - - 75, 22 + + 205, 242 - - 75, 23 + + 182, 20 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - UReadMng + + ComboBoxOutputzUrlmode - - 1 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 309, 82 + + ConnectionPanel - - 90, 22 + + 2 - - btnInputFont + + True - - MiddleLeft + + NoControl - - 常に最前面に表示する + + 36, 199 - - 14 + + 63, 12 - - 5 + + 9 - - 50, 85 + + 復活の呪文 - - 94 + + Label59 - - MiddleLeft + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + ConnectionPanel - - プロキシ(&X) + + 3 - - 75, 22 + + 205, 196 - - NoControl + + 182, 19 - - Label64 + + 10 - + + TextBoxOutputzKey + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ConnectionPanel + + + 4 + + + True + + NoControl - - ニコニコ動画のURLをnico.msで短縮して送信 + + 22, 161 + + 115, 16 + + + 8 + Outputzに対応する - - BASIC認証への変更を許可する + + CheckOutputz - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + ConnectionPanel - - 22, 114 + + 5 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 9 + + NoControl - - Twitter SearchAPI URL (search.twitter.com) + + 22, 326 - - btnDetailLink + + 178, 16 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 14 - - Label22 + + BASIC認証への変更を許可する - - 77, 12 + + CheckEnableBasicAuth - - Label65 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - bit.ly + + ConnectionPanel - - BasedPanel + + 6 - - NoControl + + 262, 125 - - Label4 + + 125, 19 - - ProxyPanel + + 7 - - True + + search.twitter.com - - True + + TwitterSearchAPIText - - 58, 19 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + ConnectionPanel - - 51 + + 7 - - 0, 0 + + True - - 22, 114 + + NoControl - - 19 + + 22, 128 - - True + + 228, 12 - - $this + + 6 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Twitter SearchAPI URL (search.twitter.com) - - NoControl + + Label31 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + ConnectionPanel - - パスワード(&W) + + 8 - - Mentionsの新着があるときにウインドウを点滅する + + 262, 100 - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 125, 19 - - Label23 + + 5 - - 27 + + api.twitter.com - - 20 + + TwitterAPIText - - This is sample. + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - BasedPanel + + ConnectionPanel - - 75, 22 + + 9 - - Label62 + + True - - 1 + + NoControl - - ButtonBackToDefaultFontColor2 + + 22, 103 - - SplitContainer1.Panel2 + + 174, 12 - - GroupBox1 + + 4 - - lblAtFromTarget + + Twitter API URL (api.twitter.com) - - M/d H:mm:ss + + Label8 - - ×ボタンを押したときに終了する + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - タブに未読アイコンを表示する + + ConnectionPanel - - 7 + + 10 - - 背景色 + + True - + NoControl - - True + + 22, 78 - - False + + 145, 16 - - その人の発言 + + 3 - - 16, 145 + + 通信にHTTPSを使用する - - 66 + + CheckUseSsl - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAG5YuV5L2cBgQAAAAKQWN0aW9uTm9kZQD/////BgUAAAAA/////wkFAAAAAQAAAAkGAAAABQYAAAAd - U3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJ - bmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50 - AQEAAAEAAQABCAgIAgAAAAYHAAAAFeODhOOCpOODvOODiOOBruWLleS9nAYIAAAADFR3ZWV0QWN0Tm9k - ZQD/////CQUAAAD/////CQUAAAAAAAAACw== - + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + ConnectionPanel - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - 16, 20 + + True - - Label59 + + NoControl - - GetCountPanel + + 22, 51 - - Label60 + + 349, 12 - - True + + 2 - - lblAtTo + + ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 - - 背景色 + + Label64 - - 217, 110 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + ConnectionPanel - - TweetPrvPanel + + 12 - - 13 + + 262, 18 - - NoControl + + 125, 19 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - NoControl + + ConnectionTimeOut - - TextProxyAddress + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 21 + + ConnectionPanel - - SplitContainer1 + + 13 - + True - + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 20 - + + 131, 12 + + 0 - - 55 + + タイムアウトまでの時間(秒) - - lblFav + + Label63 - - RadioProxySpecified + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 63 + + ConnectionPanel - - CheckReadOldPosts + + 14 - - 214, 95 + + Fill - - 41 + + False - - TwitterAPIText + + 0, 0 - - 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 + + 525, 368 - - True + + 11 - - 418, 157 + + False - - 64 + + ConnectionPanel - - 78 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 21, 164 + + SplitContainer1.Panel2 - + + 11 + + + True + + NoControl - - 21 + + 41, 134 - - 3 + + 314, 12 - - NoControl + + 11 - - AuthUserLabel + + ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label55 - - 701, 368 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleLeft + + ProxyPanel - - その発言の@先発言 + + 0 - - 131, 12 + + 286, 107 - - 226, 16 + + 96, 19 - - TwitterSearchAPIText + + 10 - - PreviewPanel + + TextProxyPassword - - GroupBox1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + ProxyPanel - - 74 + + 1 - - 39 + + True - - 次の項目の更新時の取得数を個別に設定する + + NoControl - - TweetActPanel + + 22, 19 - - StartupPanel + + 76, 16 0 - - 16, 195 + + 使用しない - - 49 + + RadioProxyNone - - ActionPanel + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ProxyPanel - - 102, 19 + + 2 - - Label2 + + True - - 9, 48 - - + NoControl - - False + + 217, 110 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 69, 12 - - TextCountApi + + 9 - + + パスワード(&W) + + + LabelProxyPassword + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - パスワード + + ProxyPanel - - 65, 19 + + 3 - - 201, 95 + + True - - バージョン + + NoControl - - @未読数 + + 22, 41 - - 最終発言 + + 190, 16 - - 未読数(@未読数) + + 1 - - 未読数 + + InternetExplorerの設定を使用する - - 10 + + RadioProxyIE - - 全未読/全発言数 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 131, 12 + + ProxyPanel - - 24*24 + + 4 - - SplitContainer1 + + 143, 107 - - NoControl + + 68, 19 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - GroupBox5 + + TextProxyUser - - LabelDateTimeFormatApplied + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top, Bottom, Left, Right + + ProxyPanel - - 0, 0 + + 5 - + True - + NoControl - - 20, 211 + + 22, 62 - - Language + + 66, 16 - - Lists更新間隔(秒) + + 2 - - 71 + + 指定する - - Label6 + + RadioProxySpecified - - APIKey + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ProxyPanel - - 262, 18 + + 6 - - yyyy/MM/dd H:mm:ss + + True - + NoControl - - 181, 71 + + 74, 110 - - 124, 16 + + 63, 12 - - True + + 7 - - 10 + + ユーザ名(&U) - - 22, 42 + + LabelProxyUser - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + ProxyPanel - - 参照 + + 7 - - 22, 128 - - - 11 - - + True - - 10 + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 50, 85 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 58, 12 - - フォント&&色 + + 3 - - Enter + + プロキシ(&X) - - GroupBox1 + + LabelProxyAddress - - 37 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + ProxyPanel - - 0 + + 8 - - 149, 14 + + 309, 82 - - 525, 368 + + 73, 19 - - Label63 + + 6 - - 60 + + TextProxyPort - - CenterParent + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 75, 22 + + ProxyPanel - - FontPanel + + 9 - - GroupBox5 + + 114, 82 - - 10 + + 135, 19 - - 0, 0 + + 4 - - 51 + + TextProxyAddress - - リストの区切り線を表示する + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - アイコン変更 + + ProxyPanel - - 172 + + 10 - - ActionPanel + + True - + NoControl - - 48 + + 255, 85 - - 102, 19 + + 48, 12 - - 57, 16 + + 5 - - 171, 16 + + ポート(&P) - - 19, 74 + + LabelProxyPort - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + ProxyPanel - - PreviewPanel + + 11 - - 22, 43 + + Fill - - 98 + + False - - True + + 0, 0 - - HotkeyCode + + 525, 368 - - 258, 135 + + 12 - - GroupBox1 + + False - - PreviewPanel + + ProxyPanel - - FontPanel + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + SplitContainer1.Panel2 - - 701, 403 + + 12 - - 2 + + SplitContainer1.Panel2 - - 43 + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + SplitContainer1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - 入力欄のURLを投稿する際に自動で短縮する + + 701, 368 - - 97 + + 172 - - 249, 16 + + 0 - - 自分の発言を既読にする + + SplitContainer1 - - 29, 195 + + System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 215 + + $this - - 1 + + 2 - - True + + 17, 17 + + + 140, 17 + + + NoControl - - GroupBox1 + + 623, 374 - - 9 + + 75, 23 - - StartupPanel + + 4 - - 5 + + キャンセル - - Fill + + Cancel - - GroupBox5 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 232, 19 + + $this - - SplitContainer1.Panel2 + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 136, 20 + + 541, 374 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 23 - - 153, 16 + + 3 - - 最新版のチェックをする + + OK - - 252, 105 + + Save - - This is sample. + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + $this - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True + + + 82 + + + 6, 12 - - 13 + + 701, 403 - - 63, 12 + + CenterParent - - 9 + + 設定 - - 398, 191 + + FontDialog1 - - This is sample. + + System.Windows.Forms.FontDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 136 + + ColorDialog1 - - 129, 16 + + System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + AppendSettingDialog - - GroupBox3 + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl - - - True - - - 17, 17 - - - 82 - - - 140, 17 - \ No newline at end of file Modified: trunk/Tween/AppendSettingDialog.vb =================================================================== --- trunk/Tween/AppendSettingDialog.vb 2010-12-21 17:11:06 UTC (rev 1240) +++ trunk/Tween/AppendSettingDialog.vb 2010-12-21 17:17:47 UTC (rev 1241) @@ -108,44 +108,20 @@ Private _ValidationError As Boolean = False - Private _curPanel As Panel = Nothing + Private Sub TreeView1_BeforeSelect(ByVal sender As Object, ByVal e As System.Windows.Forms.TreeViewCancelEventArgs) Handles TreeView1.BeforeSelect + If Me.TreeView1.SelectedNode Is Nothing Then Exit Sub + Dim pnl = DirectCast(Me.TreeView1.SelectedNode.Tag, Panel) + If pnl Is Nothing Then Exit Sub + pnl.Enabled = False + pnl.Visible = False + End Sub + Private Sub TreeView1_AfterSelect(ByVal sender As System.Object, ByVal e As System.Windows.Forms.TreeViewEventArgs) Handles TreeView1.AfterSelect - Dim NodeName As String = TreeView1.SelectedNode.Name - If _curPanel IsNot Nothing Then - _curPanel.Enabled = False - _curPanel.Visible = False - _curPanel = Nothing - End If - Select Case NodeName - Case "BasedNode" - _curPanel = BasedPanel - Case "PeriodNode" - _curPanel = GetPeriodPanel - Case "StartUpNode" - _curPanel = StartupPanel - Case "GetCountNode" - _curPanel = GetCountPanel - Case "UserStreamNode" - _curPanel = UserStreamPanel - Case "ActionNode" - _curPanel = ActionPanel - Case "TweetActNode" - _curPanel = TweetActPanel - Case "PreviewNode" - _curPanel = PreviewPanel - Case "TweetPrvNode" - _curPanel = TweetPrvPanel - Case "FontNode" - _curPanel = FontPanel - Case "FontNode2" - _curPanel = FontPanel2 - Case "ConnectionNode" - _curPanel = ConnectionPanel - Case "ProxyNode" - _curPanel = ProxyPanel - End Select - _curPanel.Enabled = True - _curPanel.Visible = True + If e.Node Is Nothing Then Exit Sub + Dim pnl = DirectCast(e.Node.Tag, Panel) + If pnl Is Nothing Then Exit Sub + pnl.Enabled = True + pnl.Visible = True End Sub Private Sub Save_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Save.Click @@ -601,9 +577,6 @@ HotkeyCode.Enabled = HotkeyEnabled ChkNewMentionsBlink.Checked = _BlinkNewMentions - TreeView1.SelectedNode = TreeView1.Nodes(0) - ActiveControl = Username - CheckOutputz_CheckedChanged(sender, e) GetMoreTextCountApi.Text = _MoreCountApi.ToString @@ -619,6 +592,26 @@ FirstTextCountApi.Enabled = UseChangeGetCount.Checked SearchTextCountApi.Enabled = UseChangeGetCount.Checked FavoritesTextCountApi.Enabled = UseChangeGetCount.Checked + + With Me.TreeView1 + .Nodes("BasedNode").Tag = BasedPanel + .Nodes("BasedNode").Nodes("PeriodNode").Tag = GetPeriodPanel + .Nodes("BasedNode").Nodes("StartUpNode").Tag = StartupPanel + .Nodes("BasedNode").Nodes("GetCountNode").Tag = GetCountPanel + .Nodes("BasedNode").Nodes("UserStreamNode").Tag = UserStreamPanel + .Nodes("ActionNode").Tag = ActionPanel + .Nodes("ActionNode").Nodes("TweetActNode").Tag = TweetActPanel + .Nodes("PreviewNode").Tag = PreviewPanel + .Nodes("PreviewNode").Nodes("TweetPrvNode").Tag = TweetPrvPanel + .Nodes("FontNode").Tag = FontPanel + .Nodes("FontNode").Nodes("FontNode2").Tag = FontPanel2 + .Nodes("ConnectionNode").Tag = ConnectionPanel + .Nodes("ConnectionNode").Nodes("ProxyNode").Tag = ProxyPanel + + .SelectedNode = .Nodes(0) + End With + + ActiveControl = Username End Sub Private Sub UserstreamPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles UserstreamPeriod.Validating @@ -2211,4 +2204,5 @@ Exit Sub End If End Sub + End Class \ No newline at end of file From svnnotify @ sourceforge.jp Wed Dec 22 09:04:51 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 22 Dec 2010 09:04:51 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNDJdICDoqK3lrprjga5TcGxpdENvbnRhaW5l?= =?utf-8?b?cuOBruWIhuWJsue3muOCkuenu+WLleOBp+OBjeOBquOBhOOCiOOBhuOBqw==?= Message-ID: <1292976291.604407.11959.nullmailer@users.sourceforge.jp> Revision: 1242 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1242 Author: f_swallow Date: 2010-12-22 09:04:51 +0900 (Wed, 22 Dec 2010) Log Message: ----------- 設定のSplitContainerの分割線を移動できないように Modified Paths: -------------- trunk/Tween/AppendSettingDialog.Designer.vb trunk/Tween/AppendSettingDialog.resx -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.Designer.vb =================================================================== --- trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-21 17:17:47 UTC (rev 1241) +++ trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-22 00:04:51 UTC (rev 1242) @@ -92,6 +92,7 @@ Me.CheckFavRestrict = New System.Windows.Forms.CheckBox() Me.Button3 = New System.Windows.Forms.Button() Me.PlaySnd = New System.Windows.Forms.CheckBox() + Me.chkReadOwnPost = New System.Windows.Forms.CheckBox() Me.Label15 = New System.Windows.Forms.Label() Me.BrowserPathText = New System.Windows.Forms.TextBox() Me.UReadMng = New System.Windows.Forms.CheckBox() @@ -143,7 +144,6 @@ Me.TextBox3 = New System.Windows.Forms.TextBox() Me.CheckSortOrderLock = New System.Windows.Forms.CheckBox() Me.CheckShowGrid = New System.Windows.Forms.CheckBox() - Me.chkReadOwnPost = New System.Windows.Forms.CheckBox() Me.chkUnreadStyle = New System.Windows.Forms.CheckBox() Me.OneWayLv = New System.Windows.Forms.CheckBox() Me.FontPanel = New System.Windows.Forms.Panel() @@ -731,6 +731,12 @@ Me.PlaySnd.Name = "PlaySnd" Me.PlaySnd.UseVisualStyleBackColor = True ' + 'chkReadOwnPost + ' + resources.ApplyResources(Me.chkReadOwnPost, "chkReadOwnPost") + Me.chkReadOwnPost.Name = "chkReadOwnPost" + Me.chkReadOwnPost.UseVisualStyleBackColor = True + ' 'Label15 ' Me.Label15.BackColor = System.Drawing.SystemColors.ActiveCaption @@ -1075,12 +1081,6 @@ Me.CheckShowGrid.Name = "CheckShowGrid" Me.CheckShowGrid.UseVisualStyleBackColor = True ' - 'chkReadOwnPost - ' - resources.ApplyResources(Me.chkReadOwnPost, "chkReadOwnPost") - Me.chkReadOwnPost.Name = "chkReadOwnPost" - Me.chkReadOwnPost.UseVisualStyleBackColor = True - ' 'chkUnreadStyle ' resources.ApplyResources(Me.chkUnreadStyle, "chkUnreadStyle") Modified: trunk/Tween/AppendSettingDialog.resx =================================================================== --- trunk/Tween/AppendSettingDialog.resx 2010-12-21 17:17:47 UTC (rev 1241) +++ trunk/Tween/AppendSettingDialog.resx 2010-12-22 00:04:51 UTC (rev 1242) @@ -121,6 +121,10 @@ Top + + + True + 0, 0 @@ -216,7 +220,6 @@ 172, 368 - 0 From svnnotify @ sourceforge.jp Wed Dec 22 10:11:35 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 22 Dec 2010 10:11:35 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNDNdICDpgbjmip7jgZfjgZ/jg47jg7zjg4k=?= =?utf-8?b?44GM5bGV6ZaL44Gn44GN44KL44Go44GN44Gv6YG45oqe44GX44Gf44Go44GN?= =?utf-8?b?44Gr5bGV6ZaL44GZ44KL44KI44GG44Gr44GX44Gf?= Message-ID: <1292980295.193701.25474.nullmailer@users.sourceforge.jp> Revision: 1243 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1243 Author: f_swallow Date: 2010-12-22 10:11:35 +0900 (Wed, 22 Dec 2010) Log Message: ----------- 選択したノードが展開できるときは選択したときに展開するようにした Modified Paths: -------------- trunk/Tween/AppendSettingDialog.vb -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.vb =================================================================== --- trunk/Tween/AppendSettingDialog.vb 2010-12-22 00:04:51 UTC (rev 1242) +++ trunk/Tween/AppendSettingDialog.vb 2010-12-22 01:11:35 UTC (rev 1243) @@ -107,8 +107,15 @@ Private _MyUserstreamPeriod As Integer Private _ValidationError As Boolean = False + Private FirstExpandNode As Boolean = True + Private _curPanel As Panel = Nothing Private Sub TreeView1_BeforeSelect(ByVal sender As Object, ByVal e As System.Windows.Forms.TreeViewCancelEventArgs) Handles TreeView1.BeforeSelect + If _curPanel IsNot Nothing Then + _curPanel.Enabled = False + _curPanel.Visible = False + _curPanel = Nothing + End If If Me.TreeView1.SelectedNode Is Nothing Then Exit Sub Dim pnl = DirectCast(Me.TreeView1.SelectedNode.Tag, Panel) If pnl Is Nothing Then Exit Sub @@ -118,6 +125,11 @@ Private Sub TreeView1_AfterSelect(ByVal sender As System.Object, ByVal e As System.Windows.Forms.TreeViewEventArgs) Handles TreeView1.AfterSelect If e.Node Is Nothing Then Exit Sub + If FirstExpandNode Then + FirstExpandNode = False + Else + e.Node.Expand() + End If Dim pnl = DirectCast(e.Node.Tag, Panel) If pnl Is Nothing Then Exit Sub pnl.Enabled = True @@ -332,6 +344,7 @@ End Sub Private Sub Setting_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing + If TreeView1.SelectedNode IsNot Nothing Then _curPanel = CType(TreeView1.SelectedNode.Tag, Panel) If tw IsNot Nothing AndAlso tw.Username = "" AndAlso e.CloseReason = CloseReason.None Then If MessageBox.Show(My.Resources.Setting_FormClosing1, "Confirm", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) = Windows.Forms.DialogResult.Cancel Then e.Cancel = True @@ -610,8 +623,15 @@ .SelectedNode = .Nodes(0) End With - + If _curPanel IsNot Nothing Then + _curPanel.Enabled = False + _curPanel.Visible = False + End If + _curPanel = BasedPanel + _curPanel.Enabled = True + _curPanel.Visible = True ActiveControl = Username + TreeView1.SelectedNode = Nothing End Sub Private Sub UserstreamPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles UserstreamPeriod.Validating From svnnotify @ sourceforge.jp Wed Dec 22 11:38:22 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 22 Dec 2010 11:38:22 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNDRdICDjg7voqK3lrprjga7jg5Xjgqnjg7M=?= =?utf-8?b?44OI44Gu44OR44ON44Or44KS6Kq/5pW0?= Message-ID: <1292985502.713602.3767.nullmailer@users.sourceforge.jp> Revision: 1244 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1244 Author: f_swallow Date: 2010-12-22 11:38:22 +0900 (Wed, 22 Dec 2010) Log Message: ----------- ・設定のフォントのパネルを調整 ・ボタンの位置を少し端から離した Modified Paths: -------------- trunk/Tween/AppendSettingDialog.resx trunk/Tween/AppendSettingDialog.vb -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.resx =================================================================== --- trunk/Tween/AppendSettingDialog.resx 2010-12-22 01:11:35 UTC (rev 1243) +++ trunk/Tween/AppendSettingDialog.resx 2010-12-22 02:38:22 UTC (rev 1244) @@ -218,7 +218,7 @@ - 172, 368 + 165, 368 0 @@ -590,7 +590,7 @@ 0, 0 - 525, 368 + 505, 368 0 @@ -1028,7 +1028,7 @@ 0, 0 - 525, 368 + 505, 368 1 @@ -1178,7 +1178,7 @@ 0, 0 - 525, 368 + 505, 368 2 @@ -1535,7 +1535,7 @@ 0, 0 - 525, 368 + 505, 368 3 @@ -1646,7 +1646,7 @@ 0, 0 - 525, 368 + 505, 368 4 @@ -2018,7 +2018,7 @@ NoControl - 418, 157 + 418, 158 75, 21 @@ -2309,7 +2309,7 @@ 0, 0 - 525, 368 + 505, 368 5 @@ -2738,7 +2738,7 @@ 0, 0 - 525, 368 + 505, 368 6 @@ -3299,7 +3299,7 @@ 0, 0 - 525, 368 + 505, 368 7 @@ -3449,7 +3449,7 @@ 216, 67 - 199, 20 + 179, 20 3 @@ -3716,7 +3716,7 @@ 0, 0 - 525, 368 + 505, 368 8 @@ -3743,7 +3743,7 @@ NoControl - 396, 119 + 331, 121 75, 22 @@ -3770,7 +3770,7 @@ NoControl - 214, 120 + 173, 121 104, 19 @@ -3833,7 +3833,7 @@ NoControl - 194, 236 + 175, 235 90, 22 @@ -3863,7 +3863,7 @@ NoControl - 396, 169 + 331, 171 75, 22 @@ -3890,7 +3890,7 @@ NoControl - 214, 170 + 173, 171 104, 19 @@ -3953,7 +3953,7 @@ NoControl - 396, 44 + 331, 46 75, 22 @@ -3980,7 +3980,7 @@ NoControl - 214, 45 + 173, 46 104, 19 @@ -4043,7 +4043,7 @@ NoControl - 396, 194 + 331, 196 75, 22 @@ -4070,7 +4070,7 @@ NoControl - 214, 195 + 173, 196 104, 19 @@ -4133,7 +4133,7 @@ NoControl - 396, 144 + 331, 146 75, 22 @@ -4160,7 +4160,7 @@ NoControl - 214, 145 + 173, 146 104, 19 @@ -4223,7 +4223,7 @@ NoControl - 396, 94 + 331, 96 75, 22 @@ -4250,7 +4250,7 @@ NoControl - 214, 95 + 173, 96 104, 19 @@ -4313,7 +4313,7 @@ NoControl - 396, 69 + 331, 71 75, 22 @@ -4340,7 +4340,7 @@ NoControl - 214, 70 + 173, 71 104, 19 @@ -4403,7 +4403,7 @@ NoControl - 396, 19 + 331, 21 75, 22 @@ -4430,7 +4430,7 @@ NoControl - 214, 20 + 173, 21 104, 19 @@ -4490,7 +4490,7 @@ 22, 18 - 484, 267 + 429, 267 0 @@ -4520,7 +4520,7 @@ 0, 0 - 525, 368 + 505, 368 9 @@ -4817,7 +4817,7 @@ NoControl - 398, 216 + 339, 215 75, 22 @@ -4847,7 +4847,7 @@ NoControl - 398, 191 + 339, 190 75, 22 @@ -4877,7 +4877,7 @@ NoControl - 398, 141 + 339, 140 75, 22 @@ -4907,7 +4907,7 @@ NoControl - 398, 166 + 339, 165 75, 22 @@ -4937,7 +4937,7 @@ NoControl - 398, 116 + 339, 115 75, 22 @@ -4967,7 +4967,7 @@ NoControl - 398, 91 + 339, 90 75, 22 @@ -4997,7 +4997,7 @@ NoControl - 398, 66 + 339, 65 75, 22 @@ -5027,7 +5027,7 @@ NoControl - 398, 41 + 339, 40 75, 22 @@ -5057,7 +5057,7 @@ NoControl - 398, 16 + 339, 15 75, 22 @@ -5084,7 +5084,7 @@ NoControl - 214, 220 + 175, 218 102, 19 @@ -5114,7 +5114,7 @@ NoControl - 214, 195 + 175, 193 102, 19 @@ -5144,7 +5144,7 @@ NoControl - 214, 145 + 175, 143 102, 19 @@ -5174,7 +5174,7 @@ NoControl - 214, 170 + 175, 168 102, 19 @@ -5204,7 +5204,7 @@ NoControl - 214, 120 + 175, 118 102, 19 @@ -5234,7 +5234,7 @@ NoControl - 214, 95 + 175, 93 102, 19 @@ -5264,7 +5264,7 @@ NoControl - 214, 70 + 175, 68 102, 19 @@ -5294,7 +5294,7 @@ NoControl - 214, 45 + 175, 43 102, 19 @@ -5324,7 +5324,7 @@ NoControl - 214, 19 + 175, 17 102, 19 @@ -5384,7 +5384,7 @@ 22, 18 - 489, 290 + 429, 290 0 @@ -5414,7 +5414,7 @@ 0, 0 - 525, 368 + 505, 368 10 @@ -5861,7 +5861,7 @@ 0, 0 - 525, 368 + 505, 368 11 @@ -6215,7 +6215,7 @@ 0, 0 - 525, 368 + 505, 368 12 @@ -6248,10 +6248,10 @@ 1 - 701, 368 + 674, 368 - 172 + 165 0 @@ -6278,7 +6278,7 @@ NoControl - 623, 374 + 587, 374 75, 23 @@ -6305,7 +6305,7 @@ NoControl - 541, 374 + 504, 374 75, 23 @@ -6338,7 +6338,7 @@ 6, 12 - 701, 403 + 674, 403 CenterParent Modified: trunk/Tween/AppendSettingDialog.vb =================================================================== --- trunk/Tween/AppendSettingDialog.vb 2010-12-22 01:11:35 UTC (rev 1243) +++ trunk/Tween/AppendSettingDialog.vb 2010-12-22 02:38:22 UTC (rev 1244) @@ -630,8 +630,8 @@ _curPanel = BasedPanel _curPanel.Enabled = True _curPanel.Visible = True + TreeView1.SelectedNode = Nothing ActiveControl = Username - TreeView1.SelectedNode = Nothing End Sub Private Sub UserstreamPeriod_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles UserstreamPeriod.Validating From svnnotify @ sourceforge.jp Wed Dec 22 21:22:31 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 22 Dec 2010 21:22:31 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNDVdICBKU09O5a++5b+c77yI6YCU5Lit77yJ?= Message-ID: <1293020551.976225.21278.nullmailer@users.sourceforge.jp> Revision: 1245 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1245 Author: kiri_feather Date: 2010-12-22 21:22:31 +0900 (Wed, 22 Dec 2010) Log Message: ----------- JSON対応(途中) Modified Paths: -------------- trunk/Tween/Connection/HttpTwitter.vb trunk/Tween/DataModel.vb trunk/Tween/ListElement.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Connection/HttpTwitter.vb =================================================================== --- trunk/Tween/Connection/HttpTwitter.vb 2010-12-22 02:38:22 UTC (rev 1244) +++ trunk/Tween/Connection/HttpTwitter.vb 2010-12-22 12:22:31 UTC (rev 1245) @@ -157,7 +157,7 @@ Public Function DestroyStatus(ByVal id As Long) As HttpStatusCode Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/statuses/destroy/" + id.ToString + ".xml"), _ + CreateTwitterUri("/1/statuses/destroy/" + id.ToString + ".json"), _ Nothing, _ Nothing, _ Nothing, _ @@ -179,7 +179,7 @@ Public Function DestroyDirectMessage(ByVal id As Long) As HttpStatusCode Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/direct_messages/destroy/" + id.ToString + ".xml"), _ + CreateTwitterUri("/1/direct_messages/destroy/" + id.ToString + ".json"), _ Nothing, _ Nothing, _ Nothing, _ @@ -188,7 +188,7 @@ Public Function RetweetStatus(ByVal id As Long, ByRef content As String) As HttpStatusCode Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/statuses/retweet/" + id.ToString() + ".xml"), _ + CreateTwitterUri("/1/statuses/retweet/" + id.ToString() + ".json"), _ Nothing, _ content, _ Nothing, _ @@ -205,12 +205,13 @@ TwitterApiInfo.HttpHeaders, _ AddressOf GetApiCallback) End Function + Public Function CreateFriendships(ByVal screenName As String, ByRef content As String) As HttpStatusCode Dim param As New Dictionary(Of String, String) param.Add("screen_name", screenName) Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/friendships/create.xml"), _ + CreateTwitterUri("/1/friendships/create.json"), _ param, _ content, _ Nothing, _ @@ -222,7 +223,7 @@ param.Add("screen_name", screenName) Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/friendships/destroy.xml"), _ + CreateTwitterUri("/1/friendships/destroy.json"), _ param, _ content, _ Nothing, _ @@ -234,7 +235,7 @@ param.Add("screen_name", screenName) Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/blocks/create.xml"), _ + CreateTwitterUri("/1/blocks/create.json"), _ param, _ content, _ Nothing, _ @@ -246,7 +247,7 @@ param.Add("screen_name", screenName) Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/blocks/destroy.xml"), _ + CreateTwitterUri("/1/blocks/destroy.json"), _ param, _ content, _ Nothing, _ @@ -258,7 +259,7 @@ param.Add("screen_name", screenName) Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/report_spam.xml"), _ + CreateTwitterUri("/1/report_spam.json"), _ param, _ content, _ Nothing, _ @@ -271,7 +272,7 @@ param.Add("target_screen_name", targetScreenName) Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/friendships/show.xml"), _ + CreateTwitterUri("/1/friendships/show.json"), _ param, _ content, _ TwitterApiInfo.HttpHeaders, _ @@ -289,7 +290,7 @@ Public Function CreateFavorites(ByVal id As Long, ByRef content As String) As HttpStatusCode Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/favorites/create/" + id.ToString() + ".xml"), _ + CreateTwitterUri("/1/favorites/create/" + id.ToString() + ".json"), _ Nothing, _ content, _ Nothing, _ @@ -298,7 +299,7 @@ Public Function DestroyFavorites(ByVal id As Long, ByRef content As String) As HttpStatusCode Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/favorites/destroy/" + id.ToString() + ".xml"), _ + CreateTwitterUri("/1/favorites/destroy/" + id.ToString() + ".json"), _ Nothing, _ content, _ Nothing, _ @@ -479,7 +480,7 @@ param.Add("cursor", cursor.ToString()) Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/followers/ids.xml"), _ + CreateTwitterUri("/1/followers/ids.json"), _ param, _ content, _ TwitterApiInfo.HttpHeaders, _ @@ -488,7 +489,7 @@ Public Function RateLimitStatus(ByRef content As String) As HttpStatusCode Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/account/rate_limit_status.xml"), _ + CreateTwitterUri("/1/account/rate_limit_status.json"), _ Nothing, _ content, _ Nothing, _ @@ -499,7 +500,7 @@ Dim param As New Dictionary(Of String, String) param.Add("cursor", cursor.ToString) Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/" + user + "/lists.xml"), _ + CreateTwitterUri("/1/" + user + "/lists.json"), _ param, _ content, _ TwitterApiInfo.HttpHeaders, _ @@ -513,7 +514,7 @@ If description IsNot Nothing Then param.Add("description", description) Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/" + user + "/lists/" + list_id + ".xml"), _ + CreateTwitterUri("/1/" + user + "/lists/" + list_id + ".json"), _ param, _ content, _ Nothing, _ @@ -525,7 +526,7 @@ param.Add("_method", "DELETE") Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/" + user + "/lists/" + list_id + ".xml"), _ + CreateTwitterUri("/1/" + user + "/lists/" + list_id + ".json"), _ param, _ content, _ Nothing, _ @@ -536,7 +537,7 @@ Dim param As New Dictionary(Of String, String) param.Add("cursor", cursor.ToString) Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/" + user + "/lists/subscriptions.xml"), _ + CreateTwitterUri("/1/" + user + "/lists/subscriptions.json"), _ param, _ content, _ TwitterApiInfo.HttpHeaders, _ @@ -557,7 +558,7 @@ End If Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/" + user + "/lists/" + list_id + "/statuses.xml"), _ + CreateTwitterUri("/1/" + user + "/lists/" + list_id + "/statuses.json"), _ param, _ content, _ TwitterApiInfo.HttpHeaders, _ @@ -577,7 +578,7 @@ param.Add("description", description) End If Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/" + user + "/lists.xml"), _ + CreateTwitterUri("/1/" + user + "/lists.json"), _ param, _ content, _ Nothing, Modified: trunk/Tween/DataModel.vb =================================================================== --- trunk/Tween/DataModel.vb 2010-12-22 02:38:22 UTC (rev 1244) +++ trunk/Tween/DataModel.vb 2010-12-22 12:22:31 UTC (rev 1245) @@ -253,4 +253,58 @@ Public Results As RelatedTweet() Public Score As Double End Class + + _ + Public Class RelationshipResult + Public FollowedBy As Boolean + Public Following As Boolean + End Class + + _ + Public Class RelationshipUsers + Public Target As RelationshipResult + Public Source As RelationshipResult + End Class + + _ + Public Class Relationship + Public Relationship As RelationshipUsers + End Class + + _ + Public Class Followers + Public Id As Long() + Public NextCursor As Long + Public PreviousCursor As Long + End Class + + _ + Public Class RateLimitStatus + Public RestTimeInSeconds As Integer + Public RemainingHits As Integer + Public RestTime As String + Public HourlyLimit As Integer + End Class + + _ + Public Class ListElementData + Public Mode As String + Public Uri As String + Public MemberCount As Integer + Public Slug As String + Public FullName As String + Public User As User + Public Following As Boolean + Public SubscriberCount As Integer + Public Description As String + Public Name As String + Public Id As Long + End Class + + _ + Public Class Lists + Public Lists As ListElementData() + Public NextCursor As Long + Public PreviousCursor As Long + End Class End Class Modified: trunk/Tween/ListElement.vb =================================================================== --- trunk/Tween/ListElement.vb 2010-12-22 02:38:22 UTC (rev 1244) +++ trunk/Tween/ListElement.vb 2010-12-22 12:22:31 UTC (rev 1245) @@ -19,18 +19,17 @@ End Sub - Public Sub New(ByVal xmlNode As Xml.XmlNode, ByVal tw As Twitter) - Me.Description = xmlNode.Item("description").InnerText - Me.Id = Long.Parse(xmlNode.Item("id").InnerText) - Me.IsPublic = (xmlNode.Item("mode").InnerText = "public") - Me.MemberCount = Integer.Parse(xmlNode.Item("member_count").InnerText) - Me.Name = xmlNode.Item("name").InnerText - Me.SubscriberCount = Integer.Parse(xmlNode.Item("subscriber_count").InnerText) - Me.Slug = xmlNode.Item("slug").InnerText - Dim xUserEntry As Xml.XmlElement = CType(xmlNode.SelectSingleNode("./user"), Xml.XmlElement) - Me.Nickname = xUserEntry.Item("name").InnerText - Me.Username = xUserEntry.Item("screen_name").InnerText - Me.UserId = Long.Parse(xUserEntry.Item("id").InnerText) + Public Sub New(ByVal listElementData As TwitterDataModel.ListElementData, ByVal tw As Twitter) + Me.Description = listElementData.Description + Me.Id = listElementData.Id + Me.IsPublic = (listElementData.Mode = "public") + Me.MemberCount = listElementData.MemberCount + Me.Name = listElementData.Name + Me.SubscriberCount = listElementData.MemberCount + Me.Slug = listElementData.Slug + Me.Nickname = listElementData.User.Name + Me.Username = listElementData.User.ScreenName + Me.UserId = listElementData.User.Id Me._tw = tw End Sub Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-22 02:38:22 UTC (rev 1244) +++ trunk/Tween/Twitter.vb 2010-12-22 12:22:31 UTC (rev 1245) @@ -572,99 +572,36 @@ Twitter.AccountState = ACCOUNT_STATE.Valid - 'Dim dlgt As GetIconImageDelegate 'countQueryに合わせる - 'Dim ar As IAsyncResult 'countQueryに合わせる - Dim xdoc As New XmlDocument + Dim status As TwitterDataModel.Status Try - xdoc.LoadXml(content) + status = CreateDataFromJson(Of TwitterDataModel.Status)(content) + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" Catch ex As Exception TraceOut(content) - 'MessageBox.Show("不正なXMLです。(TL-LoadXml)") - Return "Invalid XML!" + Return "Err:Invalid Json!" End Try 'ReTweetしたものをTLに追加 - Dim xentryNode As XmlNode = xdoc.DocumentElement.SelectSingleNode("/status") - If xentryNode Is Nothing Then Return "Invalid XML!" - Dim xentry As XmlElement = CType(xentryNode, XmlElement) - Dim post As New PostClass - Try - post.Id = Long.Parse(xentry.Item("id").InnerText) - '二重取得回避 - SyncLock LockObj - If TabInformations.GetInstance.ContainsKey(post.Id) Then Return "" - End SyncLock - 'Retweet判定 - Dim xRnode As XmlNode = xentry.SelectSingleNode("./retweeted_status") - If xRnode Is Nothing Then Return "Invalid XML!" + Dim post As PostClass = CreatePostsFromStatusData(status) - Dim xRentry As XmlElement = CType(xRnode, XmlElement) - post.PDate = DateTime.ParseExact(xRentry.Item("created_at").InnerText, "ddd MMM dd HH:mm:ss zzzz yyyy", System.Globalization.DateTimeFormatInfo.InvariantInfo, System.Globalization.DateTimeStyles.None) - 'Id - post.RetweetedId = Long.Parse(xRentry.Item("id").InnerText) - '本文 - post.Data = xRentry.Item("text").InnerText - 'Source取得(htmlの場合は、中身を取り出し) - post.Source = xRentry.Item("source").InnerText - 'Reply先 - Long.TryParse(xRentry.Item("in_reply_to_status_id").InnerText, post.InReplyToId) - post.InReplyToUser = xRentry.Item("in_reply_to_screen_name").InnerText - post.IsFav = TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).Contains(post.RetweetedId) + '二重取得回避 + SyncLock LockObj + If TabInformations.GetInstance.ContainsKey(post.Id) Then Return "" + End SyncLock + 'Retweet判定 + If post.RetweetedId = 0 Then Return "Invalid Json!" + 'ユーザー情報 + post.IsMe = True - '以下、ユーザー情報 - Dim xRUentry As XmlElement = CType(xRentry.SelectSingleNode("./user"), XmlElement) - post.Uid = Long.Parse(xRUentry.Item("id").InnerText) - post.Name = xRUentry.Item("screen_name").InnerText - post.Nickname = xRUentry.Item("name").InnerText - post.ImageUrl = xRUentry.Item("profile_image_url").InnerText - post.IsProtect = Boolean.Parse(xRUentry.Item("protected").InnerText) - post.IsMe = True + post.IsRead = read + post.IsOwl = False + If _readOwnPost Then post.IsRead = True + post.IsDm = False - 'Retweetした人(自分のはず) - Dim xUentry As XmlElement = CType(xentry.SelectSingleNode("./user"), XmlElement) - post.RetweetedBy = xUentry.Item("screen_name").InnerText - - 'HTMLに整形 - post.OriginalData = CreateHtmlAnchor(post.Data, post.ReplyToList) - post.Data = HttpUtility.HtmlDecode(post.Data) - post.Data = post.Data.Replace("<3", "?") - 'Source整形 - CreateSource(post) - - post.IsRead = read - post.IsReply = post.ReplyToList.Contains(_uid) - post.IsExcludeReply = False - - If post.IsMe Then - post.IsOwl = False - Else - If followerId.Count > 0 Then post.IsOwl = Not followerId.Contains(post.Uid) - End If - If post.IsMe AndAlso _readOwnPost Then post.IsRead = True - - post.IsDm = False - Catch ex As Exception - TraceOut(content) - 'MessageBox.Show("不正なXMLです。(TL-Parse)") - Return "Invalid XML!" - End Try - - 'Me._dIcon.Add(post.ImageUrl, Nothing) TabInformations.GetInstance.AddPost(post) - ''非同期アイコン取得&StatusDictionaryに追加 - 'dlgt = New GetIconImageDelegate(AddressOf GetIconImage) - 'ar = dlgt.BeginInvoke(post, Nothing, Nothing) - - ''アイコン取得完了待ち - 'Try - ' dlgt.EndInvoke(ar) - 'Catch ex As Exception - ' '最後までendinvoke回す(ゾンビ化回避) - ' ex.Data("IsTerminatePermission") = False - ' Throw - 'End Try - Return "" End Function @@ -721,15 +658,12 @@ Twitter.AccountState = ACCOUNT_STATE.Invalid Return "Check your Username/Password." Case HttpStatusCode.Forbidden - Dim xd As XmlDocument = New XmlDocument - Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/hash/error") - Return "Err:" + xNode.InnerText + "(" + GetCurrentMethod.Name + ")" - Catch ex As Exception - Return "Err:Forbidden" + "(" + GetCurrentMethod.Name + ")" - End Try + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Err:Forbidden(" + GetCurrentMethod.Name + ")" + Else + Return "Err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -758,15 +692,12 @@ Twitter.AccountState = ACCOUNT_STATE.Invalid Return "Check your Username/Password." Case HttpStatusCode.Forbidden - Dim xd As XmlDocument = New XmlDocument - Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/hash/error") - Return "Err:" + xNode.InnerText + "(" + GetCurrentMethod.Name + ")" - Catch ex As Exception - Return "Err:Forbidden" + "(" + GetCurrentMethod.Name + ")" - End Try + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Err:Forbidden(" + GetCurrentMethod.Name + ")" + Else + Return "Err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -795,15 +726,12 @@ Twitter.AccountState = ACCOUNT_STATE.Invalid Return "Check your Username/Password." Case HttpStatusCode.Forbidden - Dim xd As XmlDocument = New XmlDocument - Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/hash/error") - Return "Err:" + xNode.InnerText + "(" + GetCurrentMethod.Name + ")" - Catch ex As Exception - Return "Err:Forbidden" + "(" + GetCurrentMethod.Name + ")" - End Try + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Err:Forbidden(" + GetCurrentMethod.Name + ")" + Else + Return "Err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -832,15 +760,12 @@ Twitter.AccountState = ACCOUNT_STATE.Invalid Return "Check your Username/Password." Case HttpStatusCode.Forbidden - Dim xd As XmlDocument = New XmlDocument - Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/hash/error") - Return "Err:" + xNode.InnerText + "(" + GetCurrentMethod.Name + ")" - Catch ex As Exception - Return "Err:Forbidden" + "(" + GetCurrentMethod.Name + ")" - End Try + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Err:Forbidden(" + GetCurrentMethod.Name + ")" + Else + Return "Err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -869,15 +794,12 @@ Twitter.AccountState = ACCOUNT_STATE.Invalid Return "Check your Username/Password." Case HttpStatusCode.Forbidden - Dim xd As XmlDocument = New XmlDocument - Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/hash/error") - Return "Err:" + xNode.InnerText + "(" + GetCurrentMethod.Name + ")" - Catch ex As Exception - Return "Err:Forbidden" + "(" + GetCurrentMethod.Name + ")" - End Try + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Err:Forbidden(" + GetCurrentMethod.Name + ")" + Else + Return "Err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -899,17 +821,18 @@ Select Case res Case HttpStatusCode.OK - Dim xdoc As New XmlDocument - Dim result As String = "" - Twitter.AccountState = ACCOUNT_STATE.Valid Try - xdoc.LoadXml(content) - isFollowing = Boolean.Parse(xdoc.SelectSingleNode("/relationship/source/following").InnerText) - isFollowed = Boolean.Parse(xdoc.SelectSingleNode("/relationship/source/followed_by").InnerText) + Dim relation = CreateDataFromJson(Of TwitterDataModel.Relationship)(content) + isFollowing = relation.Relationship.Source.Following + isFollowed = relation.Relationship.Source.FollowedBy + Return "" + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" Catch ex As Exception - result = "Err:Invalid XML." + TraceOut(content) + Return "Err:Invalid Json!" End Try - Return result Case HttpStatusCode.BadRequest Return "Err:API Limits?" Case HttpStatusCode.Unauthorized @@ -1036,15 +959,12 @@ Twitter.AccountState = ACCOUNT_STATE.Invalid Return "Check your Username/Password." Case HttpStatusCode.Forbidden - Dim xd As XmlDocument = New XmlDocument - Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/hash/error") - Return "Err:" + xNode.InnerText + "(" + GetCurrentMethod.Name + ")" - Catch ex As Exception - Return "Err:Forbidden" + "(" + GetCurrentMethod.Name + ")" - End Try + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Err:Forbidden(" + GetCurrentMethod.Name + ")" + Else + Return "Err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -1109,15 +1029,12 @@ Twitter.AccountState = ACCOUNT_STATE.Invalid Return "Check your Username/Password." Case HttpStatusCode.Forbidden - Dim xd As XmlDocument = New XmlDocument - Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/hash/error") - Return "Err:" + xNode.InnerText - Catch ex As Exception - Return "Err:Forbidden" - End Try + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Err:Forbidden(" + GetCurrentMethod.Name + ")" + Else + Return "Err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -1543,7 +1460,7 @@ post.Nickname = user.Name post.ImageUrl = user.ProfileImageUrl post.IsProtect = user.Protected - If post.IsMe Then _UserIdNo = post.Uid.ToString() + post.IsMe = post.Name.ToLower.Equals(_uid) 'Retweetした人 post.RetweetedBy = status.User.ScreenName @@ -1665,7 +1582,7 @@ Return "Err:" + res.ToString() + "(" + GetCurrentMethod.Name + ")" End Select - Return CreatePostsFromXml(content, WORKERTYPE.List, tab, read, count, tab.OldestId) + Return CreatePostsFromJson(content, WORKERTYPE.List, tab, read, count, tab.OldestId) End Function Public Function GetRelatedResultsApi(ByVal read As Boolean, _ @@ -2308,26 +2225,18 @@ Return "Err:" + res.ToString() + "(" + GetCurrentMethod.Name + ")" End Select - Dim xdoc As New XmlDocument Try - xdoc.LoadXml(content) + Dim followers = CreateDataFromJson(Of TwitterDataModel.Followers)(content) + followerId.AddRange(followers.Id) + cursor = followers.NextCursor + Return "" + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" Catch ex As Exception TraceOut(content) - Return "Invalid XML!" + Return "Err:Invalid Json!" End Try - - Try - For Each xentryNode As XmlNode In xdoc.DocumentElement.SelectNodes("/id_list/ids/id") - followerId.Add(Long.Parse(xentryNode.InnerText)) - Next - cursor = Long.Parse(xdoc.DocumentElement.SelectSingleNode("/id_list/next_cursor").InnerText) - Catch ex As Exception - TraceOut(content) - Return "Invalid XML!" - End Try - - Return "" - End Function Public Function GetListsApi() As String @@ -2357,22 +2266,18 @@ Return "Err:" + res.ToString() + "(" + GetCurrentMethod.Name + ")" End Select - Dim xdoc As New XmlDocument Try - xdoc.LoadXml(content) - Catch ex As Exception - TraceOut(content) - Return "Invalid XML!" - End Try - - Try - For Each xentryNode As XmlNode In xdoc.DocumentElement.SelectNodes("/lists_list/lists/list") - lists.Add(New ListElement(xentryNode, Me)) + Dim lst = CreateDataFromJson(Of TwitterDataModel.Lists)(content) + For Each le In lst.Lists + lists.Add(New ListElement(le, Me)) Next - cursor = Long.Parse(xdoc.DocumentElement.SelectSingleNode("/lists_list/next_cursor").InnerText) + cursor = lst.NextCursor + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" Catch ex As Exception TraceOut(content) - Return "Invalid XML!" + Return "Err:Invalid Json!" End Try Loop While cursor <> 0 @@ -2397,22 +2302,18 @@ Return "Err:" + res.ToString() + "(" + GetCurrentMethod.Name + ")" End Select - Dim xdoc As New XmlDocument Try - xdoc.LoadXml(content) - Catch ex As Exception - TraceOut(content) - Return "Invalid XML!" - End Try - - Try - For Each xentryNode As XmlNode In xdoc.DocumentElement.SelectNodes("/lists_list/lists/list") - lists.Add(New ListElement(xentryNode, Me)) + Dim lst = CreateDataFromJson(Of TwitterDataModel.Lists)(content) + For Each le In lst.Lists + lists.Add(New ListElement(le, Me)) Next - cursor = Long.Parse(xdoc.DocumentElement.SelectSingleNode("/lists_list/next_cursor").InnerText) + cursor = lst.NextCursor + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" Catch ex As Exception TraceOut(content) - Return "Invalid XML!" + Return "Err:Invalid Json!" End Try Loop While cursor <> 0 @@ -2471,10 +2372,9 @@ Return "Err:" + res.ToString() + "(" + GetCurrentMethod.Name + ")" End Select - Dim xdoc As New XmlDocument Try - xdoc.LoadXml(content) - Dim newList As New ListElement(xdoc.DocumentElement, Me) + Dim le = CreateDataFromJson(Of TwitterDataModel.ListElementData)(content) + Dim newList As New ListElement(le, Me) list.Description = newList.Description list.Id = newList.Id list.IsPublic = newList.IsPublic @@ -2485,12 +2385,15 @@ list.Nickname = newList.Nickname list.Username = newList.Username list.UserId = newList.UserId + Return "" + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" Catch ex As Exception TraceOut(content) - Return "Invalid XML!" + Return "Err:Invalid Json!" End Try - Return "" End Function Public Function GetListMembers(ByVal list_id As String, ByVal lists As List(Of UserInfo), ByRef cursor As Long) As String @@ -2565,17 +2468,17 @@ Return "Err:" + res.ToString() + "(" + GetCurrentMethod.Name + ")" End Select - Dim xdoc As New XmlDocument Try - xdoc.LoadXml(content) - - TabInformations.GetInstance().SubscribableLists.Add(New ListElement(xdoc.DocumentElement, Me)) + Dim le = CreateDataFromJson(Of TwitterDataModel.ListElementData)(content) + TabInformations.GetInstance().SubscribableLists.Add(New ListElement(le, Me)) + Return "" + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" Catch ex As Exception TraceOut(content) - Return "Invalid XML!" + Return "Err:Invalid Json!" End Try - - Return "" End Function Public Function ContainsUserAtList(ByVal list_name As String, ByVal user As String, ByRef value As Boolean) As String @@ -2791,15 +2694,13 @@ If res <> HttpStatusCode.OK Then Return False - Dim xdoc As New XmlDocument Try - xdoc.LoadXml(content) + Dim limit = CreateDataFromJson(Of TwitterDataModel.RateLimitStatus)(content) Dim arg As New ApiInformationChangedEventArgs - - arg.ApiInfo.MaxCount = Integer.Parse(xdoc.SelectSingleNode("/hash/hourly-limit").InnerText) - arg.ApiInfo.RemainCount = Integer.Parse(xdoc.SelectSingleNode("/hash/remaining-hits").InnerText) - arg.ApiInfo.ResetTime = DateTime.Parse(xdoc.SelectSingleNode("/hash/reset-time").InnerText) - arg.ApiInfo.ResetTimeInSeconds = Integer.Parse(xdoc.SelectSingleNode("/hash/reset-time-in-seconds").InnerText) + arg.ApiInfo.MaxCount = limit.HourlyLimit + arg.ApiInfo.RemainCount = limit.RemainingHits + arg.ApiInfo.ResetTime = DateTimeParse(limit.RestTime) + arg.ApiInfo.ResetTimeInSeconds = limit.RestTimeInSeconds If info IsNot Nothing Then arg.ApiInfo.UsingCount = info.UsingCount @@ -2813,6 +2714,7 @@ TwitterApiInfo.WriteBackEventArgs(arg) Return True Catch ex As Exception + TraceOut(content) TwitterApiInfo.Initialize() Return False End Try From svnnotify @ sourceforge.jp Thu Dec 23 16:13:13 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Thu, 23 Dec 2010 16:13:13 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNDZdIFsg44CBIF0g44Gn44Gu44Oq44OX44Op?= =?utf-8?b?44Kk56e75YuV5pmC44Gn44Oq44OX44Op44Kk5YWI44Gu44Od44K544OI44GM?= =?utf-8?b?6KaL5LuY44GL44KJ44Gq44GL44Gj44Gf44Go44GN44Gr44CB5o6i57Si56+E?= =?utf-8?b?5Zuy44KS5YWo44Gm44Gu44K/44OW44Gr5bqD44GS44KL44KI44GG44Gr5aSJ?= =?utf-8?b?5pu0?= Message-ID: <1293088393.367661.29451.nullmailer@users.sourceforge.jp> Revision: 1246 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1246 Author: anis774 Date: 2010-12-23 16:13:13 +0900 (Thu, 23 Dec 2010) Log Message: ----------- [、]でのリプライ移動時でリプライ先のポストが見付からなかったときに、探索範囲を全てのタブに広げるように変更 Modified Paths: -------------- trunk/Tween/Tween.vb Property Changed: ---------------- trunk/ -------------- next part -------------- Property changes on: trunk ___________________________________________________________________ Modified: svn:mergeinfo - /branches/APIchangeevent:723-746 /branches/FixedImage:787-910 /branches/SettingDialog:1216-1230 /branches/UserStream:1077-1144 /branches/editlist:667-697 /branches/panelswitch:447-572 /branches/tm:782-794 + /branches/tm:782-794 /branches/editlist:667-697 /branches/SettingDialog:1216-1230 /branches/panelswitch:447-572 /branches/APIchangeevent:723-746 /branches/UserStream:1077-1144 /branches/FixedImage:787-910 Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-22 12:22:31 UTC (rev 1245) +++ trunk/Tween/Tween.vb 2010-12-23 07:13:13 UTC (rev 1246) @@ -39,6 +39,7 @@ Imports System.Xml Imports System.Timers Imports System.Threading +Imports System.Linq Public Class TweenMain @@ -5420,6 +5421,28 @@ Private Sub GoInReplyToPost() If _curPost IsNot Nothing AndAlso _curPost.InReplyToUser IsNot Nothing AndAlso _curPost.InReplyToId > 0 Then + Dim searchInReplyToPostFromAllTab = Sub() + Dim inReplyToPosts = From tab In _statuses.Tabs.Values + From post In DirectCast(IIf(tab.IsInnerStorageTabType, tab.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)).Values + Where post.Id = _curPost.InReplyToId + + Try + Dim r = inReplyToPosts.First() + If replyChains Is Nothing OrElse (replyChains.Count > 0 AndAlso replyChains.Peek().InReplyToId <> _curPost.Id) Then + replyChains = New Stack(Of ReplyChain) + End If + replyChains.Push(New ReplyChain(_curPost.Id, _curPost.InReplyToId, _curTab)) + Dim tabPage As TabPage = Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = r.tab.TabName) + Dim listView = DirectCast(tabPage.Tag, DetailsListView) + Dim idx = r.tab.IndexOf(r.post.Id) + Me.ListTab.SelectedTab = tabPage + SelectListItem(listView, idx) + listView.EnsureVisible(idx) + Catch ex As InvalidOperationException + OpenUriAsync("http://twitter.com/" + _curPost.InReplyToUser + "/statuses/" + _curPost.InReplyToId.ToString()) + End Try + End Sub + If _statuses.Tabs(_curTab.Text).TabType = TabUsageType.Lists Then If _statuses.Tabs(_curTab.Text).Posts.ContainsKey(_curPost.InReplyToId) Then Dim idx As Integer = _statuses.Tabs(_curTab.Text).IndexOf(_curPost.InReplyToId) @@ -5435,7 +5458,7 @@ _curList.EnsureVisible(idx) End If Else - OpenUriAsync("http://twitter.com/" + _curPost.InReplyToUser + "/statuses/" + _curPost.InReplyToId.ToString()) + searchInReplyToPostFromAllTab() End If Else If _statuses.ContainsKey(_curPost.InReplyToId) Then @@ -5465,7 +5488,7 @@ _curList.EnsureVisible(idx) End If Else - OpenUriAsync("http://twitter.com/" + _curPost.InReplyToUser + "/statuses/" + _curPost.InReplyToId.ToString()) + searchInReplyToPostFromAllTab() End If End If End If From svnnotify @ sourceforge.jp Fri Dec 24 08:51:27 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Fri, 24 Dec 2010 08:51:27 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNDddIEdvSW5SZXBseVRvUG9zdCgpIOOCkg==?= =?utf-8?b?5pu444GN5o+b44GI?= Message-ID: <1293148287.817354.20209.nullmailer@users.sourceforge.jp> Revision: 1247 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1247 Author: anis774 Date: 2010-12-24 08:51:27 +0900 (Fri, 24 Dec 2010) Log Message: ----------- GoInReplyToPost()を書き換え Modified Paths: -------------- trunk/Tween/Tween.vb Property Changed: ---------------- trunk/ -------------- next part -------------- Property changes on: trunk ___________________________________________________________________ Modified: svn:mergeinfo - /branches/tm:782-794 /branches/editlist:667-697 /branches/SettingDialog:1216-1230 /branches/panelswitch:447-572 /branches/APIchangeevent:723-746 /branches/UserStream:1077-1144 /branches/FixedImage:787-910 + /branches/UserStream:1077-1144 /branches/editlist:667-697 /branches/SettingDialog:1216-1230 /branches/panelswitch:447-572 /branches/APIchangeevent:723-746 /branches/tm:782-794 /branches/FixedImage:787-910 Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-23 07:13:13 UTC (rev 1246) +++ trunk/Tween/Tween.vb 2010-12-23 23:51:27 UTC (rev 1247) @@ -5420,78 +5420,51 @@ End Sub Private Sub GoInReplyToPost() - If _curPost IsNot Nothing AndAlso _curPost.InReplyToUser IsNot Nothing AndAlso _curPost.InReplyToId > 0 Then - Dim searchInReplyToPostFromAllTab = Sub() - Dim inReplyToPosts = From tab In _statuses.Tabs.Values - From post In DirectCast(IIf(tab.IsInnerStorageTabType, tab.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)).Values - Where post.Id = _curPost.InReplyToId + If Not (_curPost IsNot Nothing AndAlso _curPost.InReplyToUser IsNot Nothing AndAlso _curPost.InReplyToId > 0) Then Return - Try - Dim r = inReplyToPosts.First() - If replyChains Is Nothing OrElse (replyChains.Count > 0 AndAlso replyChains.Peek().InReplyToId <> _curPost.Id) Then - replyChains = New Stack(Of ReplyChain) - End If - replyChains.Push(New ReplyChain(_curPost.Id, _curPost.InReplyToId, _curTab)) - Dim tabPage As TabPage = Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = r.tab.TabName) - Dim listView = DirectCast(tabPage.Tag, DetailsListView) - Dim idx = r.tab.IndexOf(r.post.Id) - Me.ListTab.SelectedTab = tabPage - SelectListItem(listView, idx) - listView.EnsureVisible(idx) - Catch ex As InvalidOperationException - OpenUriAsync("http://twitter.com/" + _curPost.InReplyToUser + "/statuses/" + _curPost.InReplyToId.ToString()) - End Try - End Sub + Dim inReplyToIndex As Integer + Dim inReplyToTabName As String + Dim curTabClass As TabClass = _statuses.Tabs(_curTab.Text) + Dim curTabPosts As Dictionary(Of Long, PostClass) - If _statuses.Tabs(_curTab.Text).TabType = TabUsageType.Lists Then - If _statuses.Tabs(_curTab.Text).Posts.ContainsKey(_curPost.InReplyToId) Then - Dim idx As Integer = _statuses.Tabs(_curTab.Text).IndexOf(_curPost.InReplyToId) - If idx = -1 Then - Dim repPost As PostClass = _statuses.Item(_curPost.InReplyToId) - MessageBox.Show(repPost.Name + " / " + repPost.Nickname + " (" + repPost.PDate.ToString() + ")" + Environment.NewLine + repPost.Data) - Else - If replyChains Is Nothing OrElse (replyChains.Count > 0 AndAlso replyChains.Peek().InReplyToId <> _curPost.Id) Then - replyChains = New Stack(Of ReplyChain) - End If - replyChains.Push(New ReplyChain(_curPost.Id, _curPost.InReplyToId, _curTab)) - SelectListItem(_curList, idx) - _curList.EnsureVisible(idx) - End If - Else - searchInReplyToPostFromAllTab() - End If - Else - If _statuses.ContainsKey(_curPost.InReplyToId) Then - Dim tab As TabPage = _curTab - Dim idx As Integer = _statuses.Tabs(_curTab.Text).IndexOf(_curPost.InReplyToId) - If idx = -1 Then - For Each tab In ListTab.TabPages - idx = _statuses.Tabs(tab.Text).IndexOf(_curPost.InReplyToId) - If idx <> -1 Then - Exit For - End If - Next - End If - If idx = -1 Then - Dim repPost As PostClass = _statuses.Item(_curPost.InReplyToId) - MessageBox.Show(repPost.Name + " / " + repPost.Nickname + " (" + repPost.PDate.ToString() + ")" + Environment.NewLine + repPost.Data) - Else - If replyChains Is Nothing OrElse (replyChains.Count > 0 AndAlso replyChains.Peek().InReplyToId <> _curPost.Id) Then - replyChains = New Stack(Of ReplyChain) - End If - replyChains.Push(New ReplyChain(_curPost.Id, _curPost.InReplyToId, _curTab)) + If _statuses.Tabs(_curTab.Text).IsInnerStorageTabType Then + curTabPosts = curTabClass.Posts + Else + curTabPosts = _statuses.Posts + End If - If tab IsNot _curTab Then - ListTab.SelectTab(tab) - End If - SelectListItem(_curList, idx) - _curList.EnsureVisible(idx) - End If - Else - searchInReplyToPostFromAllTab() - End If - End If + inReplyToIndex = curTabClass.IndexOf(_curPost.InReplyToId) + If inReplyToIndex <> -1 Then + inReplyToTabName = _curTab.Text + Else + Dim inReplyToPosts = From tab In _statuses.Tabs.Values + From post In DirectCast(IIf(tab.IsInnerStorageTabType, tab.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)).Values + Where post.Id = _curPost.InReplyToId + + Try + Dim inReplyPost = inReplyToPosts.First() + inReplyToTabName = inReplyPost.tab.TabName + inReplyToIndex = inReplyPost.tab.IndexOf(inReplyPost.post.Id) + Catch ex As InvalidOperationException + OpenUriAsync("http://twitter.com/" + _curPost.InReplyToUser + "/statuses/" + _curPost.InReplyToId.ToString()) + Exit Sub + End Try End If + + If replyChains Is Nothing OrElse (replyChains.Count > 0 AndAlso replyChains.Peek().InReplyToId <> _curPost.Id) Then + replyChains = New Stack(Of ReplyChain) + End If + replyChains.Push(New ReplyChain(_curPost.Id, _curPost.InReplyToId, _curTab)) + + Dim tabPage = Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = inReplyToTabName) + Dim listView = DirectCast(tabPage.Tag, DetailsListView) + + If _curTab IsNot tabPage Then + Me.ListTab.SelectTab(tabPage) + End If + + Me.SelectListItem(listView, inReplyToIndex) + listView.EnsureVisible(inReplyToIndex) End Sub Private Sub GoBackInReplyToPost() From svnnotify @ sourceforge.jp Fri Dec 24 18:53:30 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Fri, 24 Dec 2010 18:53:30 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNDhdIFsg44Gn44Gu44Oq44OX44Op44Kk56e7?= =?utf-8?b?5YuV44Gn5oyv44KK5YiG44GR44K/44OW44Gu55m66KiA44Gr56e75YuV5Ye6?= =?utf-8?b?5p2l44Gq44GE5LiN5YW35ZCI44KS5L+u5q2j?= Message-ID: <1293184410.818308.23993.nullmailer@users.sourceforge.jp> Revision: 1248 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1248 Author: anis774 Date: 2010-12-24 18:53:30 +0900 (Fri, 24 Dec 2010) Log Message: ----------- [でのリプライ移動で振り分けタブの発言に移動出来ない不具合を修正 Modified Paths: -------------- trunk/Tween/Tween.vb Property Changed: ---------------- trunk/ -------------- next part -------------- Property changes on: trunk ___________________________________________________________________ Modified: svn:mergeinfo - /branches/UserStream:1077-1144 /branches/editlist:667-697 /branches/SettingDialog:1216-1230 /branches/panelswitch:447-572 /branches/APIchangeevent:723-746 /branches/tm:782-794 /branches/FixedImage:787-910 + /branches/tm:782-794 /branches/editlist:667-697 /branches/SettingDialog:1216-1230 /branches/panelswitch:447-572 /branches/APIchangeevent:723-746 /branches/UserStream:1077-1144 /branches/FixedImage:787-910 Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-23 23:51:27 UTC (rev 1247) +++ trunk/Tween/Tween.vb 2010-12-24 09:53:30 UTC (rev 1248) @@ -5440,11 +5440,14 @@ Dim inReplyToPosts = From tab In _statuses.Tabs.Values From post In DirectCast(IIf(tab.IsInnerStorageTabType, tab.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)).Values Where post.Id = _curPost.InReplyToId + Let index = tab.IndexOf(post.Id) + Where index <> -1 + Select New With {.Tab = tab, .Post = post, .Index = index} Try Dim inReplyPost = inReplyToPosts.First() - inReplyToTabName = inReplyPost.tab.TabName - inReplyToIndex = inReplyPost.tab.IndexOf(inReplyPost.post.Id) + inReplyToTabName = inReplyPost.Tab.TabName + inReplyToIndex = inReplyPost.Index Catch ex As InvalidOperationException OpenUriAsync("http://twitter.com/" + _curPost.InReplyToUser + "/statuses/" + _curPost.InReplyToId.ToString()) Exit Sub From svnnotify @ sourceforge.jp Sat Dec 25 09:04:07 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 25 Dec 2010 09:04:07 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNDldICBVU+OBrnNjcnViX2dlb+mAmuefpQ==?= =?utf-8?b?44Gr5a++5b+c?= Message-ID: <1293235447.113291.7656.nullmailer@users.sourceforge.jp> Revision: 1249 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1249 Author: kiri_feather Date: 2010-12-25 09:04:06 +0900 (Sat, 25 Dec 2010) Log Message: ----------- USのscrub_geo通知に対応 Modified Paths: -------------- trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-24 09:53:30 UTC (rev 1248) +++ trunk/Tween/Twitter.vb 2010-12-25 00:04:06 UTC (rev 1249) @@ -2820,6 +2820,9 @@ ElseIf xElm.Element("direct_message") IsNot Nothing Then Debug.Print("direct_message") isDm = True + ElseIf xElm.Element("scrub_geo") IsNot Nothing Then + Debug.Print("scrub_geo: user_id=" + xElm.Element("user_id").Value.ToString + " up_to_status_id=" + xElm.Element("up_to_status_id").Value.ToString) + Exit Sub End If End Using From svnnotify @ sourceforge.jp Sat Dec 25 10:56:15 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 25 Dec 2010 10:56:15 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNTBdICDjg7tQb3N044Kt44O844Gu44Kz44O8?= =?utf-8?b?44OJ44KS5bCR44GX55u044GX44Gf?= Message-ID: <1293242175.941372.4185.nullmailer@users.sourceforge.jp> Revision: 1250 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1250 Author: f_swallow Date: 2010-12-25 10:56:15 +0900 (Sat, 25 Dec 2010) Log Message: ----------- ・Postキーのコードを少し直した ・フォームのサイズを微調整 Modified Paths: -------------- trunk/Tween/AppendSettingDialog.resx trunk/Tween/AppendSettingDialog.vb -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.resx =================================================================== --- trunk/Tween/AppendSettingDialog.resx 2010-12-25 00:04:06 UTC (rev 1249) +++ trunk/Tween/AppendSettingDialog.resx 2010-12-25 01:56:15 UTC (rev 1250) @@ -218,7 +218,7 @@ - 165, 368 + 169, 368 0 @@ -590,7 +590,7 @@ 0, 0 - 505, 368 + 518, 368 0 @@ -1028,7 +1028,7 @@ 0, 0 - 505, 368 + 518, 368 1 @@ -1178,7 +1178,7 @@ 0, 0 - 505, 368 + 518, 368 2 @@ -1535,7 +1535,7 @@ 0, 0 - 505, 368 + 518, 368 3 @@ -1646,7 +1646,7 @@ 0, 0 - 505, 368 + 518, 368 4 @@ -2309,7 +2309,7 @@ 0, 0 - 505, 368 + 518, 368 5 @@ -2738,7 +2738,7 @@ 0, 0 - 505, 368 + 518, 368 6 @@ -3299,7 +3299,7 @@ 0, 0 - 505, 368 + 518, 368 7 @@ -3449,7 +3449,7 @@ 216, 67 - 179, 20 + 192, 20 3 @@ -3716,7 +3716,7 @@ 0, 0 - 505, 368 + 518, 368 8 @@ -4520,7 +4520,7 @@ 0, 0 - 505, 368 + 518, 368 9 @@ -5414,7 +5414,7 @@ 0, 0 - 505, 368 + 518, 368 10 @@ -5861,7 +5861,7 @@ 0, 0 - 505, 368 + 518, 368 11 @@ -6215,7 +6215,7 @@ 0, 0 - 505, 368 + 518, 368 12 @@ -6248,10 +6248,10 @@ 1 - 674, 368 + 691, 368 - 165 + 169 0 @@ -6278,7 +6278,7 @@ NoControl - 587, 374 + 604, 374 75, 23 @@ -6305,7 +6305,7 @@ NoControl - 504, 374 + 521, 374 75, 23 @@ -6338,7 +6338,7 @@ 6, 12 - 674, 403 + 691, 403 CenterParent Modified: trunk/Tween/AppendSettingDialog.vb =================================================================== --- trunk/Tween/AppendSettingDialog.vb 2010-12-25 00:04:06 UTC (rev 1249) +++ trunk/Tween/AppendSettingDialog.vb 2010-12-25 01:56:15 UTC (rev 1250) @@ -212,16 +212,17 @@ End Select '_MyPostCtrlEnter = CheckPostCtrlEnter.Checked '_MyPostShiftEnter = CheckPostShiftEnter.Checked - If ComboBoxPostKeySelect.SelectedIndex = 2 Then - _MyPostShiftEnter = True - _MyPostCtrlEnter = False - ElseIf ComboBoxPostKeySelect.SelectedIndex = 1 Then - _MyPostCtrlEnter = True - _MyPostShiftEnter = False - Else - _MyPostCtrlEnter = False - _MyPostShiftEnter = False - End If + Select Case ComboBoxPostKeySelect.SelectedIndex + Case 2 + _MyPostShiftEnter = True + _MyPostCtrlEnter = False + Case 1 + _MyPostCtrlEnter = True + _MyPostShiftEnter = False + Case 0 + _MyPostCtrlEnter = False + _MyPostShiftEnter = False + End Select _usePostMethod = False _countApi = CType(TextCountApi.Text, Integer) _countApiReply = CType(TextCountApiReply.Text, Integer) @@ -454,12 +455,10 @@ If _MyPostCtrlEnter Then ComboBoxPostKeySelect.SelectedIndex = 1 + ElseIf _MyPostShiftEnter Then + ComboBoxPostKeySelect.SelectedIndex = 2 Else - If _MyPostShiftEnter Then - ComboBoxPostKeySelect.SelectedIndex = 2 - Else - ComboBoxPostKeySelect.SelectedIndex = 0 - End If + ComboBoxPostKeySelect.SelectedIndex = 0 End If TextCountApi.Text = _countApi.ToString From svnnotify @ sourceforge.jp Sat Dec 25 11:12:45 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 25 Dec 2010 11:12:45 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNTFdICDmipXnqL/jg6rjg4jjg6njgqTjg4A=?= =?utf-8?b?44Kk44Ki44Ot44Kw44Gn5L6L5aSW44GM5Ye644KL5aC05ZCI44GM44GC44Gj?= =?utf-8?b?44Gf44Gu44Gn5a++5b+c?= Message-ID: <1293243165.914870.22655.nullmailer@users.sourceforge.jp> Revision: 1251 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1251 Author: kiri_feather Date: 2010-12-25 11:12:45 +0900 (Sat, 25 Dec 2010) Log Message: ----------- 投稿リトライダイアログで例外が出る場合があったので対応 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-25 01:56:15 UTC (rev 1250) +++ trunk/Tween/Tween.vb 2010-12-25 02:12:45 UTC (rev 1251) @@ -2373,7 +2373,18 @@ SetMainWindowTitle() rslt.retMsg = "" Else - If MessageBox.Show(String.Format("{0} ---> [ " & rslt.retMsg & " ]" & Environment.NewLine & """" & rslt.status.status & """" & Environment.NewLine & "{1}", My.Resources.StatusUpdateFailed1, My.Resources.StatusUpdateFailed2), "Failed to update status", MessageBoxButtons.RetryCancel, MessageBoxIcon.Question) = Windows.Forms.DialogResult.Retry Then + Dim retry As DialogResult + Try + retry = MessageBox.Show(String.Format("{0} ---> [ " & rslt.retMsg & " ]" & Environment.NewLine & """" & rslt.status.status & """" & Environment.NewLine & "{1}", + My.Resources.StatusUpdateFailed1, + My.Resources.StatusUpdateFailed2), + "Failed to update status", + MessageBoxButtons.RetryCancel, + MessageBoxIcon.Question) + Catch ex As Exception + retry = Windows.Forms.DialogResult.Abort + End Try + If retry = Windows.Forms.DialogResult.Retry Then Dim args As New GetWorkerArg() args.page = 0 args.endPage = 0 From svnnotify @ sourceforge.jp Sat Dec 25 12:23:11 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 25 Dec 2010 12:23:11 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNTJdICDjg47jg7zjg4nlkI3jgpLjg4TjgqQ=?= =?utf-8?b?44O844OI5pmC44Gu5YuV5L2c44Gr5aSJ5pu0?= Message-ID: <1293247391.651562.1357.nullmailer@users.sourceforge.jp> Revision: 1252 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1252 Author: f_swallow Date: 2010-12-25 12:23:11 +0900 (Sat, 25 Dec 2010) Log Message: ----------- ノード名をツイート時の動作に変更 Modified Paths: -------------- trunk/Tween/AppendSettingDialog.resx -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.resx =================================================================== --- trunk/Tween/AppendSettingDialog.resx 2010-12-25 02:12:45 UTC (rev 1251) +++ trunk/Tween/AppendSettingDialog.resx 2010-12-25 03:23:11 UTC (rev 1252) @@ -171,8 +171,8 @@ AAAG5YuV5L2cBgQAAAAKQWN0aW9uTm9kZQD/////BgUAAAAA/////wkFAAAAAQAAAAkGAAAABQYAAAAd U3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJ bmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50 - AQEAAAEAAQABCAgIAgAAAAYHAAAAFeODhOOCpOODvOODiOOBruWLleS9nAYIAAAADFR3ZWV0QWN0Tm9k - ZQD/////CQUAAAD/////CQUAAAAAAAAACw== + AQEAAAEAAQABCAgIAgAAAAYHAAAAGOODhOOCpOODvOODiOaZguOBruWLleS9nAYIAAAADFR3ZWV0QWN0 + Tm9kZQD/////CQUAAAD/////CQUAAAAAAAAACw== From svnnotify @ sourceforge.jp Sat Dec 25 17:07:07 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 25 Dec 2010 17:07:07 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNTNdICDliYrpmaTjgqTjg5njg7Pjg4jlj5c=?= =?utf-8?b?5L+h5pmC44Gv44CB6KGo56S644KSREVMRVRFROOBq+OBmeOCi+OBoOOBkQ==?= =?utf-8?b?44Gn44Oq44K544OI44GL44KJ5YmK6Zmk44GX44Gq44GE44KI44GG44Gr5aSJ?= =?utf-8?b?5pu0?= Message-ID: <1293264427.194103.14892.nullmailer@users.sourceforge.jp> Revision: 1253 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1253 Author: kiri_feather Date: 2010-12-25 17:07:07 +0900 (Sat, 25 Dec 2010) Log Message: ----------- 削除イベント受信時は、表示をDELETEDにするだけでリストから削除しないように変更 削除状態に応じた操作制限 FavされたらFavタブへ追加。Fav数表示 Modified Paths: -------------- trunk/Tween/StatusDictionary.vb trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/StatusDictionary.vb =================================================================== --- trunk/Tween/StatusDictionary.vb 2010-12-25 03:23:11 UTC (rev 1252) +++ trunk/Tween/StatusDictionary.vb 2010-12-25 08:07:07 UTC (rev 1253) @@ -57,6 +57,7 @@ Private _RetweetedBy As String = "" Private _RetweetedId As Long = 0 Private _searchTabName As String = "" + Private _isDeleted As Boolean = False _ Private Enum Statuses @@ -357,6 +358,21 @@ _searchTabName = value End Set End Property + Public Property IsDeleted As Boolean + Get + Return _isDeleted + End Get + Set(ByVal value As Boolean) + If value Then + Me.InReplyToId = 0 + Me.InReplyToUser = "" + Me.IsReply = False + Me.ReplyToList = New List(Of String) + End If + _isDeleted = value + End Set + End Property + Public Property FavoritedCount As Integer Public Function Copy() As PostClass Dim post As PostClass = DirectCast(Me.Clone, PostClass) @@ -653,6 +669,22 @@ End SyncLock End Sub + Private Sub DeletePost(ByVal Id As Long) + SyncLock LockObj + Dim post As PostClass = Nothing + If _statuses.ContainsKey(Id) Then + post = _statuses(Id) + post.IsDeleted = True + End If + For Each tb As TabClass In Me.GetTabsInnerStorageType + If tb.Contains(Id) Then + post = tb.Posts(Id) + post.IsDeleted = True + End If + Next + End SyncLock + End Sub + Public Function GetOldestUnreadId(ByVal TabName As String) As Integer Dim tb As TabClass = _tabs(TabName) If tb.OldestUnreadId > -1 AndAlso _ @@ -820,7 +852,7 @@ End If If isUserStream Then For Each id As Long In Me._deletedIds - Me.RemovePost(id) + Me.DeletePost(id) Next Me._deletedIds.Clear() End If Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-25 03:23:11 UTC (rev 1252) +++ trunk/Tween/Tween.vb 2010-12-25 08:07:07 UTC (rev 1253) @@ -1637,7 +1637,7 @@ End If End If - If _curPost IsNot Nothing AndAlso StatusText.Text.Trim() = String.Format("RT @{0}: {1}", _curPost.Name, _curPost.Data) Then + If Me.ExistCurrentPost AndAlso StatusText.Text.Trim() = String.Format("RT @{0}: {1}", _curPost.Name, _curPost.Data) Then Dim rtResult As DialogResult = MessageBox.Show(String.Format(My.Resources.PostButton_Click1, Environment.NewLine), "Retweet", MessageBoxButtons.YesNoCancel, @@ -1917,7 +1917,7 @@ Dim tbc As TabClass = _statuses.Tabs(args.tName) For i As Integer = 0 To args.ids.Count - 1 Dim post As PostClass = Nothing - If tbc.TabType = TabUsageType.Lists OrElse tbc.TabType = TabUsageType.PublicSearch Then + If tbc.IsInnerStorageTabType Then post = tbc.Posts(args.ids(i)) Else post = _statuses.Item(args.ids(i)) @@ -1960,7 +1960,7 @@ Dim tbc As TabClass = _statuses.Tabs(args.tName) For i As Integer = 0 To args.ids.Count - 1 Dim post As PostClass = Nothing - If tbc.TabType = TabUsageType.Lists OrElse tbc.TabType = TabUsageType.PublicSearch Then + If tbc.IsInnerStorageTabType Then post = tbc.Posts(args.ids(i)) Else post = _statuses.Item(args.ids(i)) @@ -2644,7 +2644,7 @@ Private Sub ContextMenuOperate_Opening(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ContextMenuOperate.Opening If ListTab.SelectedTab Is Nothing Then Exit Sub If _statuses Is Nothing OrElse _statuses.Tabs Is Nothing OrElse Not _statuses.Tabs.ContainsKey(ListTab.SelectedTab.Text) Then Exit Sub - If _curPost Is Nothing Then + If Not Me.ExistCurrentPost Then ReplyStripMenuItem.Enabled = False ReplyAllStripMenuItem.Enabled = False DMStripMenuItem.Enabled = False @@ -2667,7 +2667,7 @@ ReadedStripMenuItem.Enabled = True UnreadStripMenuItem.Enabled = True End If - If _statuses.Tabs(ListTab.SelectedTab.Text).TabType = TabUsageType.DirectMessage OrElse _curPost Is Nothing OrElse _curPost.IsDm Then + If _statuses.Tabs(ListTab.SelectedTab.Text).TabType = TabUsageType.DirectMessage OrElse Not Me.ExistCurrentPost OrElse _curPost.IsDm Then FavAddToolStripMenuItem.Enabled = False FavRemoveToolStripMenuItem.Enabled = False StatusOpenMenuItem.Enabled = False @@ -2679,7 +2679,7 @@ QuoteStripMenuItem.Enabled = False FavoriteRetweetContextMenu.Enabled = False FavoriteRetweetUnofficialContextMenu.Enabled = False - If _curPost IsNot Nothing AndAlso _curPost.IsDm Then DeleteStripMenuItem.Enabled = True + If Me.ExistCurrentPost AndAlso _curPost.IsDm Then DeleteStripMenuItem.Enabled = True Else FavAddToolStripMenuItem.Enabled = True FavRemoveToolStripMenuItem.Enabled = True @@ -2714,13 +2714,13 @@ RefreshMoreStripMenuItem.Enabled = False End If If _statuses.Tabs(ListTab.SelectedTab.Text).TabType = TabUsageType.PublicSearch _ - OrElse _curPost Is Nothing _ + OrElse Not Me.ExistCurrentPost _ OrElse Not _curPost.InReplyToId > 0 Then RepliedStatusOpenMenuItem.Enabled = False Else RepliedStatusOpenMenuItem.Enabled = True End If - If _curPost Is Nothing OrElse _curPost.RetweetedBy = "" Then + If Not Me.ExistCurrentPost OrElse _curPost.RetweetedBy = "" Then MoveToRTHomeMenuItem.Enabled = False Else MoveToRTHomeMenuItem.Enabled = True @@ -3882,11 +3882,12 @@ If Post.IsMark Then mk += "♪" If Post.IsProtect Then mk += "Ю" If Post.InReplyToId > 0 Then mk += "⇒" + If Post.FavoritedCount > 0 Then mk += "+" + Post.FavoritedCount.ToString Dim itm As ImageListViewItem If Post.RetweetedId = 0 Then Dim sitem() As String = {"", Post.Nickname, - Post.Data, + If(Post.IsDeleted, "(DELETED)", Post.Data), Post.PDate.ToString(SettingDialog.DateTimeFormat), Post.Name, "", @@ -3896,7 +3897,7 @@ Else Dim sitem() As String = {"", Post.Nickname, - Post.Data, + If(Post.IsDeleted, "(DELETED)", Post.Data), Post.PDate.ToString(SettingDialog.DateTimeFormat), Post.Name + Environment.NewLine + "(RT:" + Post.RetweetedBy + ")", "", @@ -4545,7 +4546,7 @@ If _curList.SelectedIndices.Count = 0 OrElse _curPost Is Nothing Then Exit Sub - Dim dTxt As String = createDetailHtml(_curPost.OriginalData) + Dim dTxt As String = createDetailHtml(If(_curPost.IsDeleted, "(DELETED)", _curPost.OriginalData)) If _curPost.IsDm Then SourceLinkLabel.Tag = Nothing SourceLinkLabel.Text = "" @@ -5270,7 +5271,7 @@ End Sub Private Sub GoPost(ByVal forward As Boolean) - If _curList.SelectedIndices.Count = 0 OrElse _curPost Is Nothing Then Exit Sub + If _curList.SelectedIndices.Count = 0 OrElse Not Me.ExistCurrentPost Then Exit Sub Dim fIdx As Integer = 0 Dim toIdx As Integer = 0 Dim stp As Integer = 1 @@ -5329,7 +5330,7 @@ End If If Not _anchorFlag Then - If _curPost Is Nothing Then Exit Sub + If Not Me.ExistCurrentPost Then Exit Sub _anchorPost = _curPost _anchorFlag = True Else @@ -5431,7 +5432,7 @@ End Sub Private Sub GoInReplyToPost() - If Not (_curPost IsNot Nothing AndAlso _curPost.InReplyToUser IsNot Nothing AndAlso _curPost.InReplyToId > 0) Then Return + If Not (Me.ExistCurrentPost AndAlso _curPost.InReplyToUser IsNot Nothing AndAlso _curPost.InReplyToId > 0) Then Return Dim inReplyToIndex As Integer Dim inReplyToTabName As String @@ -6404,7 +6405,7 @@ If Not StatusText.Enabled Then Exit Sub If _curList Is Nothing Then Exit Sub If _curTab Is Nothing Then Exit Sub - If _curPost Is Nothing Then Exit Sub + If Not Me.ExistCurrentPost Then Exit Sub ' 複数あてリプライはReplyではなく通常ポスト '↑仕様変更で全部リプライ扱いでOK(先頭ドット付加しない) @@ -6413,7 +6414,7 @@ If _curList.SelectedIndices.Count > 0 Then ' アイテムが1件以上選択されている - If _curList.SelectedIndices.Count = 1 AndAlso Not isAll AndAlso _curPost IsNot Nothing Then + If _curList.SelectedIndices.Count = 1 AndAlso Not isAll AndAlso Me.ExistCurrentPost Then ' 単独ユーザー宛リプライまたはDM If (_statuses.Tabs(ListTab.SelectedTab.Text).TabType = TabUsageType.DirectMessage AndAlso isAuto) OrElse (Not isAuto AndAlso Not isReply) Then ' ダイレクトメッセージ @@ -7538,7 +7539,7 @@ End Sub Private Sub doRepliedStatusOpen() - If _curPost IsNot Nothing AndAlso _curPost.InReplyToUser IsNot Nothing AndAlso _curPost.InReplyToId > 0 Then + If Me.ExistCurrentPost AndAlso _curPost.InReplyToUser IsNot Nothing AndAlso _curPost.InReplyToId > 0 Then If My.Computer.Keyboard.ShiftKeyDown Then OpenUriAsync("http://twitter.com/" + _curPost.InReplyToUser + "/status/" + _curPost.InReplyToId.ToString()) Exit Sub @@ -8392,7 +8393,7 @@ Private Sub doReTweetUnofficial() 'RT @id:内容 - If _curPost IsNot Nothing Then + If Me.ExistCurrentPost Then If _curPost.IsDm OrElse _ Not StatusText.Enabled Then Exit Sub @@ -8416,7 +8417,7 @@ Private Sub doReTweetOfficial(ByVal isConfirm As Boolean) '公式RT - If _curPost IsNot Nothing Then + If Me.ExistCurrentPost Then If _curPost.IsProtect Then MessageBox.Show("Protected.") _DoFavRetweetFlags = False @@ -8466,7 +8467,7 @@ End Sub Private Sub FavoritesRetweetOriginal() - If _curPost Is Nothing Then Exit Sub + If Not Me.ExistCurrentPost Then Exit Sub _DoFavRetweetFlags = True doReTweetOfficial(True) If _DoFavRetweetFlags Then @@ -8476,7 +8477,7 @@ End Sub Private Sub FavoritesRetweetUnofficial() - If _curPost IsNot Nothing AndAlso Not _curPost.IsDm Then + If Me.ExistCurrentPost AndAlso Not _curPost.IsDm Then _DoFavRetweetFlags = True FavoriteChange(True) If Not _curPost.IsProtect AndAlso _DoFavRetweetFlags Then @@ -8887,7 +8888,7 @@ Private Sub doQuote() 'QT @id:内容 '返信先情報付加 - If _curPost IsNot Nothing Then + If Me.ExistCurrentPost Then If _curPost.IsDm OrElse _ Not StatusText.Enabled Then Exit Sub @@ -9183,7 +9184,7 @@ Private Sub MenuItemOperate_DropDownOpening(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItemOperate.DropDownOpening If ListTab.SelectedTab Is Nothing Then Exit Sub If _statuses Is Nothing OrElse _statuses.Tabs Is Nothing OrElse Not _statuses.Tabs.ContainsKey(ListTab.SelectedTab.Text) Then Exit Sub - If _curPost Is Nothing Then + If Not Me.ExistCurrentPost Then Me.ReplyOpMenuItem.Enabled = False Me.ReplyAllOpMenuItem.Enabled = False Me.DmOpMenuItem.Enabled = False @@ -9207,7 +9208,7 @@ Me.UnreadOpMenuItem.Enabled = True End If - If _statuses.Tabs(ListTab.SelectedTab.Text).TabType = TabUsageType.DirectMessage OrElse _curPost Is Nothing OrElse _curPost.IsDm Then + If _statuses.Tabs(ListTab.SelectedTab.Text).TabType = TabUsageType.DirectMessage OrElse Not Me.ExistCurrentPost OrElse _curPost.IsDm Then Me.FavOpMenuItem.Enabled = False Me.UnFavOpMenuItem.Enabled = False Me.OpenStatusOpMenuItem.Enabled = False @@ -9218,7 +9219,7 @@ Me.QtOpMenuItem.Enabled = False Me.FavoriteRetweetMenuItem.Enabled = False Me.FavoriteRetweetUnofficialMenuItem.Enabled = False - If _curPost IsNot Nothing AndAlso _curPost.IsDm Then Me.DelOpMenuItem.Enabled = True + If Me.ExistCurrentPost AndAlso _curPost.IsDm Then Me.DelOpMenuItem.Enabled = True Else Me.FavOpMenuItem.Enabled = True Me.UnFavOpMenuItem.Enabled = True @@ -9254,13 +9255,13 @@ Me.RefreshPrevOpMenuItem.Enabled = False End If If _statuses.Tabs(ListTab.SelectedTab.Text).TabType = TabUsageType.PublicSearch _ - OrElse _curPost Is Nothing _ + OrElse Not Me.ExistCurrentPost _ OrElse Not _curPost.InReplyToId > 0 Then OpenRepSourceOpMenuItem.Enabled = False Else OpenRepSourceOpMenuItem.Enabled = True End If - If _curPost Is Nothing OrElse _curPost.RetweetedBy = "" Then + If Not Me.ExistCurrentPost OrElse _curPost.RetweetedBy = "" Then OpenRterHomeMenuItem.Enabled = False Else OpenRterHomeMenuItem.Enabled = True @@ -9300,7 +9301,7 @@ Else PublicSearchQueryMenuItem.Enabled = False End If - If _curPost Is Nothing Then + If Not Me.ExistCurrentPost Then Me.CopySTOTMenuItem.Enabled = False Me.CopyURLMenuItem.Enabled = False Me.CopyUserIdStripMenuItem.Enabled = False @@ -9467,7 +9468,7 @@ End Sub Private Sub RtCountMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RtCountMenuItem.Click - If _curPost IsNot Nothing Then + If Me.ExistCurrentPost Then Using _info As New FormInfo(Me, My.Resources.RtCountMenuItem_ClickText1, _ AddressOf GetRetweet_DoWork) Dim retweet_count As Integer = 0 @@ -9791,7 +9792,7 @@ End Sub Private Sub MenuItemCommand_DropDownOpening(ByVal sender As Object, ByVal e As System.EventArgs) Handles MenuItemCommand.DropDownOpening - If _curPost IsNot Nothing AndAlso Not _curPost.IsDm Then + If Me.ExistCurrentPost AndAlso Not _curPost.IsDm Then RtCountMenuItem.Enabled = True Else RtCountMenuItem.Enabled = False @@ -9812,7 +9813,7 @@ End Sub Private Sub ShowRelatedStatusesMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ShowRelatedStatusesMenuItem.Click, ShowRelatedStatusesMenuItem2.Click - If _curPost IsNot Nothing AndAlso Not _curPost.IsDm Then + If Me.ExistCurrentPost AndAlso Not _curPost.IsDm Then 'PublicSearchも除外した方がよい? If _statuses.GetTabByType(TabUsageType.Related) Is Nothing Then Const TabName As String = "Related Tweets" @@ -10025,10 +10026,18 @@ Private Sub TranslationToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TranslationToolStripMenuItem.Click Dim g As New Google Dim buf As String = "" - If _curPost Is Nothing Then Exit Sub + If Not Me.ExistCurrentPost Then Exit Sub Dim lng As String = g.LanguageDetect(_curPost.Data) If lng <> "ja" AndAlso g.Translate(True, PostBrowser.DocumentText, buf) Then PostBrowser.DocumentText = buf End If End Sub + + Private ReadOnly Property ExistCurrentPost As Boolean + Get + If _curPost Is Nothing Then Return False + If _curPost.IsDeleted Then Return False + Return True + End Get + End Property End Class Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-25 03:23:11 UTC (rev 1252) +++ trunk/Tween/Twitter.vb 2010-12-25 08:07:07 UTC (rev 1253) @@ -2898,6 +2898,21 @@ evt.Target = "" Case "favorite", "unfavorite" evt.Target = eventData.TargetObject.Text + If TabInformations.GetInstance.ContainsKey(eventData.TargetObject.Id) Then + Dim post As PostClass = TabInformations.GetInstance.Item(eventData.TargetObject.Id) + If eventData.Event = "favorite" Then + post.FavoritedCount += 1 + If Not TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).Contains(post.Id) Then + post.IsRead = False + TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).Add(post.Id, post.IsRead, False) + Else + TabInformations.GetInstance.SetRead(False, TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).TabName, TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).IndexOf(post.Id)) + End If + Else + post.FavoritedCount -= 1 + If post.FavoritedCount < 0 Then post.FavoritedCount = 0 + End If + End If Case "list_member_added", "list_member_removed" evt.Target = eventData.TargetObject.Name Case "block" From svnnotify @ sourceforge.jp Sat Dec 25 17:51:31 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sat, 25 Dec 2010 17:51:31 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNTRdICDnmbroqIDjgYzjgarjgYTmmYLjgas=?= =?utf-8?b?44KCRmF2b3JpdGVz44KS5aSJ5pu044Gn44GN44Gf44Gu44KS5L+u5q2j?= Message-ID: <1293267091.960451.8838.nullmailer@users.sourceforge.jp> Revision: 1254 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1254 Author: f_swallow Date: 2010-12-25 17:51:31 +0900 (Sat, 25 Dec 2010) Log Message: ----------- 発言がない時にもFavoritesを変更できたのを修正 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-25 08:07:07 UTC (rev 1253) +++ trunk/Tween/Tween.vb 2010-12-25 08:51:31 UTC (rev 1254) @@ -2490,7 +2490,8 @@ Private Sub FavoriteChange(ByVal FavAdd As Boolean, Optional ByVal multiFavoriteChangeDialogEnable As Boolean = True) 'TrueでFavAdd,FalseでFavRemove - If _statuses.Tabs(_curTab.Text).TabType = TabUsageType.DirectMessage OrElse _curList.SelectedIndices.Count = 0 Then Exit Sub + If _statuses.Tabs(_curTab.Text).TabType = TabUsageType.DirectMessage OrElse _curList.SelectedIndices.Count = 0 _ + OrElse Not Me.ExistCurrentPost Then Exit Sub '複数fav確認msg If _curList.SelectedIndices.Count > 250 AndAlso FavAdd Then From svnnotify @ sourceforge.jp Sun Dec 26 01:42:01 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 26 Dec 2010 01:42:01 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNTVdICDoqK3lrprnlLvpnaLjgafjg6bjg7w=?= =?utf-8?b?44K244O8SUTjgIHjg5Hjgrnjg6/jg7zjg4njgavjg5Xjgqnjg7zjgqvjgrk=?= =?utf-8?b?44GM44GC44KL5aC05ZCI44GuRW50ZXLjgq3jg7zjga/oqo3oqLzlh6bnkIY=?= Message-ID: <1293295321.885087.1768.nullmailer@users.sourceforge.jp> Revision: 1255 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1255 Author: kiri_feather Date: 2010-12-26 01:42:01 +0900 (Sun, 26 Dec 2010) Log Message: ----------- 設定画面でユーザーID、パスワードにフォーカスがある場合のEnterキーは認証処理 発言削除イベントは即時処理へ Fav済み発言をRTされると自分がFavした状態で反映されてしまう問題に対応 関連発言表示したとき、対象発言を選択済みで表示 fav/unfavイベントの反映を早めに RT削除もイベントとして扱うように(ログのみ) 自分が行ったfav/unfavイベントは無視するように Modified Paths: -------------- trunk/Tween/AppendSettingDialog.vb trunk/Tween/StatusDictionary.vb trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.vb =================================================================== --- trunk/Tween/AppendSettingDialog.vb 2010-12-25 08:51:31 UTC (rev 1254) +++ trunk/Tween/AppendSettingDialog.vb 2010-12-25 16:42:01 UTC (rev 1255) @@ -152,6 +152,12 @@ Else _ValidationError = False End If + If Me.Username.Focused OrElse Me.Password.Focused Then + If Not Authorize() Then + _ValidationError = True + Exit Sub + End If + End If Try _MyUserstreamPeriod = CType(Me.UserstreamPeriod.Text, Integer) _MyUserstreamStartup = Me.StartupUserstreamCheck.Checked @@ -1914,12 +1920,12 @@ lblRetweet.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Green) End Sub - Private Sub AuthorizeButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthorizeButton.Click + Private Function Authorize() As Boolean Dim user As String = Me.Username.Text.Trim Dim pwd As String = Me.Password.Text.Trim If String.IsNullOrEmpty(user) OrElse String.IsNullOrEmpty(pwd) Then MessageBox.Show(My.Resources.Save_ClickText1) - Exit Sub + Return False End If '現在の設定内容で通信 @@ -1950,12 +1956,17 @@ MessageBox.Show(My.Resources.AuthorizeButton_Click1, "Authenticate", MessageBoxButtons.OK) Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click3 Me.AuthUserLabel.Text = tw.Username + Return True Else MessageBox.Show(My.Resources.AuthorizeButton_Click2 + Environment.NewLine + rslt, "Authenticate", MessageBoxButtons.OK) Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 Me.AuthUserLabel.Text = "" + Return False End If - CalcApiUsing() + End Function + + Private Sub AuthorizeButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthorizeButton.Click + If Authorize() Then CalcApiUsing() End Sub Private Sub AuthClearButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthClearButton.Click Modified: trunk/Tween/StatusDictionary.vb =================================================================== --- trunk/Tween/StatusDictionary.vb 2010-12-25 08:51:31 UTC (rev 1254) +++ trunk/Tween/StatusDictionary.vb 2010-12-25 16:42:01 UTC (rev 1255) @@ -393,7 +393,7 @@ Private _tabs As New Dictionary(Of String, TabClass) Private _statuses As New Dictionary(Of Long, PostClass) Private _addedIds As List(Of Long) - Private _deletedIds As New List(Of Long) + 'Private _deletedIds As New List(Of Long) Private _retweets As New Dictionary(Of Long, PostClass) Private _removedTab As TabClass = Nothing @@ -630,7 +630,8 @@ post = Nothing Dim tmp As PostClass = Me.Item(id) If tmp IsNot Nothing Then post = tmp.Copy - Me._deletedIds.Add(id) + 'Me._deletedIds.Add(id) + Me.DeletePost(id) End SyncLock End Sub @@ -850,12 +851,12 @@ If Not isUserStream OrElse Me.SortMode <> IdComparerClass.ComparerMode.Id Then Me.SortPosts() End If - If isUserStream Then - For Each id As Long In Me._deletedIds - Me.DeletePost(id) - Next - Me._deletedIds.Clear() - End If + 'If isUserStream Then + ' For Each id As Long In Me._deletedIds + ' Me.DeletePost(id) + ' Next + ' Me._deletedIds.Clear() + 'End If soundFile = _soundFile _soundFile = "" @@ -956,11 +957,16 @@ If Not Item.IsDm Then If _statuses.ContainsKey(Item.Id) Then If Item.IsFav Then - _statuses.Item(Item.Id).IsFav = True + If Item.RetweetedId = 0 Then + _statuses.Item(Item.Id).IsFav = True + Else + Item.IsFav = False + End If Else Exit Sub '追加済みなら何もしない End If Else + If Item.IsFav AndAlso Item.RetweetedId > 0 Then Item.IsFav = False _statuses.Add(Item.Id, Item) End If If Item.RetweetedId > 0 Then Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-25 08:51:31 UTC (rev 1254) +++ trunk/Tween/Tween.vb 2010-12-25 16:42:01 UTC (rev 1255) @@ -2419,6 +2419,17 @@ _waitPubSearch = False Case WORKERTYPE.List _waitLists = False + Case WORKERTYPE.Related + Dim tb As TabClass = _statuses.GetTabByType(TabUsageType.Related) + If tb IsNot Nothing AndAlso tb.RelationTargetPost IsNot Nothing AndAlso tb.Contains(tb.RelationTargetPost.Id) Then + For Each tp As TabPage In ListTab.TabPages + If tp.Text = tb.TabName Then + DirectCast(tp.Tag, DetailsListView).SelectedIndices.Add(tb.IndexOf(tb.RelationTargetPost.Id)) + DirectCast(tp.Tag, DetailsListView).Items(tb.IndexOf(tb.RelationTargetPost.Id)).Focused = True + Exit For + End If + Next + End If End Select End Sub @@ -9862,6 +9873,21 @@ Private Sub tw_PostDeleted(ByVal id As Long, ByRef post As PostClass) _statuses.RemovePostReserve(id, post) + Try + If InvokeRequired AndAlso Not IsDisposed Then + Invoke(Sub() + If _curTab IsNot Nothing AndAlso _statuses.Tabs(_curTab.Text).Contains(id) Then + _itemCache = Nothing + _itemCacheIndex = -1 + _postCache = Nothing + DirectCast(_curTab.Tag, DetailsListView).Update() + End If + End Sub) + Exit Sub + End If + Catch ex As ObjectDisposedException + Exit Sub + End Try End Sub Private Sub tw_NewPostFromStream() @@ -9948,6 +9974,14 @@ If ev.Event = "favorite" Then NotifyFavorite(ev) End If + If ev.Event = "favorite" OrElse ev.Event = "unfavorite" Then + If _curTab IsNot Nothing AndAlso _statuses.Tabs(_curTab.Text).Contains(ev.Id) Then + _itemCache = Nothing + _itemCacheIndex = -1 + _postCache = Nothing + DirectCast(_curTab.Tag, DetailsListView).Update() + End If + End If End Sub Private Sub NotifyFavorite(ByVal ev As Twitter.FormattedEvent) Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-25 08:51:31 UTC (rev 1254) +++ trunk/Tween/Twitter.vb 2010-12-25 16:42:01 UTC (rev 1255) @@ -2766,7 +2766,7 @@ Public Property [Event] As String Public Property Username As String Public Property Target As String - + Public Property Id As Int64 End Class Public Property StoredEvent As New List(Of FormattedEvent) @@ -2864,6 +2864,8 @@ Else If post.IsDm Then evt.Event = "DELETE(DM)" + ElseIf post.RetweetedId > 0 Then + evt.Event = "DELETE(RT)" Else evt.Event = "DELETE(Post)" End If @@ -2897,7 +2899,9 @@ End If evt.Target = "" Case "favorite", "unfavorite" + If evt.Username.ToLower.Equals(_uid) Then Exit Sub evt.Target = eventData.TargetObject.Text + evt.Id = eventData.TargetObject.Id If TabInformations.GetInstance.ContainsKey(eventData.TargetObject.Id) Then Dim post As PostClass = TabInformations.GetInstance.Item(eventData.TargetObject.Id) If eventData.Event = "favorite" Then From svnnotify @ sourceforge.jp Sun Dec 26 01:51:08 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 26 Dec 2010 01:51:08 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNTZdICBVU+OCpOODmeODs+ODiOODk+ODpQ==?= =?utf-8?b?44O844Ki44Gr44Kt44Oj44Oz44K744Or44Oc44K/44Oz44GM44GC44Gj44Gf?= =?utf-8?b?44Gu44Gn5YmK6Zmk?= Message-ID: <1293295868.646723.12965.nullmailer@users.sourceforge.jp> Revision: 1256 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1256 Author: kiri_feather Date: 2010-12-26 01:51:08 +0900 (Sun, 26 Dec 2010) Log Message: ----------- USイベントビューアにキャンセルボタンがあったので削除 Modified Paths: -------------- trunk/Tween/EventViewerDialog.Designer.vb trunk/Tween/EventViewerDialog.vb -------------- next part -------------- Modified: trunk/Tween/EventViewerDialog.Designer.vb =================================================================== --- trunk/Tween/EventViewerDialog.Designer.vb 2010-12-25 16:42:01 UTC (rev 1255) +++ trunk/Tween/EventViewerDialog.Designer.vb 2010-12-25 16:51:08 UTC (rev 1256) @@ -22,52 +22,23 @@ 'コード エディターを使って変更しないでください。 _ Private Sub InitializeComponent() - Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel() Me.OK_Button = New System.Windows.Forms.Button() - Me.Cancel_Button = New System.Windows.Forms.Button() Me.EventList = New System.Windows.Forms.ListView() Me.ColumnHeader1 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) Me.ColumnHeader2 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) Me.ColumnHeader3 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) Me.ColumnHeader4 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) - Me.TableLayoutPanel1.SuspendLayout() Me.SuspendLayout() ' - 'TableLayoutPanel1 - ' - Me.TableLayoutPanel1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.TableLayoutPanel1.ColumnCount = 2 - Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!)) - Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!)) - Me.TableLayoutPanel1.Controls.Add(Me.OK_Button, 0, 0) - Me.TableLayoutPanel1.Controls.Add(Me.Cancel_Button, 1, 0) - Me.TableLayoutPanel1.Location = New System.Drawing.Point(531, 253) - Me.TableLayoutPanel1.Name = "TableLayoutPanel1" - Me.TableLayoutPanel1.RowCount = 1 - Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!)) - Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!)) - Me.TableLayoutPanel1.Size = New System.Drawing.Size(146, 27) - Me.TableLayoutPanel1.TabIndex = 0 - ' 'OK_Button ' - Me.OK_Button.Anchor = System.Windows.Forms.AnchorStyles.None - Me.OK_Button.Location = New System.Drawing.Point(3, 3) + Me.OK_Button.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.OK_Button.Location = New System.Drawing.Point(612, 258) Me.OK_Button.Name = "OK_Button" Me.OK_Button.Size = New System.Drawing.Size(67, 21) Me.OK_Button.TabIndex = 0 Me.OK_Button.Text = "OK" ' - 'Cancel_Button - ' - Me.Cancel_Button.Anchor = System.Windows.Forms.AnchorStyles.None - Me.Cancel_Button.DialogResult = System.Windows.Forms.DialogResult.Cancel - Me.Cancel_Button.Location = New System.Drawing.Point(76, 3) - Me.Cancel_Button.Name = "Cancel_Button" - Me.Cancel_Button.Size = New System.Drawing.Size(67, 21) - Me.Cancel_Button.TabIndex = 1 - Me.Cancel_Button.Text = "キャンセル" - ' 'EventList ' Me.EventList.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ @@ -77,7 +48,7 @@ Me.EventList.FullRowSelect = True Me.EventList.Location = New System.Drawing.Point(12, 12) Me.EventList.Name = "EventList" - Me.EventList.Size = New System.Drawing.Size(665, 235) + Me.EventList.Size = New System.Drawing.Size(667, 235) Me.EventList.TabIndex = 1 Me.EventList.UseCompatibleStateImageBehavior = False Me.EventList.View = System.Windows.Forms.View.Details @@ -107,10 +78,9 @@ Me.AcceptButton = Me.OK_Button Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font - Me.CancelButton = Me.Cancel_Button - Me.ClientSize = New System.Drawing.Size(689, 291) + Me.ClientSize = New System.Drawing.Size(691, 291) + Me.Controls.Add(Me.OK_Button) Me.Controls.Add(Me.EventList) - Me.Controls.Add(Me.TableLayoutPanel1) Me.DoubleBuffered = True Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow Me.MaximizeBox = False @@ -119,13 +89,10 @@ Me.ShowInTaskbar = False Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent Me.Text = "Events" - Me.TableLayoutPanel1.ResumeLayout(False) Me.ResumeLayout(False) End Sub - Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel Friend WithEvents OK_Button As System.Windows.Forms.Button - Friend WithEvents Cancel_Button As System.Windows.Forms.Button Friend WithEvents EventList As System.Windows.Forms.ListView Friend WithEvents ColumnHeader1 As System.Windows.Forms.ColumnHeader Friend WithEvents ColumnHeader2 As System.Windows.Forms.ColumnHeader Modified: trunk/Tween/EventViewerDialog.vb =================================================================== --- trunk/Tween/EventViewerDialog.vb 2010-12-25 16:42:01 UTC (rev 1255) +++ trunk/Tween/EventViewerDialog.vb 2010-12-25 16:51:08 UTC (rev 1256) @@ -8,7 +8,7 @@ Me.Close() End Sub - Private Sub Cancel_Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cancel_Button.Click + Private Sub Cancel_Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Me.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.Close() End Sub From svnnotify @ sourceforge.jp Sun Dec 26 02:28:46 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 26 Dec 2010 02:28:46 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNTddICDoh6rliIbjga5GYXbjgqTjg5njg7M=?= =?utf-8?b?44OI44KC5Yem55CG44Gn44GN44KL44KI44GG44Gr?= Message-ID: <1293298126.802254.24422.nullmailer@users.sourceforge.jp> Revision: 1257 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1257 Author: kiri_feather Date: 2010-12-26 02:28:46 +0900 (Sun, 26 Dec 2010) Log Message: ----------- 自分のFavイベントも処理できるように Modified Paths: -------------- trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-25 16:51:08 UTC (rev 1256) +++ trunk/Tween/Tween.vb 2010-12-25 17:28:46 UTC (rev 1257) @@ -2242,48 +2242,7 @@ If rslt.type = WORKERTYPE.ErrorState Then Exit Sub If rslt.type = WORKERTYPE.FavRemove Then - DispSelectedPost() ' 詳細画面書き直し - Dim favTabName As String = _statuses.GetTabByType(TabUsageType.Favorites).TabName - Dim fidx As Integer - If _curTab.Text.Equals(favTabName) Then - If _curList.FocusedItem IsNot Nothing Then - fidx = _curList.FocusedItem.Index - ElseIf _curList.TopItem IsNot Nothing Then - fidx = _curList.TopItem.Index - Else - fidx = 0 - End If - End If - - For Each i As Long In rslt.sIds - _statuses.RemoveFavPost(i) - Next - If _curTab IsNot Nothing AndAlso _curTab.Text.Equals(favTabName) Then - _itemCache = Nothing 'キャッシュ破棄 - _postCache = Nothing - _curPost = Nothing - '_curItemIndex = -1 - End If - For Each tp As TabPage In ListTab.TabPages - If tp.Text = favTabName Then - DirectCast(tp.Tag, DetailsListView).VirtualListSize = _statuses.Tabs(favTabName).AllCount - Exit For - End If - Next - If _curTab.Text.Equals(favTabName) Then - _curList.SelectedIndices.Clear() - If _statuses.Tabs(favTabName).AllCount > 0 Then - If _statuses.Tabs(favTabName).AllCount - 1 > fidx AndAlso fidx > -1 Then - _curList.SelectedIndices.Add(fidx) - Else - _curList.SelectedIndices.Add(_statuses.Tabs(favTabName).AllCount - 1) - End If - If _curList.SelectedIndices.Count > 0 Then - _curList.EnsureVisible(_curList.SelectedIndices(0)) - _curList.FocusedItem = _curList.Items(_curList.SelectedIndices(0)) - End If - End If - End If + Me.RemovePostFromFavTab(rslt.sIds.ToArray) End If 'リストに反映 @@ -2434,6 +2393,50 @@ End Sub + Private Sub RemovePostFromFavTab(ByVal ids As Int64()) + Dim favTabName As String = _statuses.GetTabByType(TabUsageType.Favorites).TabName + Dim fidx As Integer + If _curTab.Text.Equals(favTabName) Then + If _curList.FocusedItem IsNot Nothing Then + fidx = _curList.FocusedItem.Index + ElseIf _curList.TopItem IsNot Nothing Then + fidx = _curList.TopItem.Index + Else + fidx = 0 + End If + End If + + For Each i As Long In ids + _statuses.RemoveFavPost(i) + Next + If _curTab IsNot Nothing AndAlso _curTab.Text.Equals(favTabName) Then + _itemCache = Nothing 'キャッシュ破棄 + _postCache = Nothing + _curPost = Nothing + '_curItemIndex = -1 + End If + For Each tp As TabPage In ListTab.TabPages + If tp.Text = favTabName Then + DirectCast(tp.Tag, DetailsListView).VirtualListSize = _statuses.Tabs(favTabName).AllCount + Exit For + End If + Next + If _curTab.Text.Equals(favTabName) Then + _curList.SelectedIndices.Clear() + If _statuses.Tabs(favTabName).AllCount > 0 Then + If _statuses.Tabs(favTabName).AllCount - 1 > fidx AndAlso fidx > -1 Then + _curList.SelectedIndices.Add(fidx) + Else + _curList.SelectedIndices.Add(_statuses.Tabs(favTabName).AllCount - 1) + End If + If _curList.SelectedIndices.Count > 0 Then + _curList.EnsureVisible(_curList.SelectedIndices(0)) + _curList.FocusedItem = _curList.Items(_curList.SelectedIndices(0)) + End If + End If + End If + + End Sub Private Sub GetTimeline(ByVal WkType As WORKERTYPE, ByVal fromPage As Integer, ByVal toPage As Integer, ByVal tabName As String) If Not IsNetworkAvailable() Then Exit Sub @@ -9981,6 +9984,9 @@ _postCache = Nothing DirectCast(_curTab.Tag, DetailsListView).Update() End If + If ev.Event = "unfavorite" AndAlso ev.Username.ToLower.Equals(tw.Username.ToLower) Then + RemovePostFromFavTab(New Int64() {ev.Id}) + End If End If End Sub Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-25 16:51:08 UTC (rev 1256) +++ trunk/Tween/Twitter.vb 2010-12-25 17:28:46 UTC (rev 1257) @@ -2899,22 +2899,30 @@ End If evt.Target = "" Case "favorite", "unfavorite" - If evt.Username.ToLower.Equals(_uid) Then Exit Sub evt.Target = eventData.TargetObject.Text evt.Id = eventData.TargetObject.Id If TabInformations.GetInstance.ContainsKey(eventData.TargetObject.Id) Then Dim post As PostClass = TabInformations.GetInstance.Item(eventData.TargetObject.Id) If eventData.Event = "favorite" Then - post.FavoritedCount += 1 - If Not TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).Contains(post.Id) Then - post.IsRead = False + If evt.Username.ToLower.Equals(_uid) Then + post.IsFav = True TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).Add(post.Id, post.IsRead, False) Else - TabInformations.GetInstance.SetRead(False, TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).TabName, TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).IndexOf(post.Id)) + post.FavoritedCount += 1 + If Not TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).Contains(post.Id) Then + post.IsRead = False + TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).Add(post.Id, post.IsRead, False) + Else + TabInformations.GetInstance.SetRead(False, TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).TabName, TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).IndexOf(post.Id)) + End If End If Else - post.FavoritedCount -= 1 - If post.FavoritedCount < 0 Then post.FavoritedCount = 0 + If evt.Username.ToLower.Equals(_uid) Then + post.IsFav = False + Else + post.FavoritedCount -= 1 + If post.FavoritedCount < 0 Then post.FavoritedCount = 0 + End If End If End If Case "list_member_added", "list_member_removed" From svnnotify @ sourceforge.jp Sun Dec 26 21:29:11 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Sun, 26 Dec 2010 21:29:11 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNThdICDmpJzntKLjgr/jg5bjgafjga4gWyA=?= =?utf-8?b?44Gn44GuSW5SZXBseVRv5Y+W5b6X44KS5a6f6KOF?= Message-ID: <1293366551.789599.17720.nullmailer@users.sourceforge.jp> Revision: 1258 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1258 Author: anis774 Date: 2010-12-26 21:29:11 +0900 (Sun, 26 Dec 2010) Log Message: ----------- 検索タブでの[でのInReplyTo取得を実装 Modified Paths: -------------- trunk/Tween/Tween.Designer.vb trunk/Tween/Tween.resx trunk/Tween/Tween.vb trunk/Tween/Twitter.vb Property Changed: ---------------- trunk/ -------------- next part -------------- Property changes on: trunk ___________________________________________________________________ Modified: svn:mergeinfo - /branches/tm:782-794 /branches/editlist:667-697 /branches/SettingDialog:1216-1230 /branches/panelswitch:447-572 /branches/APIchangeevent:723-746 /branches/UserStream:1077-1144 /branches/FixedImage:787-910 + /branches/UserStream:1077-1144 /branches/editlist:667-697 /branches/SettingDialog:1216-1230 /branches/panelswitch:447-572 /branches/APIchangeevent:723-746 /branches/tm:782-794 /branches/FixedImage:787-910 Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-25 17:28:46 UTC (rev 1257) +++ trunk/Tween/Tween.vb 2010-12-26 12:29:11 UTC (rev 1258) @@ -5447,13 +5447,28 @@ End Sub Private Sub GoInReplyToPost() + Dim curTabClass As TabClass = _statuses.Tabs(_curTab.Text) + + If curTabClass.TabType = TabUsageType.PublicSearch AndAlso _curPost.InReplyToId = 0 Then + Dim post As PostClass = Nothing + Dim r As String = tw.GetStatusApi(False, _curPost.Id, post) + If r = "" AndAlso post IsNot Nothing Then + _curPost.InReplyToId = post.InReplyToId + _curPost.InReplyToUser = post.InReplyToUser + _curPost.IsReply = post.IsReply + Else + Me.StatusLabelUrl.Text = r + End If + End If + If Not (Me.ExistCurrentPost AndAlso _curPost.InReplyToUser IsNot Nothing AndAlso _curPost.InReplyToId > 0) Then Return Dim inReplyToIndex As Integer Dim inReplyToTabName As String - Dim curTabClass As TabClass = _statuses.Tabs(_curTab.Text) Dim curTabPosts As Dictionary(Of Long, PostClass) + + If _statuses.Tabs(_curTab.Text).IsInnerStorageTabType Then curTabPosts = curTabClass.Posts Else Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-25 17:28:46 UTC (rev 1257) +++ trunk/Tween/Twitter.vb 2010-12-26 12:29:11 UTC (rev 1258) @@ -1384,8 +1384,7 @@ Public Function GetStatusApi(ByVal read As Boolean, ByVal id As Int64, - ByVal tab As TabClass) As String - + ByRef post As PostClass) As String If Twitter.AccountState <> ACCOUNT_STATE.Valid Then Return "" If _endingFlag Then Return "" @@ -1425,13 +1424,26 @@ If item Is Nothing Then Return "Err:Can't create post" item.IsRead = read If item.IsMe AndAlso Not read AndAlso _readOwnPost Then item.IsRead = True - If tab IsNot Nothing Then item.RelTabName = tab.TabName - '非同期アイコン取得&StatusDictionaryに追加 - TabInformations.GetInstance.AddPost(item) + post = item Return "" End Function + Public Function GetStatusApi(ByVal read As Boolean, + ByVal id As Int64, + ByVal tab As TabClass) As String + Dim post As PostClass = Nothing + Dim r As String = Me.GetStatusApi(read, id, post) + + If r = "" Then + If tab IsNot Nothing Then post.RelTabName = tab.TabName + '非同期アイコン取得&StatusDictionaryに追加 + TabInformations.GetInstance.AddPost(post) + End If + + Return r + End Function + Private Function CreatePostsFromStatusData(ByVal status As TwitterDataModel.Status) As PostClass Dim post As New PostClass @@ -1974,11 +1986,11 @@ End If End If - post.Uid = user.id + post.Uid = user.Id post.Name = user.ScreenName post.Nickname = user.Name post.ImageUrl = user.ProfileImageUrl - post.IsProtect = user.protected + post.IsProtect = user.Protected Catch ex As Exception TraceOut(content) MessageBox.Show("Parse Error(CreateDirectMessagesFromJson)") @@ -2102,13 +2114,13 @@ 'Id post.RetweetedId = post.Id '本文 - post.Data = retweeted.text + post.Data = retweeted.Text 'Source取得(htmlの場合は、中身を取り出し) - post.Source = retweeted.source + post.Source = retweeted.Source 'Reply先 Long.TryParse(retweeted.InReplyToStatusId, post.InReplyToId) post.InReplyToUser = retweeted.InReplyToScreenName - post.IsFav = retweeted.favorited + post.IsFav = retweeted.Favorited '以下、ユーザー情報 Dim user As TwitterDataModel.User = retweeted.User From svnnotify @ sourceforge.jp Mon Dec 27 14:42:42 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 27 Dec 2010 14:42:42 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNTldICDjg7sgWyDjgafjga7jg6rjg5fjg6k=?= =?utf-8?b?44Kk56e75YuV5pmC44Gr44Oq44OX44Op44Kk5YWI44Gu44Od44K544OI44GM?= =?utf-8?b?VEzjgavnhKHjgYTloLTlkIjjgavjga/jgIFUTOOBq+iqreOBv+i+vOOCkw==?= =?utf-8?b?44Gg5LiK44Gn6YG45oqe44GZ44KL5qmf6IO944KS5a6f6KOF?= Message-ID: <1293428562.898916.7062.nullmailer@users.sourceforge.jp> Revision: 1259 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1259 Author: anis774 Date: 2010-12-27 14:42:42 +0900 (Mon, 27 Dec 2010) Log Message: ----------- ・[でのリプライ移動時にリプライ先のポストがTLに無い場合には、TLに読み込んだ上で選択する機能を実装 ※検索タブでリプライでないポストで[を使うと毎回APIだけ消費してしまうので要対策 Modified Paths: -------------- trunk/Tween/Tween.vb Property Changed: ---------------- trunk/ -------------- next part -------------- Property changes on: trunk ___________________________________________________________________ Modified: svn:mergeinfo - /branches/UserStream:1077-1144 /branches/editlist:667-697 /branches/SettingDialog:1216-1230 /branches/panelswitch:447-572 /branches/APIchangeevent:723-746 /branches/tm:782-794 /branches/FixedImage:787-910 + /branches/tm:782-794 /branches/editlist:667-697 /branches/SettingDialog:1216-1230 /branches/panelswitch:447-572 /branches/APIchangeevent:723-746 /branches/UserStream:1077-1144 /branches/FixedImage:787-910 Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-26 12:29:11 UTC (rev 1258) +++ trunk/Tween/Tween.vb 2010-12-27 05:42:42 UTC (rev 1259) @@ -5463,12 +5463,17 @@ If Not (Me.ExistCurrentPost AndAlso _curPost.InReplyToUser IsNot Nothing AndAlso _curPost.InReplyToId > 0) Then Return + If replyChains Is Nothing OrElse (replyChains.Count > 0 AndAlso replyChains.Peek().InReplyToId <> _curPost.Id) Then + replyChains = New Stack(Of ReplyChain) + End If + replyChains.Push(New ReplyChain(_curPost.Id, _curPost.InReplyToId, _curTab)) + Dim inReplyToIndex As Integer Dim inReplyToTabName As String + Dim inReplyToId As Long = _curPost.InReplyToId + Dim inReplyToUser As String = _curPost.InReplyToUser Dim curTabPosts As Dictionary(Of Long, PostClass) - - If _statuses.Tabs(_curTab.Text).IsInnerStorageTabType Then curTabPosts = curTabClass.Posts Else @@ -5481,7 +5486,7 @@ Else Dim inReplyToPosts = From tab In _statuses.Tabs.Values From post In DirectCast(IIf(tab.IsInnerStorageTabType, tab.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)).Values - Where post.Id = _curPost.InReplyToId + Where post.Id = inReplyToId Let index = tab.IndexOf(post.Id) Where index <> -1 Select New With {.Tab = tab, .Post = post, .Index = index} @@ -5491,16 +5496,29 @@ inReplyToTabName = inReplyPost.Tab.TabName inReplyToIndex = inReplyPost.Index Catch ex As InvalidOperationException - OpenUriAsync("http://twitter.com/" + _curPost.InReplyToUser + "/statuses/" + _curPost.InReplyToId.ToString()) - Exit Sub + Dim post As PostClass = Nothing + Dim r As String = tw.GetStatusApi(False, _curPost.InReplyToId, post) + If r = "" AndAlso post IsNot Nothing Then + _statuses.AddPost(post) + _statuses.DistributePosts() + _statuses.SubmitUpdate(Nothing, Nothing, Nothing, False) + Me.RefreshTimeline(False) + Try + Dim inReplyPost = inReplyToPosts.First() + inReplyToTabName = inReplyPost.Tab.TabName + inReplyToIndex = inReplyPost.Index + Catch ex2 As InvalidOperationException + OpenUriAsync("http://twitter.com/" + inReplyToUser + "/statuses/" + inReplyToId.ToString()) + Exit Sub + End Try + Else + Me.StatusLabelUrl.Text = r + OpenUriAsync("http://twitter.com/" + inReplyToUser + "/statuses/" + inReplyToId.ToString()) + Exit Sub + End If End Try End If - If replyChains Is Nothing OrElse (replyChains.Count > 0 AndAlso replyChains.Peek().InReplyToId <> _curPost.Id) Then - replyChains = New Stack(Of ReplyChain) - End If - replyChains.Push(New ReplyChain(_curPost.Id, _curPost.InReplyToId, _curTab)) - Dim tabPage = Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = inReplyToTabName) Dim listView = DirectCast(tabPage.Tag, DetailsListView) From svnnotify @ sourceforge.jp Mon Dec 27 15:46:33 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 27 Dec 2010 15:46:33 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNjBdIHV4LiBudeOCteODvOODk+OCueWPlg==?= =?utf-8?b?44KK6L6844G/?= Message-ID: <1293432393.490607.22494.nullmailer@users.sourceforge.jp> Revision: 1260 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1260 Author: kiri_feather Date: 2010-12-27 15:46:33 +0900 (Mon, 27 Dec 2010) Log Message: ----------- ux.nuサービス取り込み Modified Paths: -------------- trunk/Tween/AppendSettingDialog.Designer.vb trunk/Tween/AppendSettingDialog.resx trunk/Tween/MyCommon.vb trunk/Tween/ShortUrl.vb trunk/Tween/Tween.Designer.vb trunk/Tween/Tween.resx trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.Designer.vb =================================================================== --- trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-27 05:42:42 UTC (rev 1259) +++ trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-27 06:46:33 UTC (rev 1260) @@ -856,7 +856,7 @@ ' Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True - Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4")}) + Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4"), resources.GetString("ComboBoxAutoShortUrlFirst.Items5")}) resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" ' Modified: trunk/Tween/AppendSettingDialog.resx =================================================================== --- trunk/Tween/AppendSettingDialog.resx 2010-12-27 05:42:42 UTC (rev 1259) +++ trunk/Tween/AppendSettingDialog.resx 2010-12-27 06:46:33 UTC (rev 1260) @@ -2617,6 +2617,9 @@ j.mp + + ux.nu + 181, 71 Modified: trunk/Tween/MyCommon.vb =================================================================== --- trunk/Tween/MyCommon.vb 2010-12-27 05:42:42 UTC (rev 1259) +++ trunk/Tween/MyCommon.vb 2010-12-27 06:46:33 UTC (rev 1260) @@ -77,6 +77,7 @@ Twurl Bitly Jmp + Uxnu '特殊 Nicoms '廃止 Modified: trunk/Tween/ShortUrl.vb =================================================================== --- trunk/Tween/ShortUrl.vb 2010-12-27 05:42:42 UTC (rev 1259) +++ trunk/Tween/ShortUrl.vb 2010-12-27 06:46:33 UTC (rev 1260) @@ -221,6 +221,20 @@ End If End If End If + Case UrlConverter.Uxnu + If SrcUrl.StartsWith("http") Then + If "http://ux.nx/xxxxxx".Length > src.Length AndAlso Not src.Contains("?") AndAlso Not src.Contains("#") Then + ' 明らかに長くなると推測できる場合は圧縮しない + content = src + Exit Select + End If + If Not (New HttpVarious).PostData("http://ux.nu/api/short?url=" + SrcUrl + "&format=plain", Nothing, content) Then + Return "Can't convert" + End If + End If + If Not content.StartsWith("http://ux.nu/") Then + Return "Can't convert" + End If End Select '変換結果から改行を除去 Dim ch As Char() = {ControlChars.Cr, ControlChars.Lf} Modified: trunk/Tween/Tween.Designer.vb =================================================================== --- trunk/Tween/Tween.Designer.vb 2010-12-27 05:42:42 UTC (rev 1259) +++ trunk/Tween/Tween.Designer.vb 2010-12-27 06:46:33 UTC (rev 1260) @@ -292,6 +292,7 @@ Me.TimerRefreshIcon = New System.Windows.Forms.Timer(Me.components) Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog() Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components) + Me.UxnuMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ToolStripContainer1.BottomToolStripPanel.SuspendLayout() Me.ToolStripContainer1.ContentPanel.SuspendLayout() Me.ToolStripContainer1.TopToolStripPanel.SuspendLayout() @@ -1339,7 +1340,7 @@ ' 'TinyUrlConvertToolStripMenuItem ' - Me.TinyUrlConvertToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.UrlConvertAutoToolStripMenuItem, Me.UrlUndoToolStripMenuItem, Me.TinyURLToolStripMenuItem, Me.IsgdToolStripMenuItem, Me.TwurlnlToolStripMenuItem, Me.BitlyToolStripMenuItem, Me.JmpStripMenuItem}) + Me.TinyUrlConvertToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.UrlConvertAutoToolStripMenuItem, Me.UrlUndoToolStripMenuItem, Me.TinyURLToolStripMenuItem, Me.IsgdToolStripMenuItem, Me.TwurlnlToolStripMenuItem, Me.BitlyToolStripMenuItem, Me.JmpStripMenuItem, Me.UxnuMenuItem}) Me.TinyUrlConvertToolStripMenuItem.Name = "TinyUrlConvertToolStripMenuItem" resources.ApplyResources(Me.TinyUrlConvertToolStripMenuItem, "TinyUrlConvertToolStripMenuItem") ' @@ -1827,6 +1828,11 @@ ' Me.OpenFileDialog1.FileName = "OpenFileDialog1" ' + 'UxnuMenuItem + ' + Me.UxnuMenuItem.Name = "UxnuMenuItem" + resources.ApplyResources(Me.UxnuMenuItem, "UxnuMenuItem") + ' 'TweenMain ' Me.AllowDrop = True @@ -2144,5 +2150,6 @@ Friend WithEvents ToolStripSeparator42 As System.Windows.Forms.ToolStripSeparator Friend WithEvents EventViewerMenuItem As System.Windows.Forms.ToolStripMenuItem Friend WithEvents TranslationToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem + Friend WithEvents UxnuMenuItem As System.Windows.Forms.ToolStripMenuItem End Class Modified: trunk/Tween/Tween.resx =================================================================== --- trunk/Tween/Tween.resx 2010-12-27 05:42:42 UTC (rev 1259) +++ trunk/Tween/Tween.resx 2010-12-27 06:46:33 UTC (rev 1260) @@ -382,7 +382,7 @@ 0, 0, 0, 0 - 570, 256 + 570, 258 0 @@ -406,7 +406,7 @@ 0, 0 - 570, 256 + 570, 258 0 @@ -436,7 +436,7 @@ 0, 0 - 570, 228 + 570, 230 Zoom @@ -640,7 +640,7 @@ Bottom - 0, 228 + 0, 230 3, 3, 3, 3 @@ -670,7 +670,7 @@ 0, 0 - 570, 256 + 570, 258 1 @@ -697,7 +697,7 @@ 0, 0 - 570, 256 + 570, 258 2 @@ -826,7 +826,7 @@ 3, 3 - 50, 49 + 50, 47 Zoom @@ -1045,7 +1045,7 @@ 59, 20 - 508, 32 + 508, 30 6 @@ -1150,7 +1150,7 @@ 2 - 570, 55 + 570, 53 1 @@ -1288,10 +1288,10 @@ 19 - 570, 82 + 570, 80 - 55 + 53 2 @@ -1333,7 +1333,7 @@ 0, 0 - 194, 84 + 194, 82 Zoom @@ -1363,7 +1363,7 @@ 194, 0 - 17, 84 + 17, 82 0 @@ -1393,7 +1393,7 @@ 1 - 570, 82 + 570, 80 355 @@ -1432,7 +1432,7 @@ 574, 348 - 260 + 262 2 @@ -2043,6 +2043,12 @@ j.mp + + 242, 22 + + + ux.nu + 280, 22 @@ -4014,6 +4020,12 @@ System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + UxnuMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + TweenMain Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-27 05:42:42 UTC (rev 1259) +++ trunk/Tween/Tween.vb 2010-12-27 06:46:33 UTC (rev 1260) @@ -7867,6 +7867,10 @@ UrlConvert(UrlConverter.Twurl) End Sub + Private Sub UxnuMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles UxnuMenuItem.Click + UrlConvert(UrlConverter.Uxnu) + End Sub + Private Sub UrlConvertAutoToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles UrlConvertAutoToolStripMenuItem.Click If Not UrlConvert(SettingDialog.AutoShortUrlFirst) Then Dim svc As UrlConverter = SettingDialog.AutoShortUrlFirst @@ -7874,7 +7878,7 @@ ' 前回使用した短縮URLサービス以外を選択する Do svc = CType(rnd.Next(System.Enum.GetNames(GetType(UrlConverter)).Length), UrlConverter) - Loop Until svc <> SettingDialog.AutoShortUrlFirst + Loop Until svc <> SettingDialog.AutoShortUrlFirst AndAlso svc <> UrlConverter.Nicoms AndAlso svc <> UrlConverter.Unu UrlConvert(svc) End If End Sub @@ -10114,4 +10118,5 @@ Return True End Get End Property + End Class From svnnotify @ sourceforge.jp Mon Dec 27 16:24:29 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 27 Dec 2010 16:24:29 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNjFdICDoqK3lrprjga7jg4DjgqTjgqLjg60=?= =?utf-8?b?44Kw44Gr6YCj5pC644K144O844OT44K544Go55+t57iuVVJM44Gu44OO44O8?= =?utf-8?b?44OJ44KS6L+95Yqg?= Message-ID: <1293434669.655031.6141.nullmailer@users.sourceforge.jp> Revision: 1261 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1261 Author: f_swallow Date: 2010-12-27 16:24:29 +0900 (Mon, 27 Dec 2010) Log Message: ----------- 設定のダイアログに連携サービスと短縮URLのノードを追加 Modified Paths: -------------- trunk/Tween/AppendSettingDialog.Designer.vb trunk/Tween/AppendSettingDialog.resx trunk/Tween/AppendSettingDialog.vb -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.Designer.vb =================================================================== --- trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-27 06:46:33 UTC (rev 1260) +++ trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-27 07:24:29 UTC (rev 1261) @@ -236,6 +236,8 @@ Me.ColorDialog1 = New System.Windows.Forms.ColorDialog() Me.Cancel = New System.Windows.Forms.Button() Me.Save = New System.Windows.Forms.Button() + Me.CooperatePanel = New System.Windows.Forms.Panel() + Me.ShortUrlPanel = New System.Windows.Forms.Panel() CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SplitContainer1.Panel1.SuspendLayout() Me.SplitContainer1.Panel2.SuspendLayout() @@ -256,6 +258,8 @@ Me.GroupBox5.SuspendLayout() Me.ConnectionPanel.SuspendLayout() Me.ProxyPanel.SuspendLayout() + Me.CooperatePanel.SuspendLayout() + Me.ShortUrlPanel.SuspendLayout() Me.SuspendLayout() ' 'SplitContainer1 @@ -283,6 +287,8 @@ Me.SplitContainer1.Panel2.Controls.Add(Me.FontPanel2) Me.SplitContainer1.Panel2.Controls.Add(Me.ConnectionPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.ProxyPanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.CooperatePanel) + Me.SplitContainer1.Panel2.Controls.Add(Me.ShortUrlPanel) Me.SplitContainer1.TabStop = False ' 'TreeView1 @@ -780,20 +786,12 @@ ' 'TweetActPanel ' - Me.TweetActPanel.Controls.Add(Me.TextBitlyPw) Me.TweetActPanel.Controls.Add(Me.ComboBoxPostKeySelect) Me.TweetActPanel.Controls.Add(Me.Label27) Me.TweetActPanel.Controls.Add(Me.CheckRetweetNoConfirm) - Me.TweetActPanel.Controls.Add(Me.TextBitlyId) Me.TweetActPanel.Controls.Add(Me.Label12) - Me.TweetActPanel.Controls.Add(Me.Label77) Me.TweetActPanel.Controls.Add(Me.CheckUseRecommendStatus) - Me.TweetActPanel.Controls.Add(Me.Label76) Me.TweetActPanel.Controls.Add(Me.StatusText) - Me.TweetActPanel.Controls.Add(Me.ComboBoxAutoShortUrlFirst) - Me.TweetActPanel.Controls.Add(Me.Label71) - Me.TweetActPanel.Controls.Add(Me.CheckTinyURL) - Me.TweetActPanel.Controls.Add(Me.CheckAutoConvertUrl) resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") Me.TweetActPanel.Name = "TweetActPanel" ' @@ -1473,12 +1471,6 @@ ' 'ConnectionPanel ' - Me.ConnectionPanel.Controls.Add(Me.CheckNicoms) - Me.ConnectionPanel.Controls.Add(Me.Label60) - Me.ConnectionPanel.Controls.Add(Me.ComboBoxOutputzUrlmode) - Me.ConnectionPanel.Controls.Add(Me.Label59) - Me.ConnectionPanel.Controls.Add(Me.TextBoxOutputzKey) - Me.ConnectionPanel.Controls.Add(Me.CheckOutputz) Me.ConnectionPanel.Controls.Add(Me.CheckEnableBasicAuth) Me.ConnectionPanel.Controls.Add(Me.TwitterSearchAPIText) Me.ConnectionPanel.Controls.Add(Me.Label31) @@ -1675,6 +1667,30 @@ Me.Save.Name = "Save" Me.Save.UseVisualStyleBackColor = True ' + 'CooperatePanel + ' + Me.CooperatePanel.Controls.Add(Me.CheckOutputz) + Me.CooperatePanel.Controls.Add(Me.CheckNicoms) + Me.CooperatePanel.Controls.Add(Me.TextBoxOutputzKey) + Me.CooperatePanel.Controls.Add(Me.Label60) + Me.CooperatePanel.Controls.Add(Me.Label59) + Me.CooperatePanel.Controls.Add(Me.ComboBoxOutputzUrlmode) + resources.ApplyResources(Me.CooperatePanel, "CooperatePanel") + Me.CooperatePanel.Name = "CooperatePanel" + ' + 'ShortUrlPanel + ' + Me.ShortUrlPanel.Controls.Add(Me.CheckTinyURL) + Me.ShortUrlPanel.Controls.Add(Me.TextBitlyPw) + Me.ShortUrlPanel.Controls.Add(Me.CheckAutoConvertUrl) + Me.ShortUrlPanel.Controls.Add(Me.Label71) + Me.ShortUrlPanel.Controls.Add(Me.ComboBoxAutoShortUrlFirst) + Me.ShortUrlPanel.Controls.Add(Me.Label76) + Me.ShortUrlPanel.Controls.Add(Me.Label77) + Me.ShortUrlPanel.Controls.Add(Me.TextBitlyId) + resources.ApplyResources(Me.ShortUrlPanel, "ShortUrlPanel") + Me.ShortUrlPanel.Name = "ShortUrlPanel" + ' 'AppendSettingDialog ' Me.AcceptButton = Me.Save @@ -1725,6 +1741,10 @@ Me.ConnectionPanel.PerformLayout() Me.ProxyPanel.ResumeLayout(False) Me.ProxyPanel.PerformLayout() + Me.CooperatePanel.ResumeLayout(False) + Me.CooperatePanel.PerformLayout() + Me.ShortUrlPanel.ResumeLayout(False) + Me.ShortUrlPanel.PerformLayout() Me.ResumeLayout(False) End Sub @@ -1941,4 +1961,6 @@ Friend WithEvents Label32 As System.Windows.Forms.Label Friend WithEvents Label34 As System.Windows.Forms.Label Friend WithEvents Label36 As System.Windows.Forms.Label + Friend WithEvents CooperatePanel As System.Windows.Forms.Panel + Friend WithEvents ShortUrlPanel As System.Windows.Forms.Panel End Class Modified: trunk/Tween/AppendSettingDialog.resx =================================================================== --- trunk/Tween/AppendSettingDialog.resx 2010-12-27 06:46:33 UTC (rev 1260) +++ trunk/Tween/AppendSettingDialog.resx 2010-12-27 07:24:29 UTC (rev 1261) @@ -207,14 +207,22 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQsAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAG6YCa5L+hBgQAAAAOQ29ubmVjdGlvbk5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG - AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt - YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD - b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAAzjg5fjg63jgq3jgrcGCAAAAAlQcm94eU5vZGUA/////wkF - AAAA/////wkFAAAAAAAAAAs= + bGRyZW4wCWNoaWxkcmVuMQljaGlsZHJlbjIBAQAAAQABAAQEBAEICAgdU3lzdGVtLldpbmRvd3MuRm9y + bXMuVHJlZU5vZGUCAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlAgAAAB1TeXN0ZW0uV2lu + ZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMAAAAG6YCa5L+hBgQAAAAOQ29ubmVjdGlvbk5vZGUA + /////wYFAAAAAP////8JBQAAAAMAAAAJBgAAAAkHAAAACQgAAAAFBgAAAB1TeXN0ZW0uV2luZG93cy5G + b3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNl + bGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAA + BgkAAAAM44OX44Ot44Kt44K3BgoAAAAJUHJveHlOb2RlAP////8JBQAAAP////8JBQAAAAAAAAAFBwAA + AB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFn + ZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291 + bnQBAQAAAQABAAEICAgCAAAABgwAAAAS6YCj5pC644K144O844OT44K5Bg0AAAANQ29vcGVyYXRlTm9k + ZQD/////CQUAAAD/////CQUAAAAAAAAABQgAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUI + AAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5k + ZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgIAgAAAAYPAAAACeefree4rlVS + TAYQAAAADFNob3J0VXJsTm9kZQD/////CQUAAAD/////CQUAAAAAAAAACw== @@ -2329,27 +2337,6 @@ 5 - - 343, 94 - - - 70, 19 - - - 7 - - - TextBitlyPw - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 0 - Enter @@ -2360,7 +2347,7 @@ Shift+Enter - 181, 136 + 184, 19 246, 20 @@ -2378,7 +2365,7 @@ TweetActPanel - 1 + 0 True @@ -2387,7 +2374,7 @@ NoControl - 19, 139 + 22, 22 137, 12 @@ -2408,7 +2395,7 @@ TweetActPanel - 2 + 1 True @@ -2417,7 +2404,7 @@ NoControl - 21, 163 + 24, 50 165, 16 @@ -2438,29 +2425,8 @@ TweetActPanel - 3 + 2 - - 201, 95 - - - 71, 19 - - - 5 - - - TextBitlyId - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 4 - True @@ -2468,7 +2434,7 @@ NoControl - 20, 211 + 23, 94 107, 12 @@ -2489,38 +2455,8 @@ TweetActPanel - 5 + 3 - - True - - - NoControl - - - 278, 97 - - - 42, 12 - - - 6 - - - APIKey - - - Label77 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 6 - True @@ -2528,7 +2464,7 @@ NoControl - 182, 211 + 185, 94 195, 16 @@ -2549,40 +2485,10 @@ TweetActPanel - 7 - - - True - - - NoControl - - - 179, 97 - - - 16, 12 - - 4 - - ID - - - Label76 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 8 - - 182, 233 + 185, 116 232, 19 @@ -2600,137 +2506,8 @@ TweetActPanel - 9 + 5 - - tinyurl - - - is.gd - - - twurl.nl - - - bit.ly - - - j.mp - - - ux.nu - - - 181, 71 - - - 246, 20 - - - 3 - - - ComboBoxAutoShortUrlFirst - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 10 - - - True - - - NoControl - - - 19, 74 - - - 154, 12 - - - 2 - - - URL自動短縮で優先的に使用 - - - Label71 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 11 - - - True - - - NoControl - - - 22, 21 - - - 122, 16 - - - 0 - - - 短縮URLを解決する - - - CheckTinyURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 12 - - - True - - - NoControl - - - 22, 42 - - - 242, 16 - - - 1 - - - 入力欄のURLを投稿する際に自動で短縮する - - - CheckAutoConvertUrl - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TweetActPanel - - - 13 - Fill @@ -5437,174 +5214,6 @@ 10 - - True - - - NoControl - - - 22, 293 - - - 237, 16 - - - 13 - - - ニコニコ動画のURLをnico.msで短縮して送信 - - - CheckNicoms - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 0 - - - True - - - NoControl - - - 36, 245 - - - 99, 12 - - - 11 - - - アウトプット先のURL - - - Label60 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 1 - - - twitter.com - - - twitter.com/username - - - 205, 242 - - - 182, 20 - - - 12 - - - ComboBoxOutputzUrlmode - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 2 - - - True - - - NoControl - - - 36, 199 - - - 63, 12 - - - 9 - - - 復活の呪文 - - - Label59 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 3 - - - 205, 196 - - - 182, 19 - - - 10 - - - TextBoxOutputzKey - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 4 - - - True - - - NoControl - - - 22, 161 - - - 115, 16 - - - 8 - - - Outputzに対応する - - - CheckOutputz - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ConnectionPanel - - - 5 - True @@ -5612,7 +5221,7 @@ NoControl - 22, 326 + 22, 166 178, 16 @@ -5633,7 +5242,7 @@ ConnectionPanel - 6 + 0 262, 125 @@ -5657,7 +5266,7 @@ ConnectionPanel - 7 + 1 True @@ -5687,7 +5296,7 @@ ConnectionPanel - 8 + 2 262, 100 @@ -5711,7 +5320,7 @@ ConnectionPanel - 9 + 3 True @@ -5741,7 +5350,7 @@ ConnectionPanel - 10 + 4 True @@ -5771,7 +5380,7 @@ ConnectionPanel - 11 + 5 True @@ -5801,7 +5410,7 @@ ConnectionPanel - 12 + 6 262, 18 @@ -5822,7 +5431,7 @@ ConnectionPanel - 13 + 7 True @@ -5852,7 +5461,7 @@ ConnectionPanel - 14 + 8 Fill @@ -6238,6 +5847,462 @@ 12 + + True + + + NoControl + + + 22, 22 + + + 115, 16 + + + 8 + + + Outputzに対応する + + + CheckOutputz + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + CooperatePanel + + + 0 + + + True + + + NoControl + + + 22, 154 + + + 237, 16 + + + 13 + + + ニコニコ動画のURLをnico.msで短縮して送信 + + + CheckNicoms + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + CooperatePanel + + + 1 + + + 205, 57 + + + 182, 19 + + + 10 + + + TextBoxOutputzKey + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + CooperatePanel + + + 2 + + + True + + + NoControl + + + 36, 106 + + + 99, 12 + + + 11 + + + アウトプット先のURL + + + Label60 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + CooperatePanel + + + 3 + + + True + + + NoControl + + + 36, 60 + + + 63, 12 + + + 9 + + + 復活の呪文 + + + Label59 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + CooperatePanel + + + 4 + + + twitter.com + + + twitter.com/username + + + 205, 103 + + + 182, 20 + + + 12 + + + ComboBoxOutputzUrlmode + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + CooperatePanel + + + 5 + + + Fill + + + False + + + 0, 0 + + + 518, 368 + + + 12 + + + False + + + CooperatePanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 13 + + + True + + + NoControl + + + 22, 22 + + + 122, 16 + + + 0 + + + 短縮URLを解決する + + + CheckTinyURL + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ShortUrlPanel + + + 0 + + + 343, 101 + + + 70, 19 + + + 7 + + + TextBitlyPw + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ShortUrlPanel + + + 1 + + + True + + + NoControl + + + 22, 49 + + + 242, 16 + + + 1 + + + 入力欄のURLを投稿する際に自動で短縮する + + + CheckAutoConvertUrl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ShortUrlPanel + + + 2 + + + True + + + NoControl + + + 19, 81 + + + 154, 12 + + + 2 + + + URL自動短縮で優先的に使用 + + + Label71 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ShortUrlPanel + + + 3 + + + tinyurl + + + is.gd + + + twurl.nl + + + bit.ly + + + j.mp + + + ux.nu + + + 181, 78 + + + 246, 20 + + + 3 + + + ComboBoxAutoShortUrlFirst + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ShortUrlPanel + + + 4 + + + True + + + NoControl + + + 179, 104 + + + 16, 12 + + + 4 + + + ID + + + Label76 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ShortUrlPanel + + + 5 + + + True + + + NoControl + + + 278, 104 + + + 42, 12 + + + 6 + + + APIKey + + + Label77 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ShortUrlPanel + + + 6 + + + 201, 102 + + + 71, 19 + + + 5 + + + TextBitlyId + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ShortUrlPanel + + + 7 + + + Fill + + + False + + + 0, 0 + + + 518, 368 + + + 13 + + + ShortUrlPanel + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SplitContainer1.Panel2 + + + 14 + SplitContainer1.Panel2 Modified: trunk/Tween/AppendSettingDialog.vb =================================================================== --- trunk/Tween/AppendSettingDialog.vb 2010-12-27 06:46:33 UTC (rev 1260) +++ trunk/Tween/AppendSettingDialog.vb 2010-12-27 07:24:29 UTC (rev 1261) @@ -625,6 +625,8 @@ .Nodes("FontNode").Nodes("FontNode2").Tag = FontPanel2 .Nodes("ConnectionNode").Tag = ConnectionPanel .Nodes("ConnectionNode").Nodes("ProxyNode").Tag = ProxyPanel + .Nodes("ConnectionNode").Nodes("CooperateNode").Tag = CooperatePanel + .Nodes("ConnectionNode").Nodes("ShortUrlNode").Tag = ShortUrlPanel .SelectedNode = .Nodes(0) End With From svnnotify @ sourceforge.jp Mon Dec 27 17:02:41 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 27 Dec 2010 17:02:41 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNjJdICDov73liqDjgZfjgZ/jg47jg7zjg4k=?= =?utf-8?b?44Gu6Iux6Kqe44Oq44K944O844K56L+95Yqg?= Message-ID: <1293436961.007004.27385.nullmailer@users.sourceforge.jp> Revision: 1262 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1262 Author: f_swallow Date: 2010-12-27 17:02:40 +0900 (Mon, 27 Dec 2010) Log Message: ----------- 追加したノードの英語リソース追加 Modified Paths: -------------- trunk/Tween/AppendSettingDialog.Designer.vb trunk/Tween/AppendSettingDialog.en.resx trunk/Tween/AppendSettingDialog.resx -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.Designer.vb =================================================================== --- trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-27 07:24:29 UTC (rev 1261) +++ trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-27 08:02:40 UTC (rev 1262) @@ -101,20 +101,12 @@ Me.CheckMinimizeToTray = New System.Windows.Forms.CheckBox() Me.CheckReadOldPosts = New System.Windows.Forms.CheckBox() Me.TweetActPanel = New System.Windows.Forms.Panel() - Me.TextBitlyPw = New System.Windows.Forms.TextBox() Me.ComboBoxPostKeySelect = New System.Windows.Forms.ComboBox() Me.Label27 = New System.Windows.Forms.Label() Me.CheckRetweetNoConfirm = New System.Windows.Forms.CheckBox() - Me.TextBitlyId = New System.Windows.Forms.TextBox() Me.Label12 = New System.Windows.Forms.Label() - Me.Label77 = New System.Windows.Forms.Label() Me.CheckUseRecommendStatus = New System.Windows.Forms.CheckBox() - Me.Label76 = New System.Windows.Forms.Label() Me.StatusText = New System.Windows.Forms.TextBox() - Me.ComboBoxAutoShortUrlFirst = New System.Windows.Forms.ComboBox() - Me.Label71 = New System.Windows.Forms.Label() - Me.CheckTinyURL = New System.Windows.Forms.CheckBox() - Me.CheckAutoConvertUrl = New System.Windows.Forms.CheckBox() Me.PreviewPanel = New System.Windows.Forms.Panel() Me.ReplyIconStateCombo = New System.Windows.Forms.ComboBox() Me.Label72 = New System.Windows.Forms.Label() @@ -204,12 +196,6 @@ Me.lblSelf = New System.Windows.Forms.Label() Me.ButtonBackToDefaultFontColor2 = New System.Windows.Forms.Button() Me.ConnectionPanel = New System.Windows.Forms.Panel() - Me.CheckNicoms = New System.Windows.Forms.CheckBox() - Me.Label60 = New System.Windows.Forms.Label() - Me.ComboBoxOutputzUrlmode = New System.Windows.Forms.ComboBox() - Me.Label59 = New System.Windows.Forms.Label() - Me.TextBoxOutputzKey = New System.Windows.Forms.TextBox() - Me.CheckOutputz = New System.Windows.Forms.CheckBox() Me.CheckEnableBasicAuth = New System.Windows.Forms.CheckBox() Me.TwitterSearchAPIText = New System.Windows.Forms.TextBox() Me.Label31 = New System.Windows.Forms.Label() @@ -232,12 +218,26 @@ Me.TextProxyPort = New System.Windows.Forms.TextBox() Me.TextProxyAddress = New System.Windows.Forms.TextBox() Me.LabelProxyPort = New System.Windows.Forms.Label() + Me.CooperatePanel = New System.Windows.Forms.Panel() + Me.CheckOutputz = New System.Windows.Forms.CheckBox() + Me.CheckNicoms = New System.Windows.Forms.CheckBox() + Me.TextBoxOutputzKey = New System.Windows.Forms.TextBox() + Me.Label60 = New System.Windows.Forms.Label() + Me.Label59 = New System.Windows.Forms.Label() + Me.ComboBoxOutputzUrlmode = New System.Windows.Forms.ComboBox() + Me.ShortUrlPanel = New System.Windows.Forms.Panel() + Me.CheckTinyURL = New System.Windows.Forms.CheckBox() + Me.TextBitlyPw = New System.Windows.Forms.TextBox() + Me.CheckAutoConvertUrl = New System.Windows.Forms.CheckBox() + Me.Label71 = New System.Windows.Forms.Label() + Me.ComboBoxAutoShortUrlFirst = New System.Windows.Forms.ComboBox() + Me.Label76 = New System.Windows.Forms.Label() + Me.Label77 = New System.Windows.Forms.Label() + Me.TextBitlyId = New System.Windows.Forms.TextBox() Me.FontDialog1 = New System.Windows.Forms.FontDialog() Me.ColorDialog1 = New System.Windows.Forms.ColorDialog() Me.Cancel = New System.Windows.Forms.Button() Me.Save = New System.Windows.Forms.Button() - Me.CooperatePanel = New System.Windows.Forms.Panel() - Me.ShortUrlPanel = New System.Windows.Forms.Panel() CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SplitContainer1.Panel1.SuspendLayout() Me.SplitContainer1.Panel2.SuspendLayout() @@ -269,10 +269,12 @@ ' 'SplitContainer1.Panel1 ' + resources.ApplyResources(Me.SplitContainer1.Panel1, "SplitContainer1.Panel1") Me.SplitContainer1.Panel1.Controls.Add(Me.TreeView1) ' 'SplitContainer1.Panel2 ' + resources.ApplyResources(Me.SplitContainer1.Panel2, "SplitContainer1.Panel2") Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Control Me.SplitContainer1.Panel2.Controls.Add(Me.BasedPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) @@ -293,8 +295,8 @@ ' 'TreeView1 ' + resources.ApplyResources(Me.TreeView1, "TreeView1") Me.TreeView1.Cursor = System.Windows.Forms.Cursors.Hand - resources.ApplyResources(Me.TreeView1, "TreeView1") Me.TreeView1.HideSelection = False Me.TreeView1.Name = "TreeView1" Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {CType(resources.GetObject("TreeView1.Nodes"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes1"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes2"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes3"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes4"), System.Windows.Forms.TreeNode)}) @@ -302,6 +304,7 @@ ' 'BasedPanel ' + resources.ApplyResources(Me.BasedPanel, "BasedPanel") Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) Me.BasedPanel.Controls.Add(Me.Label6) @@ -314,7 +317,6 @@ Me.BasedPanel.Controls.Add(Me.Label2) Me.BasedPanel.Controls.Add(Me.Username) Me.BasedPanel.Controls.Add(Me.Password) - resources.ApplyResources(Me.BasedPanel, "BasedPanel") Me.BasedPanel.Name = "BasedPanel" ' 'AuthBasicRadio @@ -344,14 +346,14 @@ ' 'AuthUserLabel ' + resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") Me.AuthUserLabel.Name = "AuthUserLabel" ' 'AuthStateLabel ' + resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") Me.AuthStateLabel.Name = "AuthStateLabel" ' 'Label4 @@ -388,6 +390,7 @@ ' 'GetPeriodPanel ' + resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) Me.GetPeriodPanel.Controls.Add(Me.Label3) Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) @@ -403,7 +406,6 @@ Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) Me.GetPeriodPanel.Controls.Add(Me.Label5) Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) - resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") Me.GetPeriodPanel.Name = "GetPeriodPanel" ' 'TimelinePeriod @@ -486,11 +488,11 @@ ' 'StartupPanel ' + resources.ApplyResources(Me.StartupPanel, "StartupPanel") Me.StartupPanel.Controls.Add(Me.StartupReaded) Me.StartupPanel.Controls.Add(Me.CheckStartupFollowers) Me.StartupPanel.Controls.Add(Me.CheckStartupVersion) Me.StartupPanel.Controls.Add(Me.chkGetFav) - resources.ApplyResources(Me.StartupPanel, "StartupPanel") Me.StartupPanel.Name = "StartupPanel" ' 'StartupReaded @@ -519,6 +521,7 @@ ' 'GetCountPanel ' + resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") Me.GetCountPanel.Controls.Add(Me.Label30) Me.GetCountPanel.Controls.Add(Me.Label28) Me.GetCountPanel.Controls.Add(Me.Label19) @@ -532,7 +535,6 @@ Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) Me.GetCountPanel.Controls.Add(Me.Label67) Me.GetCountPanel.Controls.Add(Me.TextCountApi) - resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") Me.GetCountPanel.Name = "GetCountPanel" ' 'Label30 @@ -603,10 +605,10 @@ ' 'UserStreamPanel ' + resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") Me.UserStreamPanel.Controls.Add(Me.UserstreamPeriod) Me.UserStreamPanel.Controls.Add(Me.StartupUserstreamCheck) Me.UserStreamPanel.Controls.Add(Me.Label83) - resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") Me.UserStreamPanel.Name = "UserStreamPanel" ' 'UserstreamPeriod @@ -627,6 +629,7 @@ ' 'ActionPanel ' + resources.ApplyResources(Me.ActionPanel, "ActionPanel") Me.ActionPanel.Controls.Add(Me.GroupBox3) Me.ActionPanel.Controls.Add(Me.CheckHashSupple) Me.ActionPanel.Controls.Add(Me.CheckAtIdSupple) @@ -642,11 +645,11 @@ Me.ActionPanel.Controls.Add(Me.CheckCloseToExit) Me.ActionPanel.Controls.Add(Me.CheckMinimizeToTray) Me.ActionPanel.Controls.Add(Me.CheckReadOldPosts) - resources.ApplyResources(Me.ActionPanel, "ActionPanel") Me.ActionPanel.Name = "ActionPanel" ' 'GroupBox3 ' + resources.ApplyResources(Me.GroupBox3, "GroupBox3") Me.GroupBox3.Controls.Add(Me.HotkeyCheck) Me.GroupBox3.Controls.Add(Me.HotkeyCode) Me.GroupBox3.Controls.Add(Me.HotkeyText) @@ -654,7 +657,6 @@ Me.GroupBox3.Controls.Add(Me.HotkeyAlt) Me.GroupBox3.Controls.Add(Me.HotkeyShift) Me.GroupBox3.Controls.Add(Me.HotkeyCtrl) - resources.ApplyResources(Me.GroupBox3, "GroupBox3") Me.GroupBox3.Name = "GroupBox3" Me.GroupBox3.TabStop = False ' @@ -745,9 +747,9 @@ ' 'Label15 ' + resources.ApplyResources(Me.Label15, "Label15") Me.Label15.BackColor = System.Drawing.SystemColors.ActiveCaption Me.Label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText - resources.ApplyResources(Me.Label15, "Label15") Me.Label15.Name = "Label15" ' 'BrowserPathText @@ -786,26 +788,21 @@ ' 'TweetActPanel ' + resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") Me.TweetActPanel.Controls.Add(Me.ComboBoxPostKeySelect) Me.TweetActPanel.Controls.Add(Me.Label27) Me.TweetActPanel.Controls.Add(Me.CheckRetweetNoConfirm) Me.TweetActPanel.Controls.Add(Me.Label12) Me.TweetActPanel.Controls.Add(Me.CheckUseRecommendStatus) Me.TweetActPanel.Controls.Add(Me.StatusText) - resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") Me.TweetActPanel.Name = "TweetActPanel" ' - 'TextBitlyPw - ' - resources.ApplyResources(Me.TextBitlyPw, "TextBitlyPw") - Me.TextBitlyPw.Name = "TextBitlyPw" - ' 'ComboBoxPostKeySelect ' + resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") Me.ComboBoxPostKeySelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxPostKeySelect.FormattingEnabled = True Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {resources.GetString("ComboBoxPostKeySelect.Items"), resources.GetString("ComboBoxPostKeySelect.Items1"), resources.GetString("ComboBoxPostKeySelect.Items2")}) - resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") Me.ComboBoxPostKeySelect.Name = "ComboBoxPostKeySelect" ' 'Label27 @@ -819,64 +816,25 @@ Me.CheckRetweetNoConfirm.Name = "CheckRetweetNoConfirm" Me.CheckRetweetNoConfirm.UseVisualStyleBackColor = True ' - 'TextBitlyId - ' - resources.ApplyResources(Me.TextBitlyId, "TextBitlyId") - Me.TextBitlyId.Name = "TextBitlyId" - ' 'Label12 ' resources.ApplyResources(Me.Label12, "Label12") Me.Label12.Name = "Label12" ' - 'Label77 - ' - resources.ApplyResources(Me.Label77, "Label77") - Me.Label77.Name = "Label77" - ' 'CheckUseRecommendStatus ' resources.ApplyResources(Me.CheckUseRecommendStatus, "CheckUseRecommendStatus") Me.CheckUseRecommendStatus.Name = "CheckUseRecommendStatus" Me.CheckUseRecommendStatus.UseVisualStyleBackColor = True ' - 'Label76 - ' - resources.ApplyResources(Me.Label76, "Label76") - Me.Label76.Name = "Label76" - ' 'StatusText ' resources.ApplyResources(Me.StatusText, "StatusText") Me.StatusText.Name = "StatusText" ' - 'ComboBoxAutoShortUrlFirst - ' - Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True - Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4"), resources.GetString("ComboBoxAutoShortUrlFirst.Items5")}) - resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") - Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" - ' - 'Label71 - ' - resources.ApplyResources(Me.Label71, "Label71") - Me.Label71.Name = "Label71" - ' - 'CheckTinyURL - ' - resources.ApplyResources(Me.CheckTinyURL, "CheckTinyURL") - Me.CheckTinyURL.Name = "CheckTinyURL" - Me.CheckTinyURL.UseVisualStyleBackColor = True - ' - 'CheckAutoConvertUrl - ' - resources.ApplyResources(Me.CheckAutoConvertUrl, "CheckAutoConvertUrl") - Me.CheckAutoConvertUrl.Name = "CheckAutoConvertUrl" - Me.CheckAutoConvertUrl.UseVisualStyleBackColor = True - ' 'PreviewPanel ' + resources.ApplyResources(Me.PreviewPanel, "PreviewPanel") Me.PreviewPanel.Controls.Add(Me.ReplyIconStateCombo) Me.PreviewPanel.Controls.Add(Me.Label72) Me.PreviewPanel.Controls.Add(Me.ChkNewMentionsBlink) @@ -894,15 +852,14 @@ Me.PreviewPanel.Controls.Add(Me.cmbNameBalloon) Me.PreviewPanel.Controls.Add(Me.CheckDispUsername) Me.PreviewPanel.Controls.Add(Me.CheckBox3) - resources.ApplyResources(Me.PreviewPanel, "PreviewPanel") Me.PreviewPanel.Name = "PreviewPanel" ' 'ReplyIconStateCombo ' + resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") Me.ReplyIconStateCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ReplyIconStateCombo.FormattingEnabled = True Me.ReplyIconStateCombo.Items.AddRange(New Object() {resources.GetString("ReplyIconStateCombo.Items"), resources.GetString("ReplyIconStateCombo.Items1"), resources.GetString("ReplyIconStateCombo.Items2")}) - resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") Me.ReplyIconStateCombo.Name = "ReplyIconStateCombo" ' 'Label72 @@ -937,10 +894,10 @@ ' 'LanguageCombo ' + resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") Me.LanguageCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.LanguageCombo.FormattingEnabled = True Me.LanguageCombo.Items.AddRange(New Object() {resources.GetString("LanguageCombo.Items"), resources.GetString("LanguageCombo.Items1"), resources.GetString("LanguageCombo.Items2"), resources.GetString("LanguageCombo.Items3")}) - resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") Me.LanguageCombo.Name = "LanguageCombo" ' 'Label13 @@ -973,10 +930,10 @@ ' 'ComboDispTitle ' + resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") Me.ComboDispTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboDispTitle.FormattingEnabled = True Me.ComboDispTitle.Items.AddRange(New Object() {resources.GetString("ComboDispTitle.Items"), resources.GetString("ComboDispTitle.Items1"), resources.GetString("ComboDispTitle.Items2"), resources.GetString("ComboDispTitle.Items3"), resources.GetString("ComboDispTitle.Items4"), resources.GetString("ComboDispTitle.Items5"), resources.GetString("ComboDispTitle.Items6"), resources.GetString("ComboDispTitle.Items7")}) - resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") Me.ComboDispTitle.Name = "ComboDispTitle" ' 'Label45 @@ -986,10 +943,10 @@ ' 'cmbNameBalloon ' + resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") Me.cmbNameBalloon.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.cmbNameBalloon.FormattingEnabled = True Me.cmbNameBalloon.Items.AddRange(New Object() {resources.GetString("cmbNameBalloon.Items"), resources.GetString("cmbNameBalloon.Items1"), resources.GetString("cmbNameBalloon.Items2")}) - resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") Me.cmbNameBalloon.Name = "cmbNameBalloon" ' 'CheckDispUsername @@ -1006,6 +963,7 @@ ' 'TweetPrvPanel ' + resources.ApplyResources(Me.TweetPrvPanel, "TweetPrvPanel") Me.TweetPrvPanel.Controls.Add(Me.Label47) Me.TweetPrvPanel.Controls.Add(Me.LabelDateTimeFormatApplied) Me.TweetPrvPanel.Controls.Add(Me.Label62) @@ -1018,7 +976,6 @@ Me.TweetPrvPanel.Controls.Add(Me.CheckShowGrid) Me.TweetPrvPanel.Controls.Add(Me.chkUnreadStyle) Me.TweetPrvPanel.Controls.Add(Me.OneWayLv) - resources.ApplyResources(Me.TweetPrvPanel, "TweetPrvPanel") Me.TweetPrvPanel.Name = "TweetPrvPanel" ' 'Label47 @@ -1056,10 +1013,10 @@ ' 'IconSize ' + resources.ApplyResources(Me.IconSize, "IconSize") Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.IconSize.FormattingEnabled = True Me.IconSize.Items.AddRange(New Object() {resources.GetString("IconSize.Items"), resources.GetString("IconSize.Items1"), resources.GetString("IconSize.Items2"), resources.GetString("IconSize.Items3"), resources.GetString("IconSize.Items4")}) - resources.ApplyResources(Me.IconSize, "IconSize") Me.IconSize.Name = "IconSize" ' 'TextBox3 @@ -1093,12 +1050,13 @@ ' 'FontPanel ' + resources.ApplyResources(Me.FontPanel, "FontPanel") Me.FontPanel.Controls.Add(Me.GroupBox1) - resources.ApplyResources(Me.FontPanel, "FontPanel") Me.FontPanel.Name = "FontPanel" ' 'GroupBox1 ' + resources.ApplyResources(Me.GroupBox1, "GroupBox1") Me.GroupBox1.Controls.Add(Me.btnRetweet) Me.GroupBox1.Controls.Add(Me.lblRetweet) Me.GroupBox1.Controls.Add(Me.Label80) @@ -1124,7 +1082,6 @@ Me.GroupBox1.Controls.Add(Me.btnListFont) Me.GroupBox1.Controls.Add(Me.lblListFont) Me.GroupBox1.Controls.Add(Me.Label61) - resources.ApplyResources(Me.GroupBox1, "GroupBox1") Me.GroupBox1.Name = "GroupBox1" Me.GroupBox1.TabStop = False ' @@ -1136,8 +1093,8 @@ ' 'lblRetweet ' + resources.ApplyResources(Me.lblRetweet, "lblRetweet") Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblRetweet, "lblRetweet") Me.lblRetweet.Name = "lblRetweet" ' 'Label80 @@ -1159,8 +1116,8 @@ ' 'lblDetailLink ' + resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") Me.lblDetailLink.Name = "lblDetailLink" ' 'Label18 @@ -1176,8 +1133,8 @@ ' 'lblUnread ' + resources.ApplyResources(Me.lblUnread, "lblUnread") Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblUnread, "lblUnread") Me.lblUnread.Name = "lblUnread" ' 'Label20 @@ -1193,8 +1150,8 @@ ' 'lblDetailBackcolor ' + resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") Me.lblDetailBackcolor.Name = "lblDetailBackcolor" ' 'Label37 @@ -1210,8 +1167,8 @@ ' 'lblDetail ' + resources.ApplyResources(Me.lblDetail, "lblDetail") Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblDetail, "lblDetail") Me.lblDetail.Name = "lblDetail" ' 'Label26 @@ -1227,8 +1184,8 @@ ' 'lblOWL ' + resources.ApplyResources(Me.lblOWL, "lblOWL") Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblOWL, "lblOWL") Me.lblOWL.Name = "lblOWL" ' 'Label24 @@ -1244,8 +1201,8 @@ ' 'lblFav ' + resources.ApplyResources(Me.lblFav, "lblFav") Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblFav, "lblFav") Me.lblFav.Name = "lblFav" ' 'Label22 @@ -1261,8 +1218,8 @@ ' 'lblListFont ' + resources.ApplyResources(Me.lblListFont, "lblListFont") Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblListFont, "lblListFont") Me.lblListFont.Name = "lblListFont" ' 'Label61 @@ -1272,12 +1229,13 @@ ' 'FontPanel2 ' + resources.ApplyResources(Me.FontPanel2, "FontPanel2") Me.FontPanel2.Controls.Add(Me.GroupBox5) - resources.ApplyResources(Me.FontPanel2, "FontPanel2") Me.FontPanel2.Name = "FontPanel2" ' 'GroupBox5 ' + resources.ApplyResources(Me.GroupBox5, "GroupBox5") Me.GroupBox5.Controls.Add(Me.Label65) Me.GroupBox5.Controls.Add(Me.Label52) Me.GroupBox5.Controls.Add(Me.Label49) @@ -1306,7 +1264,6 @@ Me.GroupBox5.Controls.Add(Me.lblAtSelf) Me.GroupBox5.Controls.Add(Me.lblSelf) Me.GroupBox5.Controls.Add(Me.ButtonBackToDefaultFontColor2) - resources.ApplyResources(Me.GroupBox5, "GroupBox5") Me.GroupBox5.Name = "GroupBox5" Me.GroupBox5.TabStop = False ' @@ -1411,56 +1368,56 @@ ' 'lblInputFont ' + resources.ApplyResources(Me.lblInputFont, "lblInputFont") Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblInputFont, "lblInputFont") Me.lblInputFont.Name = "lblInputFont" ' 'lblInputBackcolor ' + resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") Me.lblInputBackcolor.Name = "lblInputBackcolor" ' 'lblAtTo ' + resources.ApplyResources(Me.lblAtTo, "lblAtTo") Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblAtTo, "lblAtTo") Me.lblAtTo.Name = "lblAtTo" ' 'lblListBackcolor ' + resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") Me.lblListBackcolor.Name = "lblListBackcolor" ' 'lblAtFromTarget ' + resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") Me.lblAtFromTarget.Name = "lblAtFromTarget" ' 'lblAtTarget ' + resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") Me.lblAtTarget.Name = "lblAtTarget" ' 'lblTarget ' + resources.ApplyResources(Me.lblTarget, "lblTarget") Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblTarget, "lblTarget") Me.lblTarget.Name = "lblTarget" ' 'lblAtSelf ' + resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") Me.lblAtSelf.Name = "lblAtSelf" ' 'lblSelf ' + resources.ApplyResources(Me.lblSelf, "lblSelf") Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - resources.ApplyResources(Me.lblSelf, "lblSelf") Me.lblSelf.Name = "lblSelf" ' 'ButtonBackToDefaultFontColor2 @@ -1471,6 +1428,7 @@ ' 'ConnectionPanel ' + resources.ApplyResources(Me.ConnectionPanel, "ConnectionPanel") Me.ConnectionPanel.Controls.Add(Me.CheckEnableBasicAuth) Me.ConnectionPanel.Controls.Add(Me.TwitterSearchAPIText) Me.ConnectionPanel.Controls.Add(Me.Label31) @@ -1480,44 +1438,8 @@ Me.ConnectionPanel.Controls.Add(Me.Label64) Me.ConnectionPanel.Controls.Add(Me.ConnectionTimeOut) Me.ConnectionPanel.Controls.Add(Me.Label63) - resources.ApplyResources(Me.ConnectionPanel, "ConnectionPanel") Me.ConnectionPanel.Name = "ConnectionPanel" ' - 'CheckNicoms - ' - resources.ApplyResources(Me.CheckNicoms, "CheckNicoms") - Me.CheckNicoms.Name = "CheckNicoms" - Me.CheckNicoms.UseVisualStyleBackColor = True - ' - 'Label60 - ' - resources.ApplyResources(Me.Label60, "Label60") - Me.Label60.Name = "Label60" - ' - 'ComboBoxOutputzUrlmode - ' - Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxOutputzUrlmode.FormattingEnabled = True - Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {resources.GetString("ComboBoxOutputzUrlmode.Items"), resources.GetString("ComboBoxOutputzUrlmode.Items1")}) - resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") - Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" - ' - 'Label59 - ' - resources.ApplyResources(Me.Label59, "Label59") - Me.Label59.Name = "Label59" - ' - 'TextBoxOutputzKey - ' - resources.ApplyResources(Me.TextBoxOutputzKey, "TextBoxOutputzKey") - Me.TextBoxOutputzKey.Name = "TextBoxOutputzKey" - ' - 'CheckOutputz - ' - resources.ApplyResources(Me.CheckOutputz, "CheckOutputz") - Me.CheckOutputz.Name = "CheckOutputz" - Me.CheckOutputz.UseVisualStyleBackColor = True - ' 'CheckEnableBasicAuth ' resources.ApplyResources(Me.CheckEnableBasicAuth, "CheckEnableBasicAuth") @@ -1569,6 +1491,7 @@ ' 'ProxyPanel ' + resources.ApplyResources(Me.ProxyPanel, "ProxyPanel") Me.ProxyPanel.Controls.Add(Me.Label55) Me.ProxyPanel.Controls.Add(Me.TextProxyPassword) Me.ProxyPanel.Controls.Add(Me.RadioProxyNone) @@ -1581,7 +1504,6 @@ Me.ProxyPanel.Controls.Add(Me.TextProxyPort) Me.ProxyPanel.Controls.Add(Me.TextProxyAddress) Me.ProxyPanel.Controls.Add(Me.LabelProxyPort) - resources.ApplyResources(Me.ProxyPanel, "ProxyPanel") Me.ProxyPanel.Name = "ProxyPanel" ' 'Label55 @@ -1652,34 +1574,55 @@ resources.ApplyResources(Me.LabelProxyPort, "LabelProxyPort") Me.LabelProxyPort.Name = "LabelProxyPort" ' - 'Cancel - ' - Me.Cancel.CausesValidation = False - Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel - resources.ApplyResources(Me.Cancel, "Cancel") - Me.Cancel.Name = "Cancel" - Me.Cancel.UseVisualStyleBackColor = True - ' - 'Save - ' - Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK - resources.ApplyResources(Me.Save, "Save") - Me.Save.Name = "Save" - Me.Save.UseVisualStyleBackColor = True - ' 'CooperatePanel ' + resources.ApplyResources(Me.CooperatePanel, "CooperatePanel") Me.CooperatePanel.Controls.Add(Me.CheckOutputz) Me.CooperatePanel.Controls.Add(Me.CheckNicoms) Me.CooperatePanel.Controls.Add(Me.TextBoxOutputzKey) Me.CooperatePanel.Controls.Add(Me.Label60) Me.CooperatePanel.Controls.Add(Me.Label59) Me.CooperatePanel.Controls.Add(Me.ComboBoxOutputzUrlmode) - resources.ApplyResources(Me.CooperatePanel, "CooperatePanel") Me.CooperatePanel.Name = "CooperatePanel" ' + 'CheckOutputz + ' + resources.ApplyResources(Me.CheckOutputz, "CheckOutputz") + Me.CheckOutputz.Name = "CheckOutputz" + Me.CheckOutputz.UseVisualStyleBackColor = True + ' + 'CheckNicoms + ' + resources.ApplyResources(Me.CheckNicoms, "CheckNicoms") + Me.CheckNicoms.Name = "CheckNicoms" + Me.CheckNicoms.UseVisualStyleBackColor = True + ' + 'TextBoxOutputzKey + ' + resources.ApplyResources(Me.TextBoxOutputzKey, "TextBoxOutputzKey") + Me.TextBoxOutputzKey.Name = "TextBoxOutputzKey" + ' + 'Label60 + ' + resources.ApplyResources(Me.Label60, "Label60") + Me.Label60.Name = "Label60" + ' + 'Label59 + ' + resources.ApplyResources(Me.Label59, "Label59") + Me.Label59.Name = "Label59" + ' + 'ComboBoxOutputzUrlmode + ' + resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") + Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboBoxOutputzUrlmode.FormattingEnabled = True + Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {resources.GetString("ComboBoxOutputzUrlmode.Items"), resources.GetString("ComboBoxOutputzUrlmode.Items1")}) + Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" + ' 'ShortUrlPanel ' + resources.ApplyResources(Me.ShortUrlPanel, "ShortUrlPanel") Me.ShortUrlPanel.Controls.Add(Me.CheckTinyURL) Me.ShortUrlPanel.Controls.Add(Me.TextBitlyPw) Me.ShortUrlPanel.Controls.Add(Me.CheckAutoConvertUrl) @@ -1688,9 +1631,68 @@ Me.ShortUrlPanel.Controls.Add(Me.Label76) Me.ShortUrlPanel.Controls.Add(Me.Label77) Me.ShortUrlPanel.Controls.Add(Me.TextBitlyId) - resources.ApplyResources(Me.ShortUrlPanel, "ShortUrlPanel") Me.ShortUrlPanel.Name = "ShortUrlPanel" ' + 'CheckTinyURL + ' + resources.ApplyResources(Me.CheckTinyURL, "CheckTinyURL") + Me.CheckTinyURL.Name = "CheckTinyURL" + Me.CheckTinyURL.UseVisualStyleBackColor = True + ' + 'TextBitlyPw + ' + resources.ApplyResources(Me.TextBitlyPw, "TextBitlyPw") + Me.TextBitlyPw.Name = "TextBitlyPw" + ' + 'CheckAutoConvertUrl + ' + resources.ApplyResources(Me.CheckAutoConvertUrl, "CheckAutoConvertUrl") + Me.CheckAutoConvertUrl.Name = "CheckAutoConvertUrl" + Me.CheckAutoConvertUrl.UseVisualStyleBackColor = True + ' + 'Label71 + ' + resources.ApplyResources(Me.Label71, "Label71") + Me.Label71.Name = "Label71" + ' + 'ComboBoxAutoShortUrlFirst + ' + resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") + Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True + Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4"), resources.GetString("ComboBoxAutoShortUrlFirst.Items5")}) + Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" + ' + 'Label76 + ' + resources.ApplyResources(Me.Label76, "Label76") + Me.Label76.Name = "Label76" + ' + 'Label77 + ' + resources.ApplyResources(Me.Label77, "Label77") + Me.Label77.Name = "Label77" + ' + 'TextBitlyId + ' + resources.ApplyResources(Me.TextBitlyId, "TextBitlyId") + Me.TextBitlyId.Name = "TextBitlyId" + ' + 'Cancel + ' + resources.ApplyResources(Me.Cancel, "Cancel") + Me.Cancel.CausesValidation = False + Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel + Me.Cancel.Name = "Cancel" + Me.Cancel.UseVisualStyleBackColor = True + ' + 'Save + ' + resources.ApplyResources(Me.Save, "Save") + Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK + Me.Save.Name = "Save" + Me.Save.UseVisualStyleBackColor = True + ' 'AppendSettingDialog ' Me.AcceptButton = Me.Save Modified: trunk/Tween/AppendSettingDialog.en.resx =================================================================== --- trunk/Tween/AppendSettingDialog.en.resx 2010-12-27 07:24:29 UTC (rev 1261) +++ trunk/Tween/AppendSettingDialog.en.resx 2010-12-27 08:02:40 UTC (rev 1262) @@ -189,14 +189,22 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQsAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAKQ29ubmVjdGlvbgYEAAAADkNvbm5lY3Rpb25Ob2RlAP////8GBQAAAAD/////CQUAAAABAAAACQYA - AAAFBgAAAB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tl - ZApJbWFnZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNo - aWxkQ291bnQBAQAAAQABAAEICAgCAAAABgcAAAAFUHJveHkGCAAAAAlQcm94eU5vZGUA/////wkFAAAA - /////wkFAAAAAAAAAAs= + bGRyZW4wCWNoaWxkcmVuMQljaGlsZHJlbjIBAQAAAQABAAQEBAEICAgdU3lzdGVtLldpbmRvd3MuRm9y + bXMuVHJlZU5vZGUCAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlAgAAAB1TeXN0ZW0uV2lu + ZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMAAAAKQ29ubmVjdGlvbgYEAAAADkNvbm5lY3Rpb25O + b2RlAP////8GBQAAAAD/////CQUAAAADAAAACQYAAAAJBwAAAAkIAAAABQYAAAAdU3lzdGVtLldpbmRv + d3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtl + eRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgI + AgAAAAYJAAAABVByb3h5BgoAAAAJUHJveHlOb2RlAP////8JBQAAAP////8JBQAAAAAAAAAFBwAAAB1T + eXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUlu + ZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQB + AQAAAQABAAEICAgCAAAABgwAAAATQ29vcGVyYXRpdmUgU2VydmljZQYNAAAADUNvb3BlcmF0ZU5vZGUA + /////wkFAAAA/////wkFAAAAAAAAAAUIAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAA + AARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4 + EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3VudAEBAAABAAEAAQgICAIAAAAGDwAAAAtTaG9ydGVuIFVS + TAYQAAAADFNob3J0VXJsTm9kZQD/////CQUAAAD/////CQUAAAAAAAAACw== @@ -405,6 +413,12 @@ Play sounds when new status arrived + + 133, 16 + + + Make read own tweet + Sounds will play when you enable this option and set sound file for each tabs. @@ -462,24 +476,6 @@ Use Default [TWNvNNN] - - 149, 12 - - - Primary URLshorten service - - - 145, 16 - - - Resolve shortend URLs - - - 205, 16 - - - Auto shorten Urls in posting status - Don't notify @@ -621,12 +617,6 @@ Show separator line - - 133, 16 - - - Make read own tweet - 393, 16 @@ -804,30 +794,6 @@ Font && Color - - 196, 16 - - - Shorten nicovideo urls by nico.ms - - - 107, 12 - - - URI of your Outputz - - - 86, 12 - - - Your secret key - - - 87, 16 - - - Use Outputz - 241, 16 @@ -900,6 +866,48 @@ &Port + + 87, 16 + + + Use Outputz + + + 196, 16 + + + Shorten nicovideo urls by nico.ms + + + 107, 12 + + + URI of your Outputz + + + 86, 12 + + + Your secret key + + + 145, 16 + + + Resolve shortend URLs + + + 205, 16 + + + Auto shorten Urls in posting status + + + 149, 12 + + + Primary URLshorten service + Cancel Modified: trunk/Tween/AppendSettingDialog.resx =================================================================== --- trunk/Tween/AppendSettingDialog.resx 2010-12-27 07:24:29 UTC (rev 1261) +++ trunk/Tween/AppendSettingDialog.resx 2010-12-27 08:02:40 UTC (rev 1262) @@ -117,24 +117,150 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ProxyPanel + + + + 7 + - - Top + + NoControl - - + True + + none + + + NoControl + + + 24 + + + False + + + 12 + - - 0, 0 + + 100, 16 - - Fill + + 90, 22 - - 0, 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15 + + + OK + + + NoControl + + + 16*16 + + + True + + + 1 + + + LabelProxyPassword + + + 11 + + + PreviewPanel + + + 6 + + + True + + + 0 + + + UserStreamPanel + + + 使用しない + + + 1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 163, 12 + + + 83, 290 + + + 10 + + + TextBoxOutputzKey + + + BasedPanel + + + 9 + + + True + + + 154, 16 + + + False + + + 0 + + + 7 + + + 16, 45 + + + 217, 90 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GetPeriodPanel + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 339, 215 + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w @@ -161,6275 +287,6149 @@ clN0cmVhbQYUAAAADlVzZXJTdHJlYW1Ob2RlAP////8JBQAAAP////8JBQAAAAAAAAAL - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAG5YuV5L2cBgQAAAAKQWN0aW9uTm9kZQD/////BgUAAAAA/////wkFAAAAAQAAAAkGAAAABQYAAAAd - U3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJ - bmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50 - AQEAAAEAAQABCAgIAgAAAAYHAAAAGOODhOOCpOODvOODiOaZguOBruWLleS9nAYIAAAADFR3ZWV0QWN0 - Tm9kZQD/////CQUAAAD/////CQUAAAAAAAAACw== - + + LanguageCombo - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAG6KGo56S6BgQAAAALUHJldmlld05vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUGAAAA - HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdl - SW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3Vu - dAEBAAABAAEAAQgICAIAAAAGBwAAABLjg6rjgrnjg4jjga7ooajnpLoGCAAAAAxUd2VldFBydk5vZGUA - /////wkFAAAA/////wkFAAAAAAAAAAs= - + + GetPeriodPanel - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAM44OV44Kp44Oz44OIBgQAAAAIRm9udE5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG - AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt - YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD - b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAA3jg5Xjgqnjg7Pjg4gyBggAAAAJRm9udE5vZGUyAP////8J - BQAAAP////8JBQAAAAAAAAAL - + + 16 - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQsAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wCWNoaWxkcmVuMQljaGlsZHJlbjIBAQAAAQABAAQEBAEICAgdU3lzdGVtLldpbmRvd3MuRm9y - bXMuVHJlZU5vZGUCAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlAgAAAB1TeXN0ZW0uV2lu - ZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMAAAAG6YCa5L+hBgQAAAAOQ29ubmVjdGlvbk5vZGUA - /////wYFAAAAAP////8JBQAAAAMAAAAJBgAAAAkHAAAACQgAAAAFBgAAAB1TeXN0ZW0uV2luZG93cy5G - b3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNl - bGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAA - BgkAAAAM44OX44Ot44Kt44K3BgoAAAAJUHJveHlOb2RlAP////8JBQAAAP////8JBQAAAAAAAAAFBwAA - AB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFn - ZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291 - bnQBAQAAAQABAAEICAgCAAAABgwAAAAS6YCj5pC644K144O844OT44K5Bg0AAAANQ29vcGVyYXRlTm9k - ZQD/////CQUAAAD/////CQUAAAAAAAAABQgAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUI - AAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5k - ZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgIAgAAAAYPAAAACeefree4rlVS - TAYQAAAADFNob3J0VXJsTm9kZQD/////CQUAAAD/////CQUAAAAAAAAACw== - + + 171, 16 - - 169, 368 + + 1 - - 0 + + 75, 23 - - TreeView1 + + NoControl - - System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - SplitContainer1.Panel1 + + True - - 0 + + 192, 20 - - SplitContainer1.Panel1 + + cmbNameBalloon - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 104, 19 - - SplitContainer1 + + SplitContainer1.Panel2 - - 0 + + 8 - - True - - + False - - NoControl + + 22, 20 - - 227, 20 + + 13 - - 57, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + 11 - - BASIC + + 11 - - AuthBasicRadio - - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - BasedPanel - - - 0 - - - True - - + NoControl - - 113, 20 + + 自分の発言 - - 93, 16 - - + 1 - - OAuth(xAuth) + + 8 - - AuthOAuthRadio + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 205, 103 - - BasedPanel + + 4 - - 1 + + 自動調整する - - True + + 104, 19 - - NoControl + + 2 - - 22, 22 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 53, 12 + + ShortUrlPanel - - 0 + + True - - 認証方法 + + Fill - - Label6 + + 5 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 339, 165 - - BasedPanel + + 339, 115 - - 2 + + 14 - - NoControl + + 235, 16 - - 305, 64 + + lblOWL - - 75, 23 + + 53, 12 - - 6 + + 7 - - クリア + + 154, 12 - - AuthClearButton + + 5 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - BasedPanel + + 0, 0 - - 3 + + CheckMonospace - - NoControl + + FontPanel2 - - 113, 68 + + 175, 235 - - 149, 14 + + 6 - - 5 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 認証済み + + Label27 - - AuthUserLabel + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 48*48 - - BasedPanel + + HotkeyCtrl - - 4 + + GetPeriodPanel - - NoControl + + 12 - - 113, 54 + + 再起動後有効になります。 - - 112, 14 + + True - - 4 + + 6 - - Not Authenticated + + AppendSettingDialog - - AuthStateLabel + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - BasedPanel + + search.twitter.com - - 5 + + 22, 66 - + True - - NoControl + + 22, 22 - - 22, 54 + + Label44 - - 53, 12 + + Label6 - - 3 + + 0 - - 認証状態 + + Win - - Label4 + + TweetActPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - BasedPanel + + False - - 6 + + 22, 20 - - NoControl + + 68, 19 - - 305, 126 + + 22, 18 - - 75, 23 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + Fill - - 認証する + + Label45 - - AuthorizeButton + + tt h:mm - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleLeft - - BasedPanel + + 2 - - 7 + + 13, 14 - - True + + StatusText - - NoControl + + Label8 - - 22, 112 + + 143, 16 - - 57, 12 + + lblUnread - - 7 + + 読み込んだポストを既読にする - - ユーザー名 + + 通知なし - - Label1 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ShortUrlPanel - - BasedPanel + + GroupBox3 - - 8 + + TweetActPanel - - True + + 9, 198 - - NoControl + + StartupUserstreamCheck - - 22, 133 + + 22, 166 - - 52, 12 + + 2 - - 9 + + 191, 252 - - パスワード + + 169, 368 - - Label2 + + 81, 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + BasedPanel - - 9 + + api.twitter.com - - 113, 109 + + 5 - - 186, 19 + + 0 - + 8 Username - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ShortUrlPanel - - BasedPanel + + GroupBox5 - - 10 + + 12 - - 113, 130 + + GroupBox5 + + twurl.nl + 186, 19 - - 10 + + 1 - - Password + + 片思いユーザーリストを取得する - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 518, 368 - - BasedPanel + + Label23 - - 11 + + 262, 100 - - Fill + + BrowserPathText - - False + + 259, 51 - - 0, 0 + + ProxyPanel - - 518, 368 + + True - - 0 + + 6 - - False + + 片思いを色分けして表示する - - BasedPanel + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 93 - - SplitContainer1.Panel2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + LabelProxyPort - - 258, 21 + + AuthStateLabel - - 65, 19 + + 3 - - 1 + + 94, 12 - - TimelinePeriod + + 113, 68 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - GetPeriodPanel + + OAuth(xAuth) - - 0 + + 公式RTする際に確認をしない - - True + + 22, 20 - - NoControl + + 22, 86 - - 22, 24 + + 7 - - 130, 12 + + 157, 16 - - 0 + + True - - タイムライン更新間隔(秒) + + NoControl - - Label3 + + 認証済み - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + 13 - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 116, 15 - - 122, 216 + + 102, 19 - - 108, 23 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14 + + NoControl - - 再計算 + + StartupPanel - - ButtonApiCalc + + False - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 175, 43 - - GetPeriodPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + ChkNewMentionsBlink - - True + + 8 - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 29, 195 + + English - - 285, 12 + + PreviewPanel - - 13 - - - 投稿時取得が有効のため、投稿のたびにAPIを消費します。 - - - LabelPostAndGet - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + SplitContainer1.Panel2 - - 3 + + This is sample. - - True + + H:mm:ss - + NoControl - - 29, 174 + + 259, 185 - - 23, 12 + + 258, 111 - - 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 999 + + 22, 138 - - MiddleRight + + 349, 12 - - LabelApiUsing + + 41, 134 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 発言一覧への反映間隔(秒) - - GetPeriodPanel + + NoControl - - 4 + + CooperatePanel - - True + + TextCountApiReply - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 138 + + 1 - - 102, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + ConnectionPanel - - Lists更新間隔(秒) + + 0 - - Label33 + + NoControl - + + Label47 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + 58, 19 - - 5 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 258, 135 + + False - - 65, 19 + + 4 - - 11 + + NoControl - - ListsPeriod + + 3 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 278, 104 - - GetPeriodPanel + + 21 - - 6 + + False - + True - - NoControl + + 63, 12 - - 22, 114 + + GroupBox5 - - 137, 12 + + ShortUrlPanel - - 8 + + 174, 12 - - Twitter検索更新間隔(秒) + + GroupBox3 - - Label7 + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 125, 19 - - GetPeriodPanel + + 推奨フッターを使用する[TWNv○○] - - 7 + + True - - 258, 111 + + 1 - - 65, 19 + + NoControl - + 9 - - PubSearchPeriod + + CmbDateTimeFormat - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 175, 143 - - GetPeriodPanel + + False - - 8 + + CheckSortOrderLock - - True + + j.mp - - NoControl + + GroupBox1 - - 22, 66 + + btnTarget - - 123, 12 + + 5 - - 4 + + True - - Mentions更新間隔(秒) + + False - - Label69 + + NoControl - + + 23 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + 13 - - 9 + + 518, 368 - - 258, 63 + + NoControl - - 65, 19 + + GetPeriodPanel - - 5 + + 初回の更新 - - ReplyPeriod + + その人への@返信 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 画面最小化・アイコン時のみバルーンを表示する - - GetPeriodPanel + + 4 - - 10 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 114, 82 - - NoControl + + ReplyIconStateCombo - - 33, 43 + + ConnectionPanel - - 84, 16 + + PreviewPanel - + 2 - - 投稿時取得 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - CheckPostAndGet + + 131, 12 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + OneWayLv - - GetPeriodPanel + + 34, 19 - + + タイトルバーとツールチップにユーザー名を表示 + + + 179, 104 + + 11 - - True + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 251, 43 + + CheckNicoms - - 91, 16 + + H:mm:ss yy/M/d - - 3 + + 113, 54 - - 自動調整する + + MiddleLeft - + + NoControl + + False - - CheckPeriodAdjust + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0 - - GetPeriodPanel + + 22, 18 - - 12 + + 157, 16 - - True + + 58, 19 - - NoControl + + 11 - - 22, 90 + + 90, 22 - - 94, 12 + + (なし) - - 6 + + 65, 19 - - DM更新間隔(秒) + + This is sample. - - Label5 + + 11 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + False - - 258, 87 + + 22, 78 - - 65, 19 + + 5 - - 7 + + GetCountPanel - - DMPeriod + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 175, 193 - - GetPeriodPanel + + GroupBox1 - - 14 + + SplitContainer1 - - Fill + + 408, 22 - - False + + 5 - - 0, 0 + + 75, 22 - - 518, 368 + + FavoritesTextCountApi - - 1 + + 113, 20 - - False + + 186, 19 - - GetPeriodPanel + + Label49 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 22 - - SplitContainer1.Panel2 + + 13 - - 1 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 8 - + NoControl - - 22, 22 + + True - - 166, 16 + + フッター(文末に付加) - - 0 + + NoControl - - 読み込んだポストを既読にする + + GetCountPanel - - StartupReaded + + SplitContainer1.Panel1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 133, 16 - - StartupPanel + + 183, 16 - - 0 + + 102, 12 - - True + + ButtonBackToDefaultFontColor - + NoControl - - 22, 70 + + NoControl - - 174, 16 + + その発言の@先の人の発言 - - 2 + + True - - 片思いユーザーリストを取得する + + NoControl - - CheckStartupFollowers + + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TweetPrvPanel - - StartupPanel + + ConnectionTimeOut - - 1 + + GetCountPanel - - True + + 60, 12 - + NoControl - - 22, 47 + + NoControl - - 129, 16 + + 5 - - 1 + + CheckMinimizeToTray - - 最新版のチェックをする + + GroupBox3 - - CheckStartupVersion - - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - StartupPanel + + False - - 2 + + True - + + 4 + + True - + + UserstreamPeriod + + NoControl - - 22, 93 + + MiddleLeft - - 124, 16 + + 0 - - 3 + + ConnectionPanel - - Favoritesを取得する + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - chkGetFav + + 11 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - StartupPanel + + True - - 3 + + 99, 12 - - Fill + + 9 - - False + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0 + + 11 - - 518, 368 + + UserStreamPanel - - 2 + + NoControl - - False + + 6 - - StartupPanel + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - SplitContainer1.Panel2 + + True - - 2 - - + True - - 22, 186 + + UserStreamPanel - - 117, 12 + + 0, 0 - - 11 + + Label31 - - PublicSearchの取得数 + + True - - Label30 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQsAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wCWNoaWxkcmVuMQljaGlsZHJlbjIBAQAAAQABAAQEBAEICAgdU3lzdGVtLldpbmRvd3MuRm9y + bXMuVHJlZU5vZGUCAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlAgAAAB1TeXN0ZW0uV2lu + ZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMAAAAG6YCa5L+hBgQAAAAOQ29ubmVjdGlvbk5vZGUA + /////wYFAAAAAP////8JBQAAAAMAAAAJBgAAAAkHAAAACQgAAAAFBgAAAB1TeXN0ZW0uV2luZG93cy5G + b3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNl + bGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAA + BgkAAAAM44OX44Ot44Kt44K3BgoAAAAJUHJveHlOb2RlAP////8JBQAAAP////8JBQAAAAAAAAAFBwAA + AB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFn + ZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291 + bnQBAQAAAQABAAEICAgCAAAABgwAAAAS6YCj5pC644K144O844OT44K5Bg0AAAANQ29vcGVyYXRlTm9k + ZQD/////CQUAAAD/////CQUAAAAAAAAABQgAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUI + AAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5k + ZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgIAgAAAAYPAAAACeefree4rlVS + TAYQAAAADFNob3J0VXJsTm9kZQD/////CQUAAAD/////CQUAAAAAAAAACw== + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetCountPanel + + btnAtSelf - - 0 + + GroupBox5 - - True + + 170, 16 - - 22, 136 + + chkTabIconDisp - - 63, 12 + + SplitContainer1.Panel2 - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Fill + + + 102, 19 + + 7 - - 初回の更新 + + 認証する - - Label28 + + 36, 60 - + + CooperatePanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetCountPanel + + 48, 16 - - 1 + + LabelPostAndGet - - True + + 未読Mentions通知アイコン - - 22, 54 + + GroupBox5 - - 87, 12 + + ニックネーム - - 2 + + CheckShowGrid - - Mentions取得数 + + TweetPrvPanel - - Label19 + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - GetCountPanel + + 5 - - 2 + + 13 - - 259, 159 + + リストフォント - - 58, 19 + + 117, 12 - - 10 + + 9 - - FavoritesTextCountApi + + キャンセル - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GetCountPanel + + BasedPanel - - 3 + + Favoritesを取得する - - 259, 185 + + NoControl - - 58, 19 + + 5 - - 12 + + btnAtTo - - SearchTextCountApi + + 背景色 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 15 - - GetCountPanel + + TextProxyPassword - - 4 + + GroupBox1 - + True - - NoControl + + Label63 - - 22, 160 + + 2 - - 99, 12 + + 1 - - 9 + + 0 - - Favoritesの取得数 + + 4 - - Label66 + + GroupBox1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22 - - GetCountPanel - - + 5 - - 259, 135 + + 44, 12 - - 58, 19 + + False - - 8 + + NoControl - - FirstTextCountApi + + Fill - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ActionPanel - - GetCountPanel + + CheckAutoConvertUrl - - 6 + + 通信にHTTPSを使用する - - 259, 112 + + 文字色 - - 58, 19 + + ConnectionPanel - - 6 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetMoreTextCountApi + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ユーザー名 - - GetCountPanel + + 10 - - 7 + + 48, 12 - - True + + System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 NoControl - - 22, 112 + + 有効 - - 79, 12 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + 4 - - 前データの更新 + + SplitContainer1.Panel2 - - Label53 + + GetPeriodPanel - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetCountPanel + + 173, 146 - - 8 + + Disable - - True - - + NoControl - - 22, 86 + + 22, 45 - - 247, 16 + + 11 - - 4 + + btnDetailLink - - 次の項目の更新時の取得数を個別に設定する + + Label32 - - UseChangeGetCount + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ProxyPanel - - GetCountPanel + + FirstTextCountApi - - 9 + + 518, 368 - - 259, 51 + + NoControl - - 58, 19 + + 343, 16 - - 3 + + TweetActPanel - - TextCountApiReply + + 122, 16 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TreeView1 - - GetCountPanel + + btnAtTarget - - 10 + + 175, 17 - - True + + PreviewPanel - + + False + + NoControl - - 22, 24 + + 87, 12 - - 77, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + 216, 106 - - 標準取得件数 + + 7 - - Label67 + + GroupBox1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - GetCountPanel + + 2 - - 11 + + NoControl - - 259, 21 + + 343, 101 - - 58, 19 + + 0, 0 - - 1 + + 2 - - TextCountApi + + 22, 90 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + AuthBasicRadio - - GetCountPanel + + True - - 12 + + NoControl - - Fill + + 1 - - False + + 0 - - 0, 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 518, 368 + + 22, 49 - - 3 + + NoControl - - False + + 604, 374 - - GetCountPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 74, 110 - - SplitContainer1.Panel2 + + 331, 171 - - 3 + + 7 - - 227, 41 + + タイムアウトまでの時間(秒) - - 65, 19 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - UserstreamPeriod + + Twitter検索更新間隔(秒) - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - UserStreamPanel + + 185, 94 - - 0 + + NoControl - + + GroupBox1 + + True - - NoControl + + GroupBox1 - - 22, 20 + + GetCountPanel - - 157, 16 + + 226, 16 - - 0 + + btnUnread - - 起動時に自動的に接続する + + 14 - - StartupUserstreamCheck + + 3 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox3 - - UserStreamPanel + + 65, 19 - - 1 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + Alt - - 22, 45 + + 184, 160 - - 145, 12 + + 4 - - 1 + + 7 - - 発言一覧への反映間隔(秒) + + 251, 43 - - Label83 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - UserStreamPanel + + NoControl - + 2 - - Fill + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + MiddleRight - - 0, 0 + + CheckPostAndGet - - 518, 368 + + True - - 4 + + 1 - - False + + NoControl - - UserStreamPanel + + 173, 21 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 145, 16 - - SplitContainer1.Panel2 + + 背景色 - - 4 + + ShortUrlPanel - - True + + 11 - - NoControl + + 3 - - 4, 15 + + GroupBox5 - - 48, 16 + + 10 - - 0 + + 3 - - 有効 + + 173, 171 - - HotkeyCheck + + Fill - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - GroupBox3 + + 3 - - 0 + + Fill - - True + + ActionPanel - + + 投稿時取得が有効のため、投稿のたびにAPIを消費します。 + + NoControl - - 340, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13, 14 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6 + + 7 - - 0 + + LabelProxyUser - - HotkeyCode + + GroupBox5 - + + GroupBox1 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox3 + + 108, 23 - - 1 + + CheckUseRecommendStatus - - Disable + + Password - - 257, 13 + + 8 - - 77, 19 + + 0 - - 5 + + 14 - - HotkeyText + + 3 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBox3 + + True - + 2 - - True + + ブラウザパス - - NoControl + + 5 - - 211, 15 + + 17 - - 42, 16 + + 6 - - 4 + + 9 - - Win + + ConnectionPanel - - HotkeyWin + + 173, 71 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - GroupBox3 + + 0 - - 3 + + 999 - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + NoControl - - 168, 15 + + 228, 12 - - 39, 16 + + SplitContainer1.Panel1 - - 3 + + GroupBox1 - - Alt + + 13 - - HotkeyAlt + + lblInputBackcolor - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox3 - - - 4 - - + True - + NoControl - - 116, 15 + + MiddleLeft - - 48, 16 + + CheckRetweetNoConfirm - - 2 + + 1 - - Shift + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - HotkeyShift + + Fill - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PreviewPanel - - GroupBox3 + + 22, 178 - - 5 + + 3 - - True + + 8 - - NoControl + + 7 - - 69, 15 + + 0 - - 43, 16 + + TweetActPanel - + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - Ctrl + + サウンドを再生する - - HotkeyCtrl + + OS Default - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - GroupBox3 + + 4 - - 6 + + UserStreamPanel - - 21, 305 + + 1 - - 474, 41 + + 99, 12 - - 14 + + 2 - - ホットキー + + 0 - - GroupBox3 + + 75, 22 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CooperatePanel - - ActionPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + True - - NoControl + + 75, 22 - - 22, 253 + + True - - 157, 16 + + 53, 12 - - 12 + + 5 - - #タグの入力補助を使用する + + SplitContainer1.Panel2 - - CheckHashSupple + + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 42, 12 - - ActionPanel + + 9, 148 - - 1 + + System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 58, 12 - - NoControl + + 11 - - 22, 229 + + 259, 159 - - 153, 16 + + BasedPanel - - 11 + + 0, 0 - - @IDの入力補助を使用する + + ColorDialog1 - - CheckAtIdSupple + + フォント&&色 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 画像リンクがあった場合にサムネイルを表示する - - ActionPanel + + 0 - - 2 - - - True - - + NoControl - - 26, 210 + + GetCountPanel - - 340, 12 + + 7 - - 10 + + MiddleLeft - - 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 + + 14 - - Label57 + + This is sample. - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - ActionPanel + + GetPeriodPanel - - 3 + + 1 - + True - - NoControl + + 521, 374 - - 22, 188 + + アウトプット先のURL - - 183, 16 + + NoControl - - 9 + + GroupBox1 - - Fav操作結果を厳密にチェックする + + 130, 12 - - CheckFavRestrict + + 22, 160 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - ActionPanel + + NoControl - - 4 - - + NoControl - - 418, 158 + + 173, 121 - - 75, 21 - - + 8 - - 参照 + + RadioProxyIE - - Button3 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 入力欄アクティブ時背景色 - - ActionPanel + + CooperatePanel - - 5 + + 6 - - True + + 6 - - NoControl + + TweetPrvPanel - - 22, 20 + + ActionPanel - - 113, 16 + + CheckPeriodAdjust - - 0 + + 8 - - サウンドを再生する + + True - - PlaySnd - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ActionPanel - - + 6 - - True + + 11 - + NoControl - - 22, 275 + + 96, 19 - - 143, 16 + + 215, 285 - - 13 + + 4 - - 自分の発言を既読にする + + Label34 - - chkReadOwnPost + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - ActionPanel + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + btnFav - - NoControl + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 42 + + 14 - - 408, 22 + + True - - 1 + + PublicSearchの取得数 - - タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 + + 340, 16 - - Label15 + + GetCountPanel - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ActionPanel + + 入力欄フォント - - 8 + + NoControl - - 184, 160 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 228, 19 + + System.Windows.Forms.FontDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + 4 - - BrowserPathText + + Label16 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 216, 67 - - ActionPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9 + + GroupBox1 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 145, 12 - - 22, 71 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 100, 16 + + Simplified Chinese - - 2 + + 0 - - 未読管理を行う + + 14 - - UReadMng + + Label80 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - ActionPanel + + M/d tt h:mm:ss - - 10 + + 5 - - True - NoControl - - 21, 164 + + GetCountPanel - - 60, 12 + + 22, 118 - - 6 + + NoControl - - ブラウザパス + + Label14 - - Label44 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ActionPanel - - - 11 - - + True - - NoControl + + 0, 0 - - 22, 114 - - - 171, 16 - - + 4 - - ×ボタンを押したときに終了する + + True - - CheckCloseToExit + + 22, 22 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 58, 19 - - ActionPanel + + Label81 - - 12 + + 10 - - True - - - NoControl - - - 22, 137 - - - 170, 16 - - + 5 - - 最小化したときにアイコン化する + + lblDetailLink - - CheckMinimizeToTray + + 246, 20 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - ActionPanel + + 175, 68 - - 13 + + 305, 126 - - True + + 10 - - NoControl + + ConnectionPanel - - 22, 92 + + Label30 - - 145, 16 + + 23 - - 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 新着時に未読をクリアする + + Ctrl - - CheckReadOldPosts + + 249, 16 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 84, 16 - - ActionPanel + + 22, 229 - - 14 + + Mentionsの新着があるときにウインドウを点滅する - - Fill + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + 18 - - 0, 0 + + 22, 203 - + 518, 368 - - 5 + + 215, 88 - - False + + 0 - - ActionPanel + + 9, 23 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ux.nu - - SplitContainer1.Panel2 + + 13 - - 5 + + 166, 16 - - Enter + + NoControl - - Ctrl+Enter + + 22, 103 - - Shift+Enter + + 75, 22 - - 184, 19 + + 1 - - 246, 20 + + 6, 12 - - 9 + + This is sample. - - ComboBoxPostKeySelect + + 6 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17 - - TweetActPanel + + 新着バルーンのユーザー名 - + 0 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + Label36 - - 22, 22 + + Label77 - - 137, 12 + + GroupBox1 - - 8 + + 1 - - POSTキー(デフォルトEnter) + + 6 - - Label27 + + ConnectionPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label60 - - TweetActPanel + + True - - 1 + + GetPeriodPanel - - True + + 5 - - NoControl + + Label10 - - 24, 50 + + SplitContainer1.Panel2 - - 165, 16 + + ActionPanel - - 10 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 公式RTする際に確認をしない + + 195, 16 - - CheckRetweetNoConfirm + + 168, 15 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + M/d tt h:mm - - TweetActPanel + + CheckHashSupple - - 2 + + 26 - - True + + Label37 - - NoControl + + H:mm:ss M/d - - 23, 94 + + 143, 107 - - 107, 12 + + lblAtTarget - - 11 + + 102, 19 - - フッター(文末に付加) + + Label11 - - Label12 + + 22, 21 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 331, 96 - - TweetActPanel + + ComboBoxAutoShortUrlFirst - - 3 + + False - - True + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + NoControl - - 185, 94 + + 256, 16 - - 195, 16 + + 文字色 - - 12 + + 15 - - 推奨フッターを使用する[TWNv○○] + + 5 - - CheckUseRecommendStatus + + GroupBox5 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 71 - - TweetActPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 185, 116 + + 9 - - 232, 19 + + SearchTextCountApi - + + True + + 13 - - StatusText + + 162, 16 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - TweetActPanel + + GroupBox1 - - 5 + + NoControl - - Fill + + 19 - - False + + 113, 12 - - 0, 0 + + 247, 16 - - 518, 368 + + GroupBox5 - - 6 + + Label83 - - False + + 4 - - TweetActPanel + + 131, 12 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SplitContainer1.Panel2 + + True - - 6 + + 23 - - 通知なし + + True - - アイコン変更 + + False - - アイコン変更&点滅 + + 22, 22 - - 215, 142 + + NoControl - - 136, 20 + + 未読ポストのフォントと色を変更する(低速) - - 8 + + ProxyPanel - - ReplyIconStateCombo + + 22, 191 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - PreviewPanel + + 20 - - 0 + + 19 - + True - - NoControl + + lblDetail - - 22, 145 + + 259, 21 - - 134, 12 + + 22, 66 - - 7 + + True - - 未読Mentions通知アイコン + + 10 - - Label72 + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label15 - - PreviewPanel + + Mentions更新間隔(秒) - - 1 + + 15 - - True + + MiddleLeft - - NoControl + + 22, 24 - - 22, 166 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 256, 16 + + Label33 - - 9 + + GroupBox5 - - Mentionsの新着があるときにウインドウを点滅する + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ChkNewMentionsBlink + + 259, 112 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PreviewPanel + + 9, 98 - - 2 - - + True - - NoControl + + 102, 19 - - 22, 118 + + 新着時に未読をクリアする - - 161, 16 + + 7 - - 6 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - タブに未読アイコンを表示する + + 1 - - chkTabIconDisp + + 69, 15 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - PreviewPanel - - + 3 - - True + + タイムライン更新間隔(秒) - - NoControl + + 0 - - 22, 191 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 243, 16 + + 投稿時取得 - - 10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 画像リンクがあった場合にサムネイルを表示する + + 16 - - CheckPreviewEnable - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - PreviewPanel - - - 4 - - + True - - NoControl + + StartupPanel - - 83, 290 + + This is sample. - - 115, 12 + + 331, 146 - - 15 + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAM44OV44Kp44Oz44OIBgQAAAAIRm9udE5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG + AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt + YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD + b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAA3jg5Xjgqnjg7Pjg4gyBggAAAAJRm9udE5vZGUyAP////8J + BQAAAP////8JBQAAAAAAAAAL + - - Apply after restarting + + PreviewPanel - - Label81 + + BasedPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - PreviewPanel + + btnDetailBack - - 5 + + 22, 188 - - OS Default + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Japanese + + 16, 95 - - English + + btnListFont - - Simplified Chinese + + HotkeyShift - - 215, 285 + + True - - 136, 20 + + True - - 16 + + True - - LanguageCombo + + True - + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PreviewPanel - - + 6 - - True + + 16, 70 - - NoControl + + 16 - - 22, 290 + + 22, 51 - - 53, 12 + + 22, 62 - - 14 + + ShortUrlPanel - - Language + + 9 - - Label13 + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - PreviewPanel + + TextBitlyPw - - 7 + + 9, 123 - - True + + 286, 107 - + + 258, 21 + + + ComboBoxPostKeySelect + + NoControl - - 22, 263 + + False - - 133, 16 + + 161, 16 - - 13 + + This is sample. - - 常に最前面に表示する + + CheckStartupFollowers - - CheckAlwaysTop + + UseChangeGetCount - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - PreviewPanel + + Fill - - 8 + + True - + True - + NoControl - - 22, 238 + + TweetPrvPanel - - 343, 16 + + 8 - + + True + + 12 - - 発言詳細を等幅フォントで表示(AA対応、フォント適用不具合あり) + + ActionPanel - - CheckMonospace - - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PreviewPanel + + 75, 22 - - 9 + + 22, 145 - - True - - + NoControl - - 22, 66 + + 21 - - 249, 16 + + @IDの入力補助を使用する - + 3 - - 画面最小化・アイコン時のみバルーンを表示する + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - CheckBalloonLimit + + アイコン変更&点滅 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - PreviewPanel + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + 19 - + True - - NoControl + + True - - 22, 20 + + True - - 130, 12 + + SplitContainer1.Panel2 - - 0 + + PlaySnd - - 新着バルーンのユーザー名 + + TimelinePeriod - - Label10 + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - PreviewPanel + + BasedPanel - - 11 + + 4 - - (なし) + + 21, 305 - - バージョン + + PreviewPanel - - 最終発言 + + 4 - - @未読数 + + 70, 12 - - 未読数 + + 8, 173 - - 未読数(@未読数) + + NoControl - - 全未読/全発言数 + + 2 - - 発言数/フォロー数/フォロワー数 + + NoControl - - 215, 88 + + 認証方法 - - 197, 20 + + ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 - - 5 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ComboDispTitle + + 2 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - PreviewPanel + + 1 - - 12 - - - True - - + NoControl - - 22, 91 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 60, 12 + + 1 - - 4 + + True - - タイトルバー + + GroupBox5 - - Label45 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PreviewPanel + + chkUnreadStyle - - 13 + + AuthorizeButton - - なし - - - ユーザーID - - - ニックネーム - 215, 15 - - 136, 20 + + 9 - - 1 - - - cmbNameBalloon - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - PreviewPanel - - + 14 - - True + + ActionPanel - + NoControl - - 22, 43 + + ListsPeriod - - 235, 16 + + PubSearchPeriod - - 2 + + 331, 71 - - タイトルバーとツールチップにユーザー名を表示 + + False - - CheckDispUsername + + 4 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - PreviewPanel + + GetCountPanel - - 15 - - + True - - False + + SplitContainer1.Panel2 - - NoControl + + 起動時に自動的に接続する - - 22, 215 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 180, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + 0 - - 発言詳細部にアイコンを表示する + + 24 - - CheckBox3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - PreviewPanel + + GetPeriodPanel - - 16 + + 最終発言 - - Fill + + 発言数/フォロー数/フォロワー数 - + + 0 + + False - - 0, 0 + + TweetPrvPanel - - 518, 368 + + 77, 12 - - 7 + + 4 - - False + + 22, 154 - - PreviewPanel + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - SplitContainer1.Panel2 + + Label1 - - 7 + + NoControl - + True - - NoControl + + 背景色 - - 216, 134 + + False - - 131, 12 + + 22, 24 - - 9 + + 22, 47 - - 再起動後有効になります。 + + 0, 0 - - Label47 + + ConnectionPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + This is sample. - - TweetPrvPanel + + Label12 - + + True + + 0 - - True + + 12 - - NoControl + + TweetPrvPanel - - 264, 90 + + 3 - - 44, 12 + + 113, 130 - + 5 - - Label63 - - - LabelDateTimeFormatApplied - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + 258, 135 - - 1 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + Label5 - - 217, 90 + + Label13 - - 44, 12 + + ReTweet - - 4 + + True - - Sample: + + StartupReaded - - Label62 + + NoControl - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + CooperatePanel - - 2 + + HotkeyAlt - - Top, Bottom, Left, Right + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - yyyy/MM/dd H:mm:ss + + PreviewPanel - - yy/M/d H:mm:ss + + 518, 368 - - H:mm:ss yy/M/d + + 134, 12 - - M/d H:mm:ss + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - M/d H:mm + + 77, 19 - - H:mm:ss M/d + + Label18 - - H:mm:ss + + 691, 403 - - H:mm + + GetMoreTextCountApi - - tt h:mm + + NoControl - - M/d tt h:mm:ss + + 518, 368 - - M/d tt h:mm + + GroupBox5 - - 216, 67 + + 1 - - 192, 20 + + 6 - - 3 + + True - - CmbDateTimeFormat + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - TweetPrvPanel + + Label55 - - 3 + + PreviewPanel - - True + + NoControl - + + 10 + + NoControl + + 258, 87 + 22, 70 - - 113, 12 + + 93, 16 - - 2 + + Fill - - リストの日時フォーマット + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label23 + + Label19 System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + GroupBox1 - - 4 + + POSTキー(デフォルトEnter) - - True + + 6 - - NoControl + + 7 - - 22, 108 + + 262, 125 - - 163, 12 + + ButtonApiCalc - - 6 + + 10 - - リストのアイコンサイズ(初期値16) + + 180, 16 - - Label11 + + 22, 91 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 339, 15 - - TweetPrvPanel + + 22, 238 - - 5 + + 9 - - none + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 16*16 + + 14 - - 24*24 + + twitter.com - - 48*48 + + Twitter API URL (api.twitter.com) - - 48*48(2Column) + + 13 - - 252, 105 + + 3 - - 163, 20 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + 0, 0 - - IconSize + + 2 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ActionPanel - - TweetPrvPanel + + True - - 6 + + 25 - - False + + btnInputBackcolor - - 216, 106 + + 125, 19 - - 34, 19 + + 122, 216 - - 7 - - - TextBox3 - - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + 9 - - True + + 認証状態 - - NoControl + + 75, 22 - - 22, 203 + + ホットキー - - 203, 16 + + 20 - - 12 + + 331, 196 - - ソート順を変更できないようにロックする + + 518, 368 - - CheckSortOrderLock + + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PreviewPanel - - TweetPrvPanel + + 指定する - - 8 + + PreviewPanel - - True + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBox5 - - 22, 178 + + 22, 54 - - 154, 16 + + CooperatePanel - - 11 + + 3 - - リストの区切り線を表示する + + 4 - - CheckShowGrid + + This is sample. - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 19 - - TweetPrvPanel + + True - - 9 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 8 - + NoControl - - 22, 42 + + 205, 57 - - 226, 16 + + 26 - - 1 + + StartupPanel - - 未読ポストのフォントと色を変更する(低速) + + 6 - - chkUnreadStyle + + 75, 22 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 21 - - TweetPrvPanel + + 125, 19 - - 10 + + CheckAtIdSupple - - True + + 52, 12 - + NoControl - - 22, 21 + + NoControl - - 162, 16 + + ActionPanel - - 0 + + btnDetail - - 片思いを色分けして表示する + + False - - OneWayLv + + 259, 135 - + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + NoControl + + + リストの日時フォーマット + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + NoControl - - 11 + + 標準取得件数 - - Fill + + StartupPanel - - False + + True - - 0, 0 + + 再計算 - - 518, 368 + + ActionPanel - - 8 + + 228, 19 - - False + + GroupBox1 - - TweetPrvPanel + + BasedPanel - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CooperatePanel - - SplitContainer1.Panel2 + + 11 - - 8 + + ShortUrlPanel - - True + + 22, 275 - + NoControl - - 331, 121 + + 104, 19 - - 75, 22 + + 7 - - 14 + + GetPeriodPanel - - 文字色 + + 2 - - btnRetweet + + 16, 120 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 518, 368 - - GroupBox1 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + True - - NoControl + + 22, 166 - - 173, 121 + + 22, 186 - - 104, 19 + + False - - 13 + + Fill - - This is sample. + + 0 - - MiddleLeft + + PreviewPanel - - lblRetweet + + GroupBox3 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - GroupBox1 + + 10 - - 1 + + ProxyPanel - - True + + 0, 0 - + NoControl - - 9, 123 + + 発言詳細リンク - - 50, 12 + + GroupBox3 - - 12 + + 0 - - ReTweet + + Label57 - - Label80 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + HotkeyCode - - 2 + + NoControl - - True - - + NoControl - - 175, 235 + + ActionPanel - - 90, 22 + + 自分の発言を既読にする - - 24 + + Top - - デフォルトに戻す + + 14 - - ButtonBackToDefaultFontColor + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - GroupBox1 + + True - - 3 - - + True - - NoControl + + 43, 16 - - 331, 171 + + 153, 16 - - 75, 22 + + GroupBox5 - - 20 + + NoControl - - 文字色 + + 173, 46 - - btnDetailLink + + 169 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 175, 93 - - GroupBox1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + 最小化したときにアイコン化する - + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 173, 171 + + 9 - - 104, 19 + + 13 - - 19 + + 173, 96 - - This is sample. + + フォント&色設定 - - MiddleLeft + + 8 - - lblDetailLink + + 65, 19 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ProxyPanel - - GroupBox1 - - + 5 - + + GetCountPanel + + + 9 + + True - - NoControl + + 88, 12 - - 8, 173 + + 10 - - 77, 12 + + NoControl - - 18 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 発言詳細リンク + + 12 - - Label18 + + 21 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 文字色 - - GroupBox1 + + False - - 6 + + NoControl - + True - + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 331, 46 + + 22 - - 75, 22 + + Label52 - - 5 + + InternetExplorerの設定を使用する - + + ProxyPanel + + + 70, 19 + + フォント&&色 - - btnUnread + + 227, 20 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + なし - - GroupBox1 + + CheckAlwaysTop - - 7 - - + NoControl - - 173, 46 + + 211, 15 - - 104, 19 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + 26, 210 - - This is sample. + + 66, 16 - + + GroupBox5 + + MiddleLeft - - lblUnread + + Label53 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - GroupBox1 + + 自分への@返信 - - 8 + + 102, 19 - - True + + GroupBox5 - - NoControl + + リストのアイコンサイズ(初期値16) - - 9, 48 + + LabelApiUsing - - 62, 12 + + 104, 19 - + + 65, 19 + + + 63, 12 + + 3 - - 未読フォント + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label20 + + btnListBack - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + 8 - - 9 + + This is sample. - - True + + 264, 90 - + NoControl - - 331, 196 + + yy/M/d H:mm:ss - - 75, 22 + + 10 - - 23 + + FontDialog1 - - 背景色 + + 5 - - btnDetailBack + + btnOWL - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox1 - - - 10 - - + NoControl - - 173, 196 + + True - - 104, 19 + + TweetPrvPanel - - 22 + + フォント&色設定 - - This is sample. + + 102, 19 - - MiddleLeft - lblDetailBackcolor - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 107, 12 - - GroupBox1 + + 63, 12 - - 11 + + GetPeriodPanel - - True + + 75, 22 - - NoControl + + 16, 12 - - 9, 198 + + 69, 12 - - 89, 12 + + MiddleLeft - - 21 + + 22, 22 - - 発言詳細背景色 + + True - - Label37 + + 6 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + 発言詳細部にアイコンを表示する - - 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 65, 19 - - NoControl + + 4 - - 331, 146 + + Save - - 75, 22 + + True - - 17 + + 背景色 - - フォント&&色 + + 8 - - btnDetail + + 53, 12 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CheckCloseToExit - - GroupBox1 + + ActionPanel - - 13 + + 175, 168 + + GroupBox5 + NoControl - - 173, 146 + + 518, 368 - - 104, 19 + + 285, 12 - - 16 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - This is sample. + + NoControl - - MiddleLeft + + 22, 263 - - lblDetail - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14 + + URL自動短縮で優先的に使用 - + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - NoControl + + 48, 16 - - 9, 148 + + True - - 77, 12 + + 182, 20 - - 15 + + 0 - - 発言詳細文字 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label26 + + 2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + NoControl - - 15 + + False - - True + + 6 - + NoControl - - 331, 96 + + 518, 368 - - 75, 22 + + 18 - - 11 + + GroupBox1 - - 文字色 + + 44, 12 - - btnOWL + + Label71 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label24 - - GroupBox1 + + 134, 12 - - 16 + + M/d H:mm - + + 4 + + NoControl - - 173, 96 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 104, 19 + + 1 - - 10 + + True - - This is sample. + + 22, 290 - - MiddleLeft + + 8 - - lblOWL + + lblAtSelf - + + True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + 62, 12 - - 17 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + PreviewPanel + + + 305, 64 + + True - - NoControl + + 1 - - 9, 98 + + #タグの入力補助を使用する - - 63, 12 + + 518, 368 - - 9 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 片思い発言 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label24 + + 8 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 331, 121 - - GroupBox1 - - + 18 - - True + + 22, 41 - - NoControl + + 175, 118 - - 331, 71 + + 339, 190 - - 75, 22 + + GroupBox3 - - 8 + + 2 - - 文字色 + + 145, 16 - - btnFav + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + クリア - - GroupBox1 + + TweetPrvPanel - - 19 + + 3 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 173, 71 + + 102, 19 - - 104, 19 + + 1 - - 7 + + 16 - - This is sample. + + BasedPanel - - MiddleLeft + + True - - lblFav + + This is sample. - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - GroupBox1 + + Label3 - - 20 + + 50, 12 - + True - - NoControl + + 12 - - 9, 73 + + 22, 137 - - 48, 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fav発言 + + GroupBox5 - - Label22 + + 22, 92 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - GroupBox1 + + 3 - - 21 - - - True - - + NoControl - - 331, 21 - - - 75, 22 - - + 2 - - フォント&&色 + + AuthClearButton - - btnListFont + + 0 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + GroupBox1 - - 22 + + 474, 41 - + NoControl - - 173, 21 + + ComboDispTitle - - 104, 19 + + NoControl - - 1 + + Fill - - This is sample. + + NoControl - - MiddleLeft + + 24, 50 - - lblListFont + + 314, 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblTarget - - GroupBox1 - - - 23 - - + True - - NoControl + + Label20 - - 9, 23 + + 2 - - 62, 12 - - + 0 - - リストフォント + + 12 - - Label61 + + 339, 40 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + 0 - - 24 + + 4 - - 22, 18 + + Label7 - - 429, 267 + + 9 - - 0 + + Fill - - フォント&色設定 + + CheckFavRestrict - - GroupBox1 + + 8 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17 - - FontPanel + + 104, 19 - - 0 + + 1 - - Fill + + 2 - - False + + Label66 - - 0, 0 + + 15 - - 518, 368 + + ActionPanel - - 9 + + Label72 - - False + + SplitContainer1.Panel2 - - FontPanel + + NoControl - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 22 - - SplitContainer1.Panel2 + + 77, 12 - - 9 + + 設定 - - True + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + 136, 20 - - 16, 220 + + 104, 19 - - 74, 12 + + 0 - - 24 + + 5 - - 入力欄フォント + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG6KGo56S6BgQAAAALUHJldmlld05vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUGAAAA + HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdl + SW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3Vu + dAEBAAABAAEAAQgICAIAAAAGBwAAABLjg6rjgrnjg4jjga7ooajnpLoGCAAAAAxUd2VldFBydk5vZGUA + /////wkFAAAA/////wkFAAAAAAAAAAs= + - - Label65 + + False - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - GroupBox5 + + 113, 109 - - 0 + + 2 - - True + + 4 - + NoControl - - 16, 195 + + 4 - - 131, 12 + + 255, 85 - - 21 + + BASIC - - 入力欄アクティブ時背景色 + + 8 - - Label52 + + 71, 19 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ActionPanel - - GroupBox5 + + 5 - - 1 + + 27 - - True + + 0 - + NoControl - - 16, 145 + + 8 - - 102, 12 + + True - - 15 + + SplitContainer1.Panel2 - - その発言の@先発言 + + 73, 19 - - Label49 + + ReplyPeriod - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + SplitContainer1.Panel2 - - GroupBox5 + + TweetActPanel - - 2 + + ComboBoxOutputzUrlmode - + + 3 + + True - - NoControl + + Label59 - - 16, 170 + + True - - 53, 12 + + GroupBox5 - - 18 + + 130, 12 - - 一般発言 + + ProxyPanel - - Label9 + + 3 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + TweetPrvPanel - + + ユーザ名(&U) + + 3 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + PreviewPanel + + NoControl - - 16, 120 + + FontPanel2 - - 134, 12 + + 3 - - 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - その発言の@先の人の発言 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label14 + + 9 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CheckPreviewEnable - - GroupBox5 + + 5 - - 4 + + 22 - - True + + GetCountPanel - - NoControl + + Label62 - - 16, 95 + + 518, 368 - - 88, 12 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - その人への@返信 + + NoControl - - Label16 + + 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleLeft - - GroupBox5 + + SplitContainer1 - - 5 + + 429, 267 - - True + + GroupBox1 - - NoControl + + 短縮URLを解決する - - 16, 70 + + 10 - - 70, 12 + + 0, 0 - - 6 + + GroupBox5 - - その人の発言 + + TweetActPanel - - Label32 + + BasedPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 39, 16 - - GroupBox5 + + 112, 14 - - 6 + + NoControl - - True + + ConnectionPanel - + NoControl - - 16, 45 + + 10 - - 81, 12 + + 7 - - 3 + + GetPeriodPanel - - 自分への@返信 + + 178, 16 - - Label34 + + NoControl - + + True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + GetCountPanel - - True + + bit.ly - - NoControl + + CheckOutputz - - 16, 20 + + 20 - - 63, 12 + + 22, 42 - - 0 + + 3 - - 自分の発言 + + NoControl - - Label36 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 GroupBox5 - - 8 + + 22, 112 - - True + + CheckUseSsl - - NoControl + + False - - 339, 215 + + 63, 12 - - 75, 22 + + 48, 12 - - 26 + + True - - フォント&&色 + + NoControl - - btnInputFont + + 3 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblListBackcolor - - GroupBox5 + + 7 - - 9 - - + True - - NoControl + + ID - - 339, 190 + + GroupBox1 - - 75, 22 + + 16, 170 - - 23 + + 0 - - 背景色 + + Label28 - - btnInputBackcolor + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Ctrl+Enter - - GroupBox5 + + True - - 10 + + 発言詳細文字 - - True - - + NoControl - - 339, 140 + + ユーザーID - + 75, 22 - - 17 + + SplitContainer1.Panel2 - - 背景色 + + btnSelf - - btnAtTo + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBox5 + + 2 - - 11 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 331, 21 - - NoControl + + GroupBox5 - - 339, 165 + + タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 - - 75, 22 + + 6 - - 20 + + ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 - - 背景色 + + CheckDispUsername - - btnListBack + + IconSize - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + HotkeyText - - GroupBox5 + + 246, 20 - - 12 - - + True - - NoControl + + 113, 16 - - 339, 115 + + 7 - - 75, 22 + + True - - 14 + + CheckBox3 - - 背景色 + + 429, 290 - - btnAtFromTarget + + H:mm - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBox5 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + 片思い発言 - - True + + This is sample. - - NoControl - 339, 90 - - 75, 22 + + 22, 20 - - 11 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 背景色 + + MiddleLeft - - btnAtTarget + + 2 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - GroupBox5 + + RadioProxyNone - - 14 + + AuthOAuthRadio - - True + + 7 - + NoControl - - 339, 65 + + 175, 218 - - 75, 22 + + 22 - - 8 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 背景色 + + 58, 19 - - btnTarget + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleLeft - - GroupBox5 + + 未読管理を行う - - 15 - - + True - - NoControl + + GetCountPanel - - 339, 40 + + GroupBox5 - - 75, 22 + + CheckBalloonLimit - - 5 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 背景色 + + GetPeriodPanel - - btnAtSelf + + This is sample. - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ShortUrlPanel - - GroupBox5 + + TextBitlyId - - 16 + + HotkeyWin - - True + + Apply after restarting - - NoControl + + 339, 65 - - 339, 15 + + PreviewPanel - - 75, 22 + + True - - 2 + + Fav発言 - - 背景色 + + 331, 46 - - btnSelf + + Favoritesの取得数 - + + GetPeriodPanel + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + 75, 23 - - 17 + + 29, 174 - - NoControl + + 背景色 - - 175, 218 + + 0 - - 102, 19 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 25 + + 197, 20 - - This is sample. + + 0, 0 - - MiddleLeft + + NoControl - - lblInputFont + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15 - - GroupBox5 + + $this - - 18 + + True - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 175, 193 + + 63, 12 - - 102, 19 + + 11 - - 22 + + 115, 12 - - This is sample. + + True - - MiddleLeft + + 12 - - lblInputBackcolor + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - GroupBox5 + + 次の項目の更新時の取得数を個別に設定する - - 19 + + 75, 22 - + + DM更新間隔(秒) + + NoControl - - 175, 143 + + CheckEnableBasicAuth - - 102, 19 + + 0 - - 16 + + NoControl - - This is sample. + + 137, 12 - - MiddleLeft + + BasedPanel - - lblAtTo + + 104, 19 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ActionPanel - - GroupBox5 + + Label9 - - 20 - - + NoControl - - 175, 168 + + TweetPrvPanel - - 102, 19 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 19 + + True - - This is sample. + + 4 - - MiddleLeft + + 115, 16 - - lblListBackcolor + + PreviewPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - GroupBox5 + + 25 - - 21 + + 11 - + + True + + NoControl - - 175, 118 + + 74, 12 - - 102, 19 + + True - - 13 + + 4 - - This is sample. + + TextProxyUser - - MiddleLeft + + 163, 20 - - lblAtFromTarget + + 14 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + BasedPanel - - GroupBox5 + + NoControl - - 22 - - + NoControl - - 175, 93 + + True - - 102, 19 + + 22, 108 - - 10 + + False - - This is sample. + + Sample: - - MiddleLeft + + CheckStartupVersion - - lblAtTarget + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 185, 116 - - GroupBox5 + + 13 - - 23 + + ProxyPanel - - NoControl + + 12 - - 175, 68 + + True - - 102, 19 + + True - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 62, 12 + + 7 - - This is sample. + + 12 - - MiddleLeft + + ポート(&P) - - lblTarget + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + SplitContainer1.Panel2 - - GroupBox5 + + True - - 24 + + 5 - - NoControl + + True - - 175, 43 + + LabelProxyAddress - - 102, 19 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + SplitContainer1.Panel2 - - This is sample. + + 0 - - MiddleLeft + + NoControl - - lblAtSelf + + False - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0 - - GroupBox5 + + 89, 12 - - 25 + + Fill - + NoControl - - 175, 17 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 19 + + True - - 1 + + 16 - - This is sample. + + 20 - + + 4 + + MiddleLeft - - lblSelf + + 75, 22 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GroupBox5 - - - 26 - - + True - - NoControl + + 518, 368 - - 191, 252 + + 3 - - 90, 22 + + 16 - - 27 + + $this - - デフォルトに戻す + + lblSelf - - ButtonBackToDefaultFontColor2 + + 5 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Mentions取得数 - + GroupBox5 - - 27 + + 復活の呪文 - - 22, 18 + + 8 - - 429, 290 + + True - - 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - フォント&色設定 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + 22, 22 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - FontPanel2 + + NoControl - - 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fill + + True - - False + + twitter.com/username - - 0, 0 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 518, 368 + + NoControl - - 10 + + This is sample. - - False + + 9 - - FontPanel2 + + 58, 19 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - SplitContainer1.Panel2 + + ProxyPanel - - 10 + + 2 - + True - - NoControl + + 1 - - 22, 166 + + 14 - - 178, 16 + + ActionPanel - - 14 + + TweetPrvPanel - - BASIC認証への変更を許可する + + 75, 23 - - CheckEnableBasicAuth + + GetPeriodPanel - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 12 + + + 75, 22 + + + 340, 12 + ConnectionPanel - - 0 + + 24 - - 262, 125 + + NoControl - - 125, 19 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + 未読フォント + + 7 - - search.twitter.com + + Fill - - TwitterSearchAPIText + + 257, 13 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 18 - - ConnectionPanel + + 76, 16 - - 1 + + NoControl - - True + + 0 - - NoControl + + ソート順を変更できないようにロックする - - 22, 128 + + True - - 228, 12 + + TweetPrvPanel - - 6 + + 42, 16 - - Twitter SearchAPI URL (search.twitter.com) + + 36, 106 - - Label31 + + Japanese - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9, 73 - - ConnectionPanel + + MiddleLeft - - 2 + + 5 - - 262, 100 + + TextProxyPort - - 125, 19 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + NoControl - - api.twitter.com + + SplitContainer1.Panel2 - - TwitterAPIText + + 6 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 60, 12 - - ConnectionPanel + + Cancel - + 3 - - True + + lblInputFont - - NoControl + + 0, 0 - - 22, 103 + + GetPeriodPanel - - 174, 12 + + 91, 16 - - 4 + + 75, 22 - - Twitter API URL (api.twitter.com) + + Button3 - - Label8 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ConnectionPanel + + 137, 12 - - 4 + + GetCountPanel - - True + + 215, 142 - + + GroupBox1 + + NoControl - - 22, 78 + + 184, 19 - - 145, 16 + + 22, 54 - - 3 + + 7 - - 通信にHTTPSを使用する + + DMPeriod - - CheckUseSsl + + 2 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnRetweet - - ConnectionPanel + + GetCountPanel - - 5 + + 190, 16 - - True + + This is sample. - - NoControl + + Fill - - 22, 51 + + 文字色 - - 349, 12 + + 1 - - 2 + + NoControl - - ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 + + 79, 12 - - Label64 + + 2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 123, 12 - - ConnectionPanel + + 16, 220 - - 6 + + MiddleLeft - - 262, 18 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 125, 19 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + 53, 12 - - ConnectionTimeOut + + 22, 112 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 19 - - ConnectionPanel + + 22, 133 - - 7 + + 173, 196 - - True + + 10 - - NoControl + + lblListFont - - 22, 20 + + デフォルトに戻す - - 131, 12 + + 22, 70 - - 0 + + 227, 41 - - タイムアウトまでの時間(秒) + + 203, 16 - - Label63 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ConnectionPanel + + タイトルバー - - 8 + + ActionPanel - - Fill + + 10 - - False + + 12 - - 0, 0 + + Label26 - - 518, 368 + + btnAtFromTarget - - 11 + + 5 - - False + + 13 - - ConnectionPanel + + Not Authenticated - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 発言詳細を等幅フォントで表示(AA対応、フォント適用不具合あり) - - SplitContainer1.Panel2 + + 2 - - 11 - - - True - - + NoControl - - 41, 134 + + 6 - - 314, 12 + + デフォルトに戻す - - 11 + + 1 - - ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 + + 3 - - Label55 + + Fill - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 182, 19 - - ProxyPanel + + 12 - - 0 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 286, 107 + + 22, 19 - - 96, 19 + + is.gd - - 10 + + 4 - - TextProxyPassword + + 一般発言 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ProxyPanel + + 237, 16 - - 1 + + 8 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + フォント&&色 - - 22, 19 + + 4 - - 76, 16 + + lblRetweet - - 0 + + True - - 使用しない + + PreviewPanel - - RadioProxyNone + + 518, 368 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 242, 16 - - ProxyPanel + + NoControl - - 2 + + 258, 63 - - True - - + NoControl - - 217, 110 + + 23 - - 69, 12 + + NoControl - - 9 + + 75, 23 - - パスワード(&W) + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - LabelProxyPassword - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ProxyPanel + + UReadMng - - 3 + + 1 - - True + + 309, 82 - - NoControl + + btnInputFont - - 22, 41 + + 常に最前面に表示する - - 190, 16 + + NoControl - - 1 + + 50, 85 - - InternetExplorerの設定を使用する + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - RadioProxyIE + + MiddleLeft - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - ProxyPanel + + プロキシ(&X) - - 4 + + 75, 22 - - 143, 107 + + Label64 - - 68, 19 + + NoControl - - 8 + + Outputzに対応する - - TextProxyUser + + BASIC認証への変更を許可する - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ProxyPanel + + 136, 20 - - 5 + + 22, 114 - - True + + GroupBox5 - - NoControl + + 9 - - 22, 62 + + Twitter SearchAPI URL (search.twitter.com) - - 66, 16 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 指定する + + Label22 - - RadioProxySpecified + + 77, 12 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label65 - - ProxyPanel + + GetPeriodPanel - - 6 + + BasedPanel - - True + + 22, 42 - - NoControl + + Label4 - - 74, 110 + + ProxyPanel - - 63, 12 + + True - - 7 + + True - - ユーザ名(&U) + + 58, 19 - - LabelProxyUser + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - ProxyPanel + + 0, 0 - - 7 + + 19 - + True - + + $this + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 50, 85 + + TweetPrvPanel - - 58, 12 + + パスワード(&W) - - 3 + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - プロキシ(&X) + + True - - LabelProxyAddress + + 背景色 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 27 - - ProxyPanel + + 104, 19 - - 8 + + This is sample. - - 309, 82 + + BasedPanel - - 73, 19 + + 22, 253 - - 6 + + 1 - - TextProxyPort + + ButtonBackToDefaultFontColor2 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - ProxyPanel + + True - - 9 + + 6 - - 114, 82 + + lblAtFromTarget - - 135, 19 + + 12 - - 4 + + M/d H:mm:ss - - TextProxyAddress + + ×ボタンを押したときに終了する - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + タブに未読アイコンを表示する - - ProxyPanel + + 7 - - 10 + + 背景色 - - True + + 23, 12 - - NoControl + + GroupBox5 - - 255, 85 + + True - - 48, 12 + + False - - 5 + + その人の発言 - - ポート(&P) + + 16, 145 - - LabelProxyPort + + 17 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 24*24 - - ProxyPanel + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG5YuV5L2cBgQAAAAKQWN0aW9uTm9kZQD/////BgUAAAAA/////wkFAAAAAQAAAAkGAAAABQYAAAAd + U3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJ + bmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50 + AQEAAAEAAQABCAgIAgAAAAYHAAAAGOODhOOCpOODvOODiOaZguOBruWLleS9nAYIAAAADFR3ZWV0QWN0 + Tm9kZQD/////CQUAAAD/////CQUAAAAAAAAACw== + - - 11 + + NoControl - - Fill + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + 16, 20 - - 0, 0 + + 13 - - 518, 368 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 12 + + True - - False + + ShortUrlPanel - - ProxyPanel + + lblAtTo - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 背景色 - - SplitContainer1.Panel2 + + 217, 110 - - 12 + + NoControl - - True + + 3 - + NoControl - - 22, 22 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 115, 16 + + Label61 - - 8 + + NoControl - - Outputzに対応する + + 9 - - CheckOutputz + + SplitContainer1 - + + True + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - CooperatePanel + + 0, 0 - - 0 + + Fav操作結果を厳密にチェックする - - True + + lblFav - - NoControl + + RadioProxySpecified - - 22, 154 + + 発言詳細背景色 - - 237, 16 + + CheckReadOldPosts - - 13 + + 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 - - ニコニコ動画のURLをnico.msで短縮して送信 + + HotkeyCheck - - CheckNicoms + + TwitterAPIText - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ProxyPanel - - CooperatePanel + + 14 - - 1 + + ニコニコ動画のURLをnico.msで短縮して送信 - - 205, 57 + + 418, 158 - - 182, 19 + + 11 - - 10 + + 24 - - TextBoxOutputzKey + + 21, 164 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - CooperatePanel + + 21 - - 2 + + 3 - + + NoControl + + True - - NoControl + + AuthUserLabel - - 36, 106 + + Shift - - 99, 12 + + 691, 368 - - 11 + + MiddleLeft - - アウトプット先のURL + + その発言の@先発言 - - Label60 + + 131, 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 135, 19 - - CooperatePanel + + TwitterSearchAPIText - - 3 + + StartupPanel - - True + + 165, 16 - - NoControl + + GroupBox1 - - 36, 60 + + TextProxyAddress - - 63, 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9 + + MiddleLeft - - 復活の呪文 + + TweetActPanel - - Label59 + + Label67 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - CooperatePanel + + 0 - + + 16, 195 + + 4 - - twitter.com + + GroupBox5 - - twitter.com/username + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 205, 103 + + Label2 - - 182, 20 + + 9, 48 - + + NoControl + + 12 - - ComboBoxOutputzUrlmode + + TextCountApi - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - CooperatePanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + パスワード - - Fill + + 65, 19 - - False + + 201, 102 - - 0, 0 + + バージョン - - 518, 368 + + @未読数 - + 12 - - False + + 未読数(@未読数) - - CooperatePanel + + 未読数 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - SplitContainer1.Panel2 + + 全未読/全発言数 - - 13 + + 3 - - True + + 518, 368 - + + 22, 114 + + NoControl - - 22, 22 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 122, 16 + + 11 - - 0 + + LabelDateTimeFormatApplied - - 短縮URLを解決する + + Top, Bottom, Left, Right - - CheckTinyURL + + True - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - ShortUrlPanel + + 23, 94 - - 0 + + Language - - 343, 101 + + Lists更新間隔(秒) - - 70, 19 + + ProxyPanel - - 7 + + chkGetFav - - TextBitlyPw + + 前データの更新 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + APIKey - - ShortUrlPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + 262, 18 - - True + + yyyy/MM/dd H:mm:ss - + NoControl - - 22, 49 + + 181, 78 - - 242, 16 + + 124, 16 - - 1 + + 2 - - 入力欄のURLを投稿する際に自動で短縮する + + 10 - - CheckAutoConvertUrl + + Shift+Enter - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ShortUrlPanel + + NoControl - - 2 + + 0, 0 - - True + + 11 - - NoControl + + 参照 - - 19, 81 + + 22, 128 - - 154, 12 + + 11 - - 2 + + True - - URL自動短縮で優先的に使用 + + 33, 43 - - Label71 + + False - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ShortUrlPanel + + フォント&&色 - - 3 + + Enter tinyurl - - is.gd + + GroupBox1 - - twurl.nl + + NoControl - - bit.ly + + 2 - - j.mp + + 0 - - ux.nu + + 149, 14 - - 181, 78 + + Label63 - - 246, 20 + + 10 - - 3 + + CenterParent - - ComboBoxAutoShortUrlFirst + + 75, 22 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + FontPanel - - ShortUrlPanel + + GroupBox5 - - 4 + + NoControl - - True + + 0, 0 - - NoControl + + 0 - - 179, 104 + + リストの区切り線を表示する - - 16, 12 + + アイコン変更 - - 4 + + 6 - - ID + + NoControl - - Label76 + + 3 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 57, 16 - - ShortUrlPanel + + 19, 81 - - 5 + + NoControl - + True - - NoControl + + PreviewPanel - - 278, 104 + + 22, 43 - - 42, 12 + + 最新版のチェックをする - - 6 + + 216, 134 - - APIKey + + GroupBox1 - - Label77 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + FontPanel - - ShortUrlPanel + + CheckTinyURL - - 6 + + Label69 - - 201, 102 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 71, 19 + + 背景色 - - 5 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TextBitlyId + + 入力欄のURLを投稿する際に自動で短縮する - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - ShortUrlPanel + + 243, 16 - - 7 + + 29, 195 - - Fill + + 174, 16 - - False + + 22, 215 - - 0, 0 + + 15 - - 518, 368 + + 1 - - 13 + + True - - ShortUrlPanel + + GroupBox1 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - SplitContainer1.Panel2 + + chkReadOwnPost - - 14 + + 48*48(2Column) - + + 232, 19 + + SplitContainer1.Panel2 - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 339, 140 - - SplitContainer1 + + GroupBox1 - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 691, 368 + + 136, 20 - - 169 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 - - - SplitContainer1 - System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this + + TextBox3 - - 2 + + 6 - - 17, 17 - - - 140, 17 - - - NoControl + + 252, 105 - - 604, 374 + + This is sample. - - 75, 23 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - キャンセル + + 57, 12 - - Cancel + + 10 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - $this + + This is sample. - - 0 + + Label76 - - NoControl + + 22, 136 - - 521, 374 + + 129, 16 - - 75, 23 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + GroupBox3 - - OK + + 11 - - Save - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - True + + 17, 17 + 82 - - 6, 12 - - - 691, 403 - - - CenterParent - - - 設定 - - - FontDialog1 - - - System.Windows.Forms.FontDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ColorDialog1 - - - System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - AppendSettingDialog - - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + 140, 17 + \ No newline at end of file From svnnotify @ sourceforge.jp Mon Dec 27 18:46:53 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 27 Dec 2010 18:46:53 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNjNdICDjg7sgWyDjgafnmbrnlJ/jgZnjgos=?= =?utf-8?b?44OM44Or44Oq44Gr5a++5Yem?= Message-ID: <1293443213.362153.24294.nullmailer@users.sourceforge.jp> Revision: 1263 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1263 Author: anis774 Date: 2010-12-27 18:46:53 +0900 (Mon, 27 Dec 2010) Log Message: ----------- ・[で発生するヌルリに対処 ・検索タブにて[でInReplyToを取得した項目を即時再描画するように変更 ・検索タブにて[でのInReplyToの取得をポストに@が含まれているとにのみに制限 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-27 08:02:40 UTC (rev 1262) +++ trunk/Tween/Tween.vb 2010-12-27 09:46:53 UTC (rev 1263) @@ -5447,15 +5447,19 @@ End Sub Private Sub GoInReplyToPost() + If _curPost Is Nothing Then Return + Dim curTabClass As TabClass = _statuses.Tabs(_curTab.Text) - If curTabClass.TabType = TabUsageType.PublicSearch AndAlso _curPost.InReplyToId = 0 Then + If curTabClass.TabType = TabUsageType.PublicSearch AndAlso _curPost.InReplyToId = 0 AndAlso _curPost.Data.Contains("@") Then Dim post As PostClass = Nothing Dim r As String = tw.GetStatusApi(False, _curPost.Id, post) If r = "" AndAlso post IsNot Nothing Then _curPost.InReplyToId = post.InReplyToId _curPost.InReplyToUser = post.InReplyToUser _curPost.IsReply = post.IsReply + _itemCache = Nothing + _curList.RedrawItems(_curItemIndex, _curItemIndex, False) Else Me.StatusLabelUrl.Text = r End If From svnnotify @ sourceforge.jp Mon Dec 27 21:26:00 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Mon, 27 Dec 2010 21:26:00 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNjRdICDplqLpgKPnmbroqIDlj5blvpfjgpI=?= =?utf-8?b?5by35YyW77yIVG9Eb++8muaWsOedgOihqOekuuOBleOBm+OBquOBhOOAgUVz?= =?utf-8?b?Y+OBp+OCv+ODlumWieOBmOOBpuWFg+OBruOCv+ODluOBuOaIu+OCiuOBnw==?= =?utf-8?b?44GE77yJ?= Message-ID: <1293452760.913604.4789.nullmailer@users.sourceforge.jp> Revision: 1264 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1264 Author: kiri_feather Date: 2010-12-27 21:26:00 +0900 (Mon, 27 Dec 2010) Log Message: ----------- 関連発言取得を強化(ToDo:新着表示させない、Escでタブ閉じて元のタブへ戻りたい) Modified Paths: -------------- trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-27 09:46:53 UTC (rev 1263) +++ trunk/Tween/Tween.vb 2010-12-27 12:26:00 UTC (rev 1264) @@ -2081,7 +2081,7 @@ Case WORKERTYPE.Related bw.ReportProgress(50, MakeStatusMessage(args, False)) Dim tb As TabClass = _statuses.GetTabByName(args.tName) - ret = tw.GetRelatedResultsApi(read, tb) + ret = tw.GetRelatedResult(read, tb) rslt.addCount = _statuses.DistributePosts() End Select 'キャンセル要求 Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-27 09:46:53 UTC (rev 1263) +++ trunk/Tween/Twitter.vb 2010-12-27 12:26:00 UTC (rev 1264) @@ -1597,9 +1597,39 @@ Return CreatePostsFromJson(content, WORKERTYPE.List, tab, read, count, tab.OldestId) End Function - Public Function GetRelatedResultsApi(ByVal read As Boolean, _ - ByVal tab As TabClass) As String + Private Function CheckReplyToPost(ByVal relPosts As List(Of PostClass)) As PostClass + Dim tmpPost As PostClass = relPosts(0) + Dim lastPost As PostClass = Nothing + Do While tmpPost IsNot Nothing + If tmpPost.InReplyToId = 0 Then Return Nothing + lastPost = tmpPost + Dim replyToPost = From p In relPosts + Where p.Id = tmpPost.InReplyToId + Select p + tmpPost = replyToPost.FirstOrDefault() + Loop + Return lastPost + End Function + Public Function GetRelatedResult(ByVal read As Boolean, ByVal tab As TabClass) As String + Dim relPosts As New List(Of PostClass) + relPosts.Add(tab.RelationTargetPost.Copy) + Dim tmpPost As PostClass = relPosts(0) + Dim rslt As String = "" + Do + rslt = Me.GetRelatedResultsApi(read, tmpPost, tab, relPosts) + If Not String.IsNullOrEmpty(rslt) Then Exit Do + tmpPost = CheckReplyToPost(relPosts) + Loop While tmpPost IsNot Nothing + relPosts.ForEach(New Action(Of PostClass)(Sub(p) TabInformations.GetInstance.AddPost(p))) + Return rslt + End Function + + Public Function GetRelatedResultsApi(ByVal read As Boolean, + ByVal post As PostClass, + ByVal tab As TabClass, + ByVal relatedPosts As List(Of PostClass)) As String + If Twitter.AccountState <> ACCOUNT_STATE.Valid Then Return "" If _endingFlag Then Return "" @@ -1607,7 +1637,7 @@ Dim res As HttpStatusCode Dim content As String = "" Try - res = twCon.GetRelatedResults(tab.RelationTargetPost.Id, content) + res = twCon.GetRelatedResults(post.Id, content) Catch ex As Exception Return "Err:" + ex.Message End Try @@ -1623,7 +1653,18 @@ Return "Err:" + res.ToString() + "(" + GetCurrentMethod.Name + ")" End Select - Dim targetItem As PostClass = tab.RelationTargetPost + Dim items As List(Of TwitterDataModel.RelatedResult) + Try + items = CreateDataFromJson(Of List(Of TwitterDataModel.RelatedResult))(content) + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Json Parse Error(DataContractJsonSerializer)" + Catch ex As Exception + TraceOut(content) + Return "Invalid Json!" + End Try + + Dim targetItem As PostClass = post If targetItem Is Nothing Then Return "" Else @@ -1641,17 +1682,6 @@ replyToItem.RelTabName = tab.TabName End If - Dim items As List(Of TwitterDataModel.RelatedResult) - Try - items = CreateDataFromJson(Of List(Of TwitterDataModel.RelatedResult))(content) - Catch ex As SerializationException - TraceOut(ex.Message + Environment.NewLine + content) - Return "Json Parse Error(DataContractJsonSerializer)" - Catch ex As Exception - TraceOut(content) - Return "Invalid Json!" - End Try - Dim replyAdded As Boolean = False For Each relatedData As TwitterDataModel.RelatedResult In items For Each result As TwitterDataModel.RelatedTweet In relatedData.Results @@ -1665,13 +1695,21 @@ If item.IsMe AndAlso Not read AndAlso _readOwnPost Then item.IsRead = True If tab IsNot Nothing Then item.RelTabName = tab.TabName '非同期アイコン取得&StatusDictionaryに追加 - TabInformations.GetInstance.AddPost(item) + relatedPosts.Add(item) Next Next If replyToItem IsNot Nothing Then - TabInformations.GetInstance.AddPost(replyToItem) + relatedPosts.Add(replyToItem) ElseIf targetItem.InReplyToId > 0 AndAlso Not replyAdded Then - Return GetStatusApi(read, targetItem.InReplyToId, tab) + Dim p As PostClass = Nothing + Dim rslt As String = "" + rslt = GetStatusApi(read, targetItem.InReplyToId, p) + If String.IsNullOrEmpty(rslt) Then + p.IsRead = read + p.RelTabName = tab.TabName + relatedPosts.Add(p) + End If + Return rslt End If '発言者・返信先ユーザーの直近10発言取得 From svnnotify @ sourceforge.jp Tue Dec 28 01:25:49 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 28 Dec 2010 01:25:49 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNjVdICDmpJzntKLjgr/jg5bjgYvjgonjgac=?= =?utf-8?b?44KC6Zai6YCj55m66KiA6KGo56S644Gn44GN44KL44KI44GG44Gr?= Message-ID: <1293467149.357613.644.nullmailer@users.sourceforge.jp> Revision: 1265 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1265 Author: kiri_feather Date: 2010-12-28 01:25:48 +0900 (Tue, 28 Dec 2010) Log Message: ----------- 検索タブからでも関連発言表示できるように 関連発言タブでEscape押下により、確認なしでタブ削除&元のタブへ戻る 関連発言タブの新着通知をデフォルトオフに Modified Paths: -------------- trunk/Tween/FilterDialog.vb trunk/Tween/StatusDictionary.vb trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/FilterDialog.vb =================================================================== --- trunk/Tween/FilterDialog.vb 2010-12-27 12:26:00 UTC (rev 1264) +++ trunk/Tween/FilterDialog.vb 2010-12-27 16:25:48 UTC (rev 1265) @@ -810,7 +810,7 @@ If ListTabs.SelectedIndex > -1 AndAlso ListTabs.SelectedItem.ToString <> "" Then Dim tb As String = ListTabs.SelectedItem.ToString Dim idx As Integer = ListTabs.SelectedIndex - If DirectCast(Me.Owner, TweenMain).RemoveSpecifiedTab(tb) Then + If DirectCast(Me.Owner, TweenMain).RemoveSpecifiedTab(tb, True) Then ListTabs.Items.RemoveAt(idx) idx -= 1 If idx < 0 Then idx = 0 Modified: trunk/Tween/StatusDictionary.vb =================================================================== --- trunk/Tween/StatusDictionary.vb 2010-12-27 12:26:00 UTC (rev 1264) +++ trunk/Tween/StatusDictionary.vb 2010-12-27 16:25:48 UTC (rev 1265) @@ -1559,21 +1559,12 @@ _ Public NotInheritable Class TabClass Private _unreadManage As Boolean = False - Private _notify As Boolean = False - Private _soundFile As String = "" Private _filters As List(Of FiltersClass) - Private _oldestUnreadItem As Long = -1 'ID Private _unreadCount As Integer = 0 Private _ids As List(Of Long) - Private _filterMod As Boolean = False Private _tmpIds As New List(Of TemporaryId) - Private _tabName As String = "" Private _tabType As TabUsageType = TabUsageType.Undefined - Private _posts As New Dictionary(Of Long, PostClass) Private _sorter As New IdComparerClass - Private _oldestId As Long = Long.MaxValue '古いポスト取得用 - Private _sinceId As Long = 0 - Private _relationTargetPost As PostClass = Nothing Private ReadOnly _lockObj As New Object @@ -1644,55 +1635,25 @@ #End Region _ + Public Property BackToTab() As TabClass + + _ Public Property RelationTargetPost() As PostClass - Get - Return _relationTargetPost - End Get - Set(ByVal value As PostClass) - _relationTargetPost = value - End Set - End Property _ - Public Property OldestId() As Long - Get - Return _oldestId - End Get - Set(ByVal value As Long) - _oldestId = value - End Set - End Property + Public Property OldestId() As Long = Long.MaxValue _ Public Property SinceId() As Long - Get - Return _sinceId - End Get - Set(ByVal value As Long) - _sinceId = value - End Set - End Property _ - Public Property Posts() As Dictionary(Of Long, PostClass) - Get - Return _posts - End Get - Set(ByVal value As Dictionary(Of Long, PostClass)) - _posts = value - End Set - End Property + Public Property Posts() As New Dictionary(Of Long, PostClass) - 'Public Function SearchedPost(ByVal Id As Long) As PostClass - ' If Not _posts.ContainsKey(Id) Then Return Nothing - ' Return _posts(Id) - 'End Function - Public Function GetTemporaryPosts() As PostClass() Dim tempPosts As New List(Of PostClass) If _tmpIds.Count = 0 Then Return tempPosts.ToArray For Each tempId As TemporaryId In _tmpIds - tempPosts.Add(_posts(tempId.Id)) + tempPosts.Add(_Posts(tempId.Id)) Next Return tempPosts.ToArray End Function @@ -1717,7 +1678,7 @@ _soundFile = "" _unreadManage = True _ids = New List(Of Long) - _oldestUnreadItem = -1 + Me.OldestUnreadId = -1 _tabType = TabUsageType.Undefined _listInfo = Nothing End Sub @@ -1729,7 +1690,7 @@ _soundFile = "" _unreadManage = True _ids = New List(Of Long) - _oldestUnreadItem = -1 + Me.OldestUnreadId = -1 _tabType = TabType Me.ListInfo = list If Me.IsInnerStorageTabType Then @@ -1765,10 +1726,10 @@ If Not Read AndAlso Me._unreadManage Then Me._unreadCount += 1 - If Me._oldestUnreadItem = -1 Then - Me._oldestUnreadItem = ID + If Me.OldestUnreadId = -1 Then + Me.OldestUnreadId = ID Else - If ID < Me._oldestUnreadItem Then Me._oldestUnreadItem = ID + If ID < Me.OldestUnreadId Then Me.OldestUnreadId = ID End If End If End Sub @@ -1844,7 +1805,7 @@ If Not Read AndAlso Me._unreadManage Then Me._unreadCount -= 1 - Me._oldestUnreadItem = -1 + Me.OldestUnreadId = -1 End If Me._ids.Remove(Id) @@ -1858,39 +1819,18 @@ Set(ByVal value As Boolean) Me._unreadManage = value If Not value Then - Me._oldestUnreadItem = -1 + Me.OldestUnreadId = -1 Me._unreadCount = 0 End If End Set End Property Public Property Notify() As Boolean - Get - Return _notify - End Get - Set(ByVal value As Boolean) - _notify = value - End Set - End Property - Public Property SoundFile() As String - Get - Return _soundFile - End Get - Set(ByVal value As String) - _soundFile = value - End Set - End Property + Public Property SoundFile() As String = "" _ - Public Property OldestUnreadId() As Long - Get - Return _oldestUnreadItem - End Get - Set(ByVal value As Long) - _oldestUnreadItem = value - End Set - End Property + Public Property OldestUnreadId() As Long = -1 _ Public Property UnreadCount() As Integer @@ -1918,7 +1858,7 @@ Public Sub RemoveFilter(ByVal filter As FiltersClass) SyncLock Me._lockObj _filters.Remove(filter) - _filterMod = True + Me.FilterModified = True End SyncLock End Sub @@ -1926,7 +1866,7 @@ SyncLock Me._lockObj If _filters.Contains(filter) Then Return False _filters.Add(filter) - _filterMod = True + Me.FilterModified = True Return True End SyncLock End Function @@ -1950,7 +1890,7 @@ original.ExSource = modified.ExSource original.MoveFrom = modified.MoveFrom original.SetMark = modified.SetMark - _filterMod = True + Me.FilterModified = True End Sub _ @@ -1989,7 +1929,7 @@ _ids.Clear() _tmpIds.Clear() _unreadCount = 0 - _oldestUnreadItem = -1 + Me.OldestUnreadId = -1 If _posts IsNot Nothing Then _posts.Clear() End If @@ -2005,26 +1945,12 @@ _ Public Property FilterModified() As Boolean - Get - Return _filterMod - End Get - Set(ByVal value As Boolean) - _filterMod = value - End Set - End Property Public Function BackupIds() As Long() Return _ids.ToArray() End Function - Public Property TabName() As String - Get - Return _tabName - End Get - Set(ByVal value As String) - _tabName = value - End Set - End Property + Public Property TabName() As String = "" Public Property TabType() As TabUsageType Get Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-27 12:26:00 UTC (rev 1264) +++ trunk/Tween/Tween.vb 2010-12-27 16:25:48 UTC (rev 1265) @@ -3526,7 +3526,7 @@ Return True End Function - Public Function RemoveSpecifiedTab(ByVal TabName As String) As Boolean + Public Function RemoveSpecifiedTab(ByVal TabName As String, ByVal confirm As Boolean) As Boolean Dim idx As Integer = 0 For idx = 0 To ListTab.TabPages.Count - 1 If ListTab.TabPages(idx).Text = TabName Then Exit For @@ -3534,10 +3534,12 @@ If _statuses.IsDefaultTab(TabName) Then Return False - Dim tmp As String = String.Format(My.Resources.RemoveSpecifiedTabText1, Environment.NewLine) - If MessageBox.Show(tmp, TabName + " " + My.Resources.RemoveSpecifiedTabText2, _ - MessageBoxButtons.OKCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) = Windows.Forms.DialogResult.Cancel Then - Return False + If confirm Then + Dim tmp As String = String.Format(My.Resources.RemoveSpecifiedTabText1, Environment.NewLine) + If MessageBox.Show(tmp, TabName + " " + My.Resources.RemoveSpecifiedTabText2, _ + MessageBoxButtons.OKCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) = Windows.Forms.DialogResult.Cancel Then + Return False + End If End If SetListProperty() '他のタブに列幅等を反映 @@ -4815,6 +4817,25 @@ e.Handled = True e.SuppressKeyPress = True GetTimeline(WORKERTYPE.DirectMessegeRcv, 1, 0, "") + ElseIf e.KeyCode = Keys.Escape Then + If ListTab.SelectedTab IsNot Nothing AndAlso _statuses.Tabs(ListTab.SelectedTab.Text).TabType = TabUsageType.Related Then + Dim relTp As TabPage = ListTab.SelectedTab + Dim backToTab As TabClass = _statuses.Tabs(relTp.Text).BackToTab + If backToTab IsNot Nothing Then + Try + For Each tp As TabPage In ListTab.TabPages + If tp.Text = backToTab.TabName Then + ListTab.SelectTab(tp) + Exit For + End If + Next + Catch ex As Exception + + End Try + End If + RemoveSpecifiedTab(relTp.Text, False) + SaveConfigsTabs() + End If End If End If @@ -6898,7 +6919,7 @@ Private Sub DeleteTabMenuItem_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles DeleteTabMenuItem.Click, DeleteTbMenuItem.Click If String.IsNullOrEmpty(_rclickTabName) OrElse sender Is Me.DeleteTbMenuItem Then _rclickTabName = ListTab.SelectedTab.Text - RemoveSpecifiedTab(_rclickTabName) + RemoveSpecifiedTab(_rclickTabName, True) SaveConfigsTabs() End Sub @@ -9858,6 +9879,7 @@ Private Sub CopyUserIdStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CopyUserIdStripMenuItem.Click CopyUserId() End Sub + Private Sub CopyUserId() If _curPost Is Nothing Then Exit Sub Dim clstr As String = _curPost.Name @@ -9869,6 +9891,7 @@ End Sub Private Sub ShowRelatedStatusesMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ShowRelatedStatusesMenuItem.Click, ShowRelatedStatusesMenuItem2.Click + Dim backToTab As TabClass = If(_curTab Is Nothing, _statuses.Tabs(ListTab.SelectedTab.Text), _statuses.Tabs(_curTab.Text)) If Me.ExistCurrentPost AndAlso Not _curPost.IsDm Then 'PublicSearchも除外した方がよい? If _statuses.GetTabByType(TabUsageType.Related) Is Nothing Then @@ -9886,10 +9909,12 @@ _statuses.AddTab(tName, TabUsageType.Related, Nothing) End If _statuses.GetTabByName(tName).UnreadManage = False + _statuses.GetTabByName(tName).Notify = False End If Dim tb As TabClass = _statuses.GetTabByType(TabUsageType.Related) tb.RelationTargetPost = _curPost + tb.BackToTab = backToTab Me.ClearTab(tb.TabName, False) For i As Integer = 0 To ListTab.TabPages.Count - 1 If tb.TabName = ListTab.TabPages(i).Text Then Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-27 12:26:00 UTC (rev 1264) +++ trunk/Tween/Twitter.vb 2010-12-27 16:25:48 UTC (rev 1265) @@ -1612,10 +1612,21 @@ End Function Public Function GetRelatedResult(ByVal read As Boolean, ByVal tab As TabClass) As String + Dim rslt As String = "" Dim relPosts As New List(Of PostClass) + If tab.RelationTargetPost.Data.Contains("@") AndAlso tab.RelationTargetPost.InReplyToId = 0 Then + '検索結果対応 + Dim p As PostClass = TabInformations.GetInstance.Item(tab.RelationTargetPost.Id) + If p IsNot Nothing AndAlso p.InReplyToId > 0 Then + tab.RelationTargetPost = p + Else + rslt = Me.GetStatusApi(read, tab.RelationTargetPost.Id, p) + If Not String.IsNullOrEmpty(rslt) Then Return rslt + tab.RelationTargetPost = p + End If + End If relPosts.Add(tab.RelationTargetPost.Copy) Dim tmpPost As PostClass = relPosts(0) - Dim rslt As String = "" Do rslt = Me.GetRelatedResultsApi(read, tmpPost, tab, relPosts) If Not String.IsNullOrEmpty(rslt) Then Exit Do From svnnotify @ sourceforge.jp Tue Dec 28 02:23:16 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 28 Dec 2010 02:23:16 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNjZdICDnmbroqIDoqbPntLDjga5Tb3VyY2U=?= =?utf-8?b?6KGo56S644Gudmlh44KS5YmK6Zmk?= Message-ID: <1293470596.306021.11303.nullmailer@users.sourceforge.jp> Revision: 1266 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1266 Author: kiri_feather Date: 2010-12-28 02:23:16 +0900 (Tue, 28 Dec 2010) Log Message: ----------- 発言詳細のSource表示のviaを削除 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-27 16:25:48 UTC (rev 1265) +++ trunk/Tween/Tween.vb 2010-12-27 17:23:16 UTC (rev 1266) @@ -4585,7 +4585,7 @@ SourceLinkLabel.Text = "" 'SourceLinkLabel.Visible = False Else - SourceLinkLabel.Text = "via " + _curPost.Source + SourceLinkLabel.Text = _curPost.Source 'SourceLinkLabel.Visible = True End If End If From svnnotify @ sourceforge.jp Tue Dec 28 04:57:29 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 28 Dec 2010 04:57:29 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNjddIFsg44Gn5Y+W5b6X44CB6L+95Yqg44GV?= =?utf-8?b?44KM44GfSW5SZXBseVRv44GM5pyq6Kqt44Gr44Gq44KL44GT44Go44GM44GC?= =?utf-8?b?44KL44Gu44Gn44CB5pei6Kqt44Gr44Gq44KL44KI44GG44Gr5L+u5q2j?= Message-ID: <1293479849.572016.10187.nullmailer@users.sourceforge.jp> Revision: 1267 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1267 Author: anis774 Date: 2010-12-28 04:57:29 +0900 (Tue, 28 Dec 2010) Log Message: ----------- [で取得、追加されたInReplyToが未読になることがあるので、既読になるように修正 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-27 17:23:16 UTC (rev 1266) +++ trunk/Tween/Tween.vb 2010-12-27 19:57:29 UTC (rev 1267) @@ -5524,6 +5524,7 @@ Dim post As PostClass = Nothing Dim r As String = tw.GetStatusApi(False, _curPost.InReplyToId, post) If r = "" AndAlso post IsNot Nothing Then + post.IsRead = True _statuses.AddPost(post) _statuses.DistributePosts() _statuses.SubmitUpdate(Nothing, Nothing, Nothing, False) From svnnotify @ sourceforge.jp Tue Dec 28 05:22:27 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 28 Dec 2010 05:22:27 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNjhdICDjgrvjg7Pjgr/jg7zjgq/jg6rjg4M=?= =?utf-8?b?44Kv44Gn44Gu44K/44OW5YmK6Zmk44KS5a6f6KOF?= Message-ID: <1293481347.191876.9464.nullmailer@users.sourceforge.jp> Revision: 1268 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1268 Author: anis774 Date: 2010-12-28 05:22:27 +0900 (Tue, 28 Dec 2010) Log Message: ----------- センタークリックでのタブ削除を実装 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-27 19:57:29 UTC (rev 1267) +++ trunk/Tween/Tween.vb 2010-12-27 20:22:27 UTC (rev 1268) @@ -6380,6 +6380,18 @@ End If End Function + Private Sub ListTab_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles ListTab.MouseClick + If e.Button = Windows.Forms.MouseButtons.Middle Then + For i As Integer = 0 To Me.ListTab.TabPages.Count - 1 + If Me.ListTab.GetTabRect(i).Contains(e.Location) Then + Me.RemoveSpecifiedTab(Me.ListTab.TabPages(i).Text, True) + Me.SaveConfigsTabs() + Exit For + End If + Next + End If + End Sub + Private Sub Tabs_DoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles ListTab.MouseDoubleClick Dim tn As String = ListTab.SelectedTab.Text TabRename(tn) @@ -6389,9 +6401,7 @@ Dim cpos As New Point(e.X, e.Y) If e.Button = Windows.Forms.MouseButtons.Left Then For i As Integer = 0 To ListTab.TabPages.Count - 1 - Dim rect As Rectangle = ListTab.GetTabRect(i) - If rect.Left <= cpos.X AndAlso cpos.X <= rect.Right AndAlso _ - rect.Top <= cpos.Y AndAlso cpos.Y <= rect.Bottom Then + If Me.ListTab.GetTabRect(i).Contains(e.Location) Then _tabDrag = True Exit For End If @@ -10148,5 +10158,4 @@ Return True End Get End Property - End Class From svnnotify @ sourceforge.jp Tue Dec 28 09:47:39 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 28 Dec 2010 09:47:39 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNjldIF0g44Gn44Gd44Gu44Od44K544OI44Gr?= =?utf-8?b?5a++44GZ44KL44Oq44OX44Op44Kk44KS6YG45oqe44GZ44KL5qmf6IO944KS?= =?utf-8?b?5a6f6KOF44CC?= Message-ID: <1293497259.025700.4390.nullmailer@users.sourceforge.jp> Revision: 1269 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1269 Author: anis774 Date: 2010-12-28 09:47:38 +0900 (Tue, 28 Dec 2010) Log Message: ----------- ]でそのポストに対するリプライを選択する機能を実装。 Shift + ] で同じポストへのリプライに移動 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-27 20:22:27 UTC (rev 1268) +++ trunk/Tween/Tween.vb 2010-12-28 00:47:38 UTC (rev 1269) @@ -1604,7 +1604,7 @@ Private Function JudgeColor(ByVal BasePost As PostClass, ByVal TargetPost As PostClass) As Color Dim cl As Color - If TargetPost.Id = BasePost.InReplyToId Then + If TargetPost.Id = BasePost.InReplyToId OrElse BasePost.Id = TargetPost.InReplyToId Then '@先 cl = _clAtTo ElseIf TargetPost.IsMe Then @@ -5011,6 +5011,10 @@ e.Handled = True e.SuppressKeyPress = True SendKeys.Send("{UP}") + ElseIf e.KeyCode = Keys.Oem6 AndAlso Not e.Alt Then + e.Handled = True + e.SuppressKeyPress = True + GoBackInReplyToPost(True) End If ' お気に入り前後ジャンプ(SHIFT+N←/P→) @@ -5556,27 +5560,100 @@ listView.EnsureVisible(inReplyToIndex) End Sub - Private Sub GoBackInReplyToPost() + Private Sub GoBackInReplyToPost(Optional ByVal isShiftKeyPress As Boolean = False) If replyChains Is Nothing OrElse replyChains.Count < 1 Then - Exit Sub - End If + If _curPost Is Nothing Then Return - Dim chainHead As ReplyChain = replyChains.Pop() - If chainHead.InReplyToId = _curPost.Id Then - Dim idx As Integer = _statuses.Tabs(chainHead.OriginalTab.Text).IndexOf(chainHead.OriginalId) - If idx = -1 Then - replyChains = Nothing + Dim curTabClass As TabClass = _statuses.Tabs(_curTab.Text) + Dim curTabPosts As Dictionary(Of Long, PostClass) = DirectCast(IIf(curTabClass.IsInnerStorageTabType, curTabClass.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) + + If isShiftKeyPress Then + Dim posts = From p In curTabPosts + Where p.Value.Id <> _curPost.Id AndAlso p.Value.InReplyToId = _curPost.InReplyToId + Let indexOf = curTabClass.IndexOf(p.Value.Id) + Where indexOf > -1 + Order By indexOf + Select New With {.Post = p.Value, .Index = indexOf} + + Try + Dim postList = posts.ToList() + Dim post = postList.FirstOrDefault(Function(p) + Return p.Index > curTabClass.IndexOf(_curPost.Id) + End Function) + If post Is Nothing Then + post = postList.First() + End If + SelectListItem(_curList, post.Index) + _curList.EnsureVisible(post.Index) + Catch ex As InvalidOperationException + Dim posts2 = From t In _statuses.Tabs + Where t.Value IsNot curTabClass + From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) + Where p.Value.Id <> _curPost.Id AndAlso p.Value.InReplyToId = _curPost.InReplyToId + Let indexOf = t.Value.IndexOf(p.Value.Id) + Where indexOf > -1 + Order By indexOf + Select New With {.Tab = t.Value, .Post = p.Value, .Index = indexOf} + Try + Dim post = posts2.First() + Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) + Dim listView = DirectCast(Me.ListTab.SelectedTab.Tag, DetailsListView) + SelectListItem(listView, post.Index) + listView.EnsureVisible(post.Index) + Catch ex2 As InvalidOperationException + Exit Sub + End Try + End Try Else + Dim posts = From p In curTabPosts + Where p.Value.InReplyToId = _curPost.Id + Let indexOf = curTabClass.IndexOf(p.Value.Id) + Where indexOf > -1 + Order By indexOf + Select New With {.Post = p.Value, .Index = indexOf} Try - ListTab.SelectTab(chainHead.OriginalTab) - Catch ex As Exception - replyChains = Nothing + Dim post = posts.First() + SelectListItem(_curList, post.Index) + _curList.EnsureVisible(post.Index) + Catch ex As InvalidOperationException + Dim posts2 = From t In _statuses.Tabs + Where t.Value IsNot curTabClass + From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) + Where p.Value.InReplyToId = _curPost.Id + Let indexOf = t.Value.IndexOf(p.Value.Id) + Where indexOf > -1 + Order By indexOf + Select New With {.Tab = t.Value, .Post = p.Value, .Index = indexOf} + Try + Dim post = posts2.First() + Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) + Dim listView = DirectCast(Me.ListTab.SelectedTab.Tag, DetailsListView) + SelectListItem(listView, post.Index) + listView.EnsureVisible(post.Index) + Catch ex2 As InvalidOperationException + Exit Sub + End Try End Try - SelectListItem(_curList, idx) - _curList.EnsureVisible(idx) End If Else - replyChains = Nothing + Dim chainHead As ReplyChain = replyChains.Pop() + If chainHead.InReplyToId = _curPost.Id Then + Dim idx As Integer = _statuses.Tabs(chainHead.OriginalTab.Text).IndexOf(chainHead.OriginalId) + If idx = -1 Then + replyChains = Nothing + Else + Try + ListTab.SelectTab(chainHead.OriginalTab) + Catch ex As Exception + replyChains = Nothing + End Try + SelectListItem(_curList, idx) + _curList.EnsureVisible(idx) + End If + Else + replyChains = Nothing + Me.GoBackInReplyToPost(isShiftKeyPress) + End If End If End Sub From svnnotify @ sourceforge.jp Tue Dec 28 10:05:05 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 28 Dec 2010 10:05:05 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNzBdIFNoaWZ0ICsgXSAg44GM5YuV5L2c44GX?= =?utf-8?b?44Gq44GE44Kz44O844OJ44OR44K544GM44GC44Gj44Gf44Gu44KS5L+u5q2j?= Message-ID: <1293498305.655720.26450.nullmailer@users.sourceforge.jp> Revision: 1270 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1270 Author: anis774 Date: 2010-12-28 10:05:05 +0900 (Tue, 28 Dec 2010) Log Message: ----------- Shift + ] が動作しないコードパスがあったのを修正 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-28 00:47:38 UTC (rev 1269) +++ trunk/Tween/Tween.vb 2010-12-28 01:05:05 UTC (rev 1270) @@ -5561,50 +5561,50 @@ End Sub Private Sub GoBackInReplyToPost(Optional ByVal isShiftKeyPress As Boolean = False) - If replyChains Is Nothing OrElse replyChains.Count < 1 Then - If _curPost Is Nothing Then Return + If _curPost Is Nothing Then Return - Dim curTabClass As TabClass = _statuses.Tabs(_curTab.Text) - Dim curTabPosts As Dictionary(Of Long, PostClass) = DirectCast(IIf(curTabClass.IsInnerStorageTabType, curTabClass.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) + Dim curTabClass As TabClass = _statuses.Tabs(_curTab.Text) + Dim curTabPosts As Dictionary(Of Long, PostClass) = DirectCast(IIf(curTabClass.IsInnerStorageTabType, curTabClass.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) - If isShiftKeyPress Then - Dim posts = From p In curTabPosts + If isShiftKeyPress Then + Dim posts = From p In curTabPosts + Where p.Value.Id <> _curPost.Id AndAlso p.Value.InReplyToId = _curPost.InReplyToId + Let indexOf = curTabClass.IndexOf(p.Value.Id) + Where indexOf > -1 + Order By indexOf + Select New With {.Post = p.Value, .Index = indexOf} + + Try + Dim postList = posts.ToList() + Dim post = postList.FirstOrDefault(Function(p) + Return p.Index > curTabClass.IndexOf(_curPost.Id) + End Function) + If post Is Nothing Then + post = postList.First() + End If + SelectListItem(_curList, post.Index) + _curList.EnsureVisible(post.Index) + Catch ex As InvalidOperationException + Dim posts2 = From t In _statuses.Tabs + Where t.Value IsNot curTabClass + From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) Where p.Value.Id <> _curPost.Id AndAlso p.Value.InReplyToId = _curPost.InReplyToId - Let indexOf = curTabClass.IndexOf(p.Value.Id) + Let indexOf = t.Value.IndexOf(p.Value.Id) Where indexOf > -1 Order By indexOf - Select New With {.Post = p.Value, .Index = indexOf} - + Select New With {.Tab = t.Value, .Post = p.Value, .Index = indexOf} Try - Dim postList = posts.ToList() - Dim post = postList.FirstOrDefault(Function(p) - Return p.Index > curTabClass.IndexOf(_curPost.Id) - End Function) - If post Is Nothing Then - post = postList.First() - End If - SelectListItem(_curList, post.Index) - _curList.EnsureVisible(post.Index) - Catch ex As InvalidOperationException - Dim posts2 = From t In _statuses.Tabs - Where t.Value IsNot curTabClass - From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) - Where p.Value.Id <> _curPost.Id AndAlso p.Value.InReplyToId = _curPost.InReplyToId - Let indexOf = t.Value.IndexOf(p.Value.Id) - Where indexOf > -1 - Order By indexOf - Select New With {.Tab = t.Value, .Post = p.Value, .Index = indexOf} - Try - Dim post = posts2.First() - Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) - Dim listView = DirectCast(Me.ListTab.SelectedTab.Tag, DetailsListView) - SelectListItem(listView, post.Index) - listView.EnsureVisible(post.Index) - Catch ex2 As InvalidOperationException - Exit Sub - End Try + Dim post = posts2.First() + Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) + Dim listView = DirectCast(Me.ListTab.SelectedTab.Tag, DetailsListView) + SelectListItem(listView, post.Index) + listView.EnsureVisible(post.Index) + Catch ex2 As InvalidOperationException + Exit Sub End Try - Else + End Try + Else + If replyChains Is Nothing OrElse replyChains.Count < 1 Then Dim posts = From p In curTabPosts Where p.Value.InReplyToId = _curPost.Id Let indexOf = curTabClass.IndexOf(p.Value.Id) @@ -5634,25 +5634,25 @@ Exit Sub End Try End Try - End If - Else - Dim chainHead As ReplyChain = replyChains.Pop() - If chainHead.InReplyToId = _curPost.Id Then - Dim idx As Integer = _statuses.Tabs(chainHead.OriginalTab.Text).IndexOf(chainHead.OriginalId) - If idx = -1 Then + Else + Dim chainHead As ReplyChain = replyChains.Pop() + If chainHead.InReplyToId = _curPost.Id Then + Dim idx As Integer = _statuses.Tabs(chainHead.OriginalTab.Text).IndexOf(chainHead.OriginalId) + If idx = -1 Then + replyChains = Nothing + Else + Try + ListTab.SelectTab(chainHead.OriginalTab) + Catch ex As Exception + replyChains = Nothing + End Try + SelectListItem(_curList, idx) + _curList.EnsureVisible(idx) + End If + Else replyChains = Nothing - Else - Try - ListTab.SelectTab(chainHead.OriginalTab) - Catch ex As Exception - replyChains = Nothing - End Try - SelectListItem(_curList, idx) - _curList.EnsureVisible(idx) + Me.GoBackInReplyToPost(isShiftKeyPress) End If - Else - replyChains = Nothing - Me.GoBackInReplyToPost(isShiftKeyPress) End If End If End Sub From svnnotify @ sourceforge.jp Tue Dec 28 10:20:00 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 28 Dec 2010 10:20:00 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNzFdICDjg6rjg5fjg6njgqTjgafjgarjgYQ=?= =?utf-8?b?44Od44K544OI44Gn44KCU2hpZnQgKyBdICDjgYzli5XkvZzjgZfjgabjgYQ=?= =?utf-8?b?44Gf44Gu44Gn44CB5YuV44GL44Gq44GE44KI44GG44Gr5L+u5q2j?= Message-ID: <1293499200.594702.12452.nullmailer@users.sourceforge.jp> Revision: 1271 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1271 Author: anis774 Date: 2010-12-28 10:20:00 +0900 (Tue, 28 Dec 2010) Log Message: ----------- リプライでないポストでもShift + ] が動作していたので、動かないように修正 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-28 01:05:05 UTC (rev 1270) +++ trunk/Tween/Tween.vb 2010-12-28 01:20:00 UTC (rev 1271) @@ -5566,7 +5566,7 @@ Dim curTabClass As TabClass = _statuses.Tabs(_curTab.Text) Dim curTabPosts As Dictionary(Of Long, PostClass) = DirectCast(IIf(curTabClass.IsInnerStorageTabType, curTabClass.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) - If isShiftKeyPress Then + If isShiftKeyPress AndAlso _curPost.InReplyToId <> 0 Then Dim posts = From p In curTabPosts Where p.Value.Id <> _curPost.Id AndAlso p.Value.InReplyToId = _curPost.InReplyToId Let indexOf = curTabClass.IndexOf(p.Value.Id) From svnnotify @ sourceforge.jp Tue Dec 28 13:42:19 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 28 Dec 2010 13:42:19 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNzJdICDmpJzntKLjga7jgr/jg5bjgadVc2Vy?= =?utf-8?b?X1RpbWVsaW5l44KS5Y+W5b6X44Gn44GN44KL44KI44GG44Gr?= Message-ID: <1293511339.917082.27386.nullmailer@users.sourceforge.jp> Revision: 1272 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1272 Author: f_swallow Date: 2010-12-28 13:42:19 +0900 (Tue, 28 Dec 2010) Log Message: ----------- 検索のタブでUser_Timelineを取得できるように Modified Paths: -------------- trunk/Tween/AppendSettingDialog.Designer.vb trunk/Tween/AppendSettingDialog.resx trunk/Tween/AppendSettingDialog.vb trunk/Tween/MyCommon.vb trunk/Tween/Setting/SettingCommon.vb trunk/Tween/StatusDictionary.vb trunk/Tween/Tween.vb trunk/Tween/Twitter.vb -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.Designer.vb =================================================================== --- trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-28 01:20:00 UTC (rev 1271) +++ trunk/Tween/AppendSettingDialog.Designer.vb 2010-12-28 04:42:19 UTC (rev 1272) @@ -25,6 +25,22 @@ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AppendSettingDialog)) Me.SplitContainer1 = New System.Windows.Forms.SplitContainer() Me.TreeView1 = New System.Windows.Forms.TreeView() + Me.GetCountPanel = New System.Windows.Forms.Panel() + Me.UserTimelineTextCountApi = New System.Windows.Forms.TextBox() + Me.Label17 = New System.Windows.Forms.Label() + Me.Label30 = New System.Windows.Forms.Label() + Me.Label28 = New System.Windows.Forms.Label() + Me.Label19 = New System.Windows.Forms.Label() + Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() + Me.SearchTextCountApi = New System.Windows.Forms.TextBox() + Me.Label66 = New System.Windows.Forms.Label() + Me.FirstTextCountApi = New System.Windows.Forms.TextBox() + Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() + Me.Label53 = New System.Windows.Forms.Label() + Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() + Me.TextCountApiReply = New System.Windows.Forms.TextBox() + Me.Label67 = New System.Windows.Forms.Label() + Me.TextCountApi = New System.Windows.Forms.TextBox() Me.BasedPanel = New System.Windows.Forms.Panel() Me.AuthBasicRadio = New System.Windows.Forms.RadioButton() Me.AuthOAuthRadio = New System.Windows.Forms.RadioButton() @@ -59,20 +75,6 @@ Me.CheckStartupFollowers = New System.Windows.Forms.CheckBox() Me.CheckStartupVersion = New System.Windows.Forms.CheckBox() Me.chkGetFav = New System.Windows.Forms.CheckBox() - Me.GetCountPanel = New System.Windows.Forms.Panel() - Me.Label30 = New System.Windows.Forms.Label() - Me.Label28 = New System.Windows.Forms.Label() - Me.Label19 = New System.Windows.Forms.Label() - Me.FavoritesTextCountApi = New System.Windows.Forms.TextBox() - Me.SearchTextCountApi = New System.Windows.Forms.TextBox() - Me.Label66 = New System.Windows.Forms.Label() - Me.FirstTextCountApi = New System.Windows.Forms.TextBox() - Me.GetMoreTextCountApi = New System.Windows.Forms.TextBox() - Me.Label53 = New System.Windows.Forms.Label() - Me.UseChangeGetCount = New System.Windows.Forms.CheckBox() - Me.TextCountApiReply = New System.Windows.Forms.TextBox() - Me.Label67 = New System.Windows.Forms.Label() - Me.TextCountApi = New System.Windows.Forms.TextBox() Me.UserStreamPanel = New System.Windows.Forms.Panel() Me.UserstreamPeriod = New System.Windows.Forms.TextBox() Me.StartupUserstreamCheck = New System.Windows.Forms.CheckBox() @@ -242,10 +244,10 @@ Me.SplitContainer1.Panel1.SuspendLayout() Me.SplitContainer1.Panel2.SuspendLayout() Me.SplitContainer1.SuspendLayout() + Me.GetCountPanel.SuspendLayout() Me.BasedPanel.SuspendLayout() Me.GetPeriodPanel.SuspendLayout() Me.StartupPanel.SuspendLayout() - Me.GetCountPanel.SuspendLayout() Me.UserStreamPanel.SuspendLayout() Me.ActionPanel.SuspendLayout() Me.GroupBox3.SuspendLayout() @@ -269,12 +271,10 @@ ' 'SplitContainer1.Panel1 ' - resources.ApplyResources(Me.SplitContainer1.Panel1, "SplitContainer1.Panel1") Me.SplitContainer1.Panel1.Controls.Add(Me.TreeView1) ' 'SplitContainer1.Panel2 ' - resources.ApplyResources(Me.SplitContainer1.Panel2, "SplitContainer1.Panel2") Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Control Me.SplitContainer1.Panel2.Controls.Add(Me.BasedPanel) Me.SplitContainer1.Panel2.Controls.Add(Me.GetPeriodPanel) @@ -295,16 +295,111 @@ ' 'TreeView1 ' + Me.TreeView1.Cursor = System.Windows.Forms.Cursors.Hand resources.ApplyResources(Me.TreeView1, "TreeView1") - Me.TreeView1.Cursor = System.Windows.Forms.Cursors.Hand Me.TreeView1.HideSelection = False Me.TreeView1.Name = "TreeView1" Me.TreeView1.Nodes.AddRange(New System.Windows.Forms.TreeNode() {CType(resources.GetObject("TreeView1.Nodes"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes1"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes2"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes3"), System.Windows.Forms.TreeNode), CType(resources.GetObject("TreeView1.Nodes4"), System.Windows.Forms.TreeNode)}) Me.TreeView1.ShowLines = False ' + 'GetCountPanel + ' + Me.GetCountPanel.Controls.Add(Me.UserTimelineTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label17) + Me.GetCountPanel.Controls.Add(Me.Label30) + Me.GetCountPanel.Controls.Add(Me.Label28) + Me.GetCountPanel.Controls.Add(Me.Label19) + Me.GetCountPanel.Controls.Add(Me.FavoritesTextCountApi) + Me.GetCountPanel.Controls.Add(Me.SearchTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label66) + Me.GetCountPanel.Controls.Add(Me.FirstTextCountApi) + Me.GetCountPanel.Controls.Add(Me.GetMoreTextCountApi) + Me.GetCountPanel.Controls.Add(Me.Label53) + Me.GetCountPanel.Controls.Add(Me.UseChangeGetCount) + Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) + Me.GetCountPanel.Controls.Add(Me.Label67) + Me.GetCountPanel.Controls.Add(Me.TextCountApi) + resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") + Me.GetCountPanel.Name = "GetCountPanel" + ' + 'UserTimelineTextCountApi + ' + resources.ApplyResources(Me.UserTimelineTextCountApi, "UserTimelineTextCountApi") + Me.UserTimelineTextCountApi.Name = "UserTimelineTextCountApi" + ' + 'Label17 + ' + resources.ApplyResources(Me.Label17, "Label17") + Me.Label17.Name = "Label17" + ' + 'Label30 + ' + resources.ApplyResources(Me.Label30, "Label30") + Me.Label30.Name = "Label30" + ' + 'Label28 + ' + resources.ApplyResources(Me.Label28, "Label28") + Me.Label28.Name = "Label28" + ' + 'Label19 + ' + resources.ApplyResources(Me.Label19, "Label19") + Me.Label19.Name = "Label19" + ' + 'FavoritesTextCountApi + ' + resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") + Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" + ' + 'SearchTextCountApi + ' + resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") + Me.SearchTextCountApi.Name = "SearchTextCountApi" + ' + 'Label66 + ' + resources.ApplyResources(Me.Label66, "Label66") + Me.Label66.Name = "Label66" + ' + 'FirstTextCountApi + ' + resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") + Me.FirstTextCountApi.Name = "FirstTextCountApi" + ' + 'GetMoreTextCountApi + ' + resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") + Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" + ' + 'Label53 + ' + resources.ApplyResources(Me.Label53, "Label53") + Me.Label53.Name = "Label53" + ' + 'UseChangeGetCount + ' + resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") + Me.UseChangeGetCount.Name = "UseChangeGetCount" + Me.UseChangeGetCount.UseVisualStyleBackColor = True + ' + 'TextCountApiReply + ' + resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") + Me.TextCountApiReply.Name = "TextCountApiReply" + ' + 'Label67 + ' + resources.ApplyResources(Me.Label67, "Label67") + Me.Label67.Name = "Label67" + ' + 'TextCountApi + ' + resources.ApplyResources(Me.TextCountApi, "TextCountApi") + Me.TextCountApi.Name = "TextCountApi" + ' 'BasedPanel ' - resources.ApplyResources(Me.BasedPanel, "BasedPanel") Me.BasedPanel.Controls.Add(Me.AuthBasicRadio) Me.BasedPanel.Controls.Add(Me.AuthOAuthRadio) Me.BasedPanel.Controls.Add(Me.Label6) @@ -317,6 +412,7 @@ Me.BasedPanel.Controls.Add(Me.Label2) Me.BasedPanel.Controls.Add(Me.Username) Me.BasedPanel.Controls.Add(Me.Password) + resources.ApplyResources(Me.BasedPanel, "BasedPanel") Me.BasedPanel.Name = "BasedPanel" ' 'AuthBasicRadio @@ -346,14 +442,14 @@ ' 'AuthUserLabel ' + Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.AuthUserLabel, "AuthUserLabel") - Me.AuthUserLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.AuthUserLabel.Name = "AuthUserLabel" ' 'AuthStateLabel ' + Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.AuthStateLabel, "AuthStateLabel") - Me.AuthStateLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.AuthStateLabel.Name = "AuthStateLabel" ' 'Label4 @@ -390,7 +486,6 @@ ' 'GetPeriodPanel ' - resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") Me.GetPeriodPanel.Controls.Add(Me.TimelinePeriod) Me.GetPeriodPanel.Controls.Add(Me.Label3) Me.GetPeriodPanel.Controls.Add(Me.ButtonApiCalc) @@ -406,6 +501,7 @@ Me.GetPeriodPanel.Controls.Add(Me.CheckPeriodAdjust) Me.GetPeriodPanel.Controls.Add(Me.Label5) Me.GetPeriodPanel.Controls.Add(Me.DMPeriod) + resources.ApplyResources(Me.GetPeriodPanel, "GetPeriodPanel") Me.GetPeriodPanel.Name = "GetPeriodPanel" ' 'TimelinePeriod @@ -488,11 +584,11 @@ ' 'StartupPanel ' - resources.ApplyResources(Me.StartupPanel, "StartupPanel") Me.StartupPanel.Controls.Add(Me.StartupReaded) Me.StartupPanel.Controls.Add(Me.CheckStartupFollowers) Me.StartupPanel.Controls.Add(Me.CheckStartupVersion) Me.StartupPanel.Controls.Add(Me.chkGetFav) + resources.ApplyResources(Me.StartupPanel, "StartupPanel") Me.StartupPanel.Name = "StartupPanel" ' 'StartupReaded @@ -519,96 +615,12 @@ Me.chkGetFav.Name = "chkGetFav" Me.chkGetFav.UseVisualStyleBackColor = True ' - 'GetCountPanel - ' - resources.ApplyResources(Me.GetCountPanel, "GetCountPanel") - Me.GetCountPanel.Controls.Add(Me.Label30) - Me.GetCountPanel.Controls.Add(Me.Label28) - Me.GetCountPanel.Controls.Add(Me.Label19) - Me.GetCountPanel.Controls.Add(Me.FavoritesTextCountApi) - Me.GetCountPanel.Controls.Add(Me.SearchTextCountApi) - Me.GetCountPanel.Controls.Add(Me.Label66) - Me.GetCountPanel.Controls.Add(Me.FirstTextCountApi) - Me.GetCountPanel.Controls.Add(Me.GetMoreTextCountApi) - Me.GetCountPanel.Controls.Add(Me.Label53) - Me.GetCountPanel.Controls.Add(Me.UseChangeGetCount) - Me.GetCountPanel.Controls.Add(Me.TextCountApiReply) - Me.GetCountPanel.Controls.Add(Me.Label67) - Me.GetCountPanel.Controls.Add(Me.TextCountApi) - Me.GetCountPanel.Name = "GetCountPanel" - ' - 'Label30 - ' - resources.ApplyResources(Me.Label30, "Label30") - Me.Label30.Name = "Label30" - ' - 'Label28 - ' - resources.ApplyResources(Me.Label28, "Label28") - Me.Label28.Name = "Label28" - ' - 'Label19 - ' - resources.ApplyResources(Me.Label19, "Label19") - Me.Label19.Name = "Label19" - ' - 'FavoritesTextCountApi - ' - resources.ApplyResources(Me.FavoritesTextCountApi, "FavoritesTextCountApi") - Me.FavoritesTextCountApi.Name = "FavoritesTextCountApi" - ' - 'SearchTextCountApi - ' - resources.ApplyResources(Me.SearchTextCountApi, "SearchTextCountApi") - Me.SearchTextCountApi.Name = "SearchTextCountApi" - ' - 'Label66 - ' - resources.ApplyResources(Me.Label66, "Label66") - Me.Label66.Name = "Label66" - ' - 'FirstTextCountApi - ' - resources.ApplyResources(Me.FirstTextCountApi, "FirstTextCountApi") - Me.FirstTextCountApi.Name = "FirstTextCountApi" - ' - 'GetMoreTextCountApi - ' - resources.ApplyResources(Me.GetMoreTextCountApi, "GetMoreTextCountApi") - Me.GetMoreTextCountApi.Name = "GetMoreTextCountApi" - ' - 'Label53 - ' - resources.ApplyResources(Me.Label53, "Label53") - Me.Label53.Name = "Label53" - ' - 'UseChangeGetCount - ' - resources.ApplyResources(Me.UseChangeGetCount, "UseChangeGetCount") - Me.UseChangeGetCount.Name = "UseChangeGetCount" - Me.UseChangeGetCount.UseVisualStyleBackColor = True - ' - 'TextCountApiReply - ' - resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") - Me.TextCountApiReply.Name = "TextCountApiReply" - ' - 'Label67 - ' - resources.ApplyResources(Me.Label67, "Label67") - Me.Label67.Name = "Label67" - ' - 'TextCountApi - ' - resources.ApplyResources(Me.TextCountApi, "TextCountApi") - Me.TextCountApi.Name = "TextCountApi" - ' 'UserStreamPanel ' - resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") Me.UserStreamPanel.Controls.Add(Me.UserstreamPeriod) Me.UserStreamPanel.Controls.Add(Me.StartupUserstreamCheck) Me.UserStreamPanel.Controls.Add(Me.Label83) + resources.ApplyResources(Me.UserStreamPanel, "UserStreamPanel") Me.UserStreamPanel.Name = "UserStreamPanel" ' 'UserstreamPeriod @@ -629,7 +641,6 @@ ' 'ActionPanel ' - resources.ApplyResources(Me.ActionPanel, "ActionPanel") Me.ActionPanel.Controls.Add(Me.GroupBox3) Me.ActionPanel.Controls.Add(Me.CheckHashSupple) Me.ActionPanel.Controls.Add(Me.CheckAtIdSupple) @@ -645,11 +656,11 @@ Me.ActionPanel.Controls.Add(Me.CheckCloseToExit) Me.ActionPanel.Controls.Add(Me.CheckMinimizeToTray) Me.ActionPanel.Controls.Add(Me.CheckReadOldPosts) + resources.ApplyResources(Me.ActionPanel, "ActionPanel") Me.ActionPanel.Name = "ActionPanel" ' 'GroupBox3 ' - resources.ApplyResources(Me.GroupBox3, "GroupBox3") Me.GroupBox3.Controls.Add(Me.HotkeyCheck) Me.GroupBox3.Controls.Add(Me.HotkeyCode) Me.GroupBox3.Controls.Add(Me.HotkeyText) @@ -657,6 +668,7 @@ Me.GroupBox3.Controls.Add(Me.HotkeyAlt) Me.GroupBox3.Controls.Add(Me.HotkeyShift) Me.GroupBox3.Controls.Add(Me.HotkeyCtrl) + resources.ApplyResources(Me.GroupBox3, "GroupBox3") Me.GroupBox3.Name = "GroupBox3" Me.GroupBox3.TabStop = False ' @@ -747,9 +759,9 @@ ' 'Label15 ' - resources.ApplyResources(Me.Label15, "Label15") Me.Label15.BackColor = System.Drawing.SystemColors.ActiveCaption Me.Label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + resources.ApplyResources(Me.Label15, "Label15") Me.Label15.Name = "Label15" ' 'BrowserPathText @@ -788,21 +800,21 @@ ' 'TweetActPanel ' - resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") Me.TweetActPanel.Controls.Add(Me.ComboBoxPostKeySelect) Me.TweetActPanel.Controls.Add(Me.Label27) Me.TweetActPanel.Controls.Add(Me.CheckRetweetNoConfirm) Me.TweetActPanel.Controls.Add(Me.Label12) Me.TweetActPanel.Controls.Add(Me.CheckUseRecommendStatus) Me.TweetActPanel.Controls.Add(Me.StatusText) + resources.ApplyResources(Me.TweetActPanel, "TweetActPanel") Me.TweetActPanel.Name = "TweetActPanel" ' 'ComboBoxPostKeySelect ' - resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") Me.ComboBoxPostKeySelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxPostKeySelect.FormattingEnabled = True Me.ComboBoxPostKeySelect.Items.AddRange(New Object() {resources.GetString("ComboBoxPostKeySelect.Items"), resources.GetString("ComboBoxPostKeySelect.Items1"), resources.GetString("ComboBoxPostKeySelect.Items2")}) + resources.ApplyResources(Me.ComboBoxPostKeySelect, "ComboBoxPostKeySelect") Me.ComboBoxPostKeySelect.Name = "ComboBoxPostKeySelect" ' 'Label27 @@ -834,7 +846,6 @@ ' 'PreviewPanel ' - resources.ApplyResources(Me.PreviewPanel, "PreviewPanel") Me.PreviewPanel.Controls.Add(Me.ReplyIconStateCombo) Me.PreviewPanel.Controls.Add(Me.Label72) Me.PreviewPanel.Controls.Add(Me.ChkNewMentionsBlink) @@ -852,14 +863,15 @@ Me.PreviewPanel.Controls.Add(Me.cmbNameBalloon) Me.PreviewPanel.Controls.Add(Me.CheckDispUsername) Me.PreviewPanel.Controls.Add(Me.CheckBox3) + resources.ApplyResources(Me.PreviewPanel, "PreviewPanel") Me.PreviewPanel.Name = "PreviewPanel" ' 'ReplyIconStateCombo ' - resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") Me.ReplyIconStateCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ReplyIconStateCombo.FormattingEnabled = True Me.ReplyIconStateCombo.Items.AddRange(New Object() {resources.GetString("ReplyIconStateCombo.Items"), resources.GetString("ReplyIconStateCombo.Items1"), resources.GetString("ReplyIconStateCombo.Items2")}) + resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") Me.ReplyIconStateCombo.Name = "ReplyIconStateCombo" ' 'Label72 @@ -894,10 +906,10 @@ ' 'LanguageCombo ' - resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") Me.LanguageCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.LanguageCombo.FormattingEnabled = True Me.LanguageCombo.Items.AddRange(New Object() {resources.GetString("LanguageCombo.Items"), resources.GetString("LanguageCombo.Items1"), resources.GetString("LanguageCombo.Items2"), resources.GetString("LanguageCombo.Items3")}) + resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") Me.LanguageCombo.Name = "LanguageCombo" ' 'Label13 @@ -930,10 +942,10 @@ ' 'ComboDispTitle ' - resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") Me.ComboDispTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboDispTitle.FormattingEnabled = True Me.ComboDispTitle.Items.AddRange(New Object() {resources.GetString("ComboDispTitle.Items"), resources.GetString("ComboDispTitle.Items1"), resources.GetString("ComboDispTitle.Items2"), resources.GetString("ComboDispTitle.Items3"), resources.GetString("ComboDispTitle.Items4"), resources.GetString("ComboDispTitle.Items5"), resources.GetString("ComboDispTitle.Items6"), resources.GetString("ComboDispTitle.Items7")}) + resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") Me.ComboDispTitle.Name = "ComboDispTitle" ' 'Label45 @@ -943,10 +955,10 @@ ' 'cmbNameBalloon ' - resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") Me.cmbNameBalloon.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.cmbNameBalloon.FormattingEnabled = True Me.cmbNameBalloon.Items.AddRange(New Object() {resources.GetString("cmbNameBalloon.Items"), resources.GetString("cmbNameBalloon.Items1"), resources.GetString("cmbNameBalloon.Items2")}) + resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") Me.cmbNameBalloon.Name = "cmbNameBalloon" ' 'CheckDispUsername @@ -963,7 +975,6 @@ ' 'TweetPrvPanel ' - resources.ApplyResources(Me.TweetPrvPanel, "TweetPrvPanel") Me.TweetPrvPanel.Controls.Add(Me.Label47) Me.TweetPrvPanel.Controls.Add(Me.LabelDateTimeFormatApplied) Me.TweetPrvPanel.Controls.Add(Me.Label62) @@ -976,6 +987,7 @@ Me.TweetPrvPanel.Controls.Add(Me.CheckShowGrid) Me.TweetPrvPanel.Controls.Add(Me.chkUnreadStyle) Me.TweetPrvPanel.Controls.Add(Me.OneWayLv) + resources.ApplyResources(Me.TweetPrvPanel, "TweetPrvPanel") Me.TweetPrvPanel.Name = "TweetPrvPanel" ' 'Label47 @@ -1013,10 +1025,10 @@ ' 'IconSize ' - resources.ApplyResources(Me.IconSize, "IconSize") Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.IconSize.FormattingEnabled = True Me.IconSize.Items.AddRange(New Object() {resources.GetString("IconSize.Items"), resources.GetString("IconSize.Items1"), resources.GetString("IconSize.Items2"), resources.GetString("IconSize.Items3"), resources.GetString("IconSize.Items4")}) + resources.ApplyResources(Me.IconSize, "IconSize") Me.IconSize.Name = "IconSize" ' 'TextBox3 @@ -1050,13 +1062,12 @@ ' 'FontPanel ' + Me.FontPanel.Controls.Add(Me.GroupBox1) resources.ApplyResources(Me.FontPanel, "FontPanel") - Me.FontPanel.Controls.Add(Me.GroupBox1) Me.FontPanel.Name = "FontPanel" ' 'GroupBox1 ' - resources.ApplyResources(Me.GroupBox1, "GroupBox1") Me.GroupBox1.Controls.Add(Me.btnRetweet) Me.GroupBox1.Controls.Add(Me.lblRetweet) Me.GroupBox1.Controls.Add(Me.Label80) @@ -1082,6 +1093,7 @@ Me.GroupBox1.Controls.Add(Me.btnListFont) Me.GroupBox1.Controls.Add(Me.lblListFont) Me.GroupBox1.Controls.Add(Me.Label61) + resources.ApplyResources(Me.GroupBox1, "GroupBox1") Me.GroupBox1.Name = "GroupBox1" Me.GroupBox1.TabStop = False ' @@ -1093,8 +1105,8 @@ ' 'lblRetweet ' + Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblRetweet, "lblRetweet") - Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblRetweet.Name = "lblRetweet" ' 'Label80 @@ -1116,8 +1128,8 @@ ' 'lblDetailLink ' + Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") - Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblDetailLink.Name = "lblDetailLink" ' 'Label18 @@ -1133,8 +1145,8 @@ ' 'lblUnread ' + Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblUnread, "lblUnread") - Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblUnread.Name = "lblUnread" ' 'Label20 @@ -1150,8 +1162,8 @@ ' 'lblDetailBackcolor ' + Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") - Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblDetailBackcolor.Name = "lblDetailBackcolor" ' 'Label37 @@ -1167,8 +1179,8 @@ ' 'lblDetail ' + Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblDetail, "lblDetail") - Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblDetail.Name = "lblDetail" ' 'Label26 @@ -1184,8 +1196,8 @@ ' 'lblOWL ' + Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblOWL, "lblOWL") - Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblOWL.Name = "lblOWL" ' 'Label24 @@ -1201,8 +1213,8 @@ ' 'lblFav ' + Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblFav, "lblFav") - Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblFav.Name = "lblFav" ' 'Label22 @@ -1218,8 +1230,8 @@ ' 'lblListFont ' + Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblListFont, "lblListFont") - Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblListFont.Name = "lblListFont" ' 'Label61 @@ -1229,13 +1241,12 @@ ' 'FontPanel2 ' + Me.FontPanel2.Controls.Add(Me.GroupBox5) resources.ApplyResources(Me.FontPanel2, "FontPanel2") - Me.FontPanel2.Controls.Add(Me.GroupBox5) Me.FontPanel2.Name = "FontPanel2" ' 'GroupBox5 ' - resources.ApplyResources(Me.GroupBox5, "GroupBox5") Me.GroupBox5.Controls.Add(Me.Label65) Me.GroupBox5.Controls.Add(Me.Label52) Me.GroupBox5.Controls.Add(Me.Label49) @@ -1264,6 +1275,7 @@ Me.GroupBox5.Controls.Add(Me.lblAtSelf) Me.GroupBox5.Controls.Add(Me.lblSelf) Me.GroupBox5.Controls.Add(Me.ButtonBackToDefaultFontColor2) + resources.ApplyResources(Me.GroupBox5, "GroupBox5") Me.GroupBox5.Name = "GroupBox5" Me.GroupBox5.TabStop = False ' @@ -1368,56 +1380,56 @@ ' 'lblInputFont ' + Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblInputFont, "lblInputFont") - Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblInputFont.Name = "lblInputFont" ' 'lblInputBackcolor ' + Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") - Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblInputBackcolor.Name = "lblInputBackcolor" ' 'lblAtTo ' + Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblAtTo, "lblAtTo") - Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblAtTo.Name = "lblAtTo" ' 'lblListBackcolor ' + Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") - Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblListBackcolor.Name = "lblListBackcolor" ' 'lblAtFromTarget ' + Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") - Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblAtFromTarget.Name = "lblAtFromTarget" ' 'lblAtTarget ' + Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") - Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblAtTarget.Name = "lblAtTarget" ' 'lblTarget ' + Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblTarget, "lblTarget") - Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblTarget.Name = "lblTarget" ' 'lblAtSelf ' + Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") - Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblAtSelf.Name = "lblAtSelf" ' 'lblSelf ' + Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D resources.ApplyResources(Me.lblSelf, "lblSelf") - Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.lblSelf.Name = "lblSelf" ' 'ButtonBackToDefaultFontColor2 @@ -1428,7 +1440,6 @@ ' 'ConnectionPanel ' - resources.ApplyResources(Me.ConnectionPanel, "ConnectionPanel") Me.ConnectionPanel.Controls.Add(Me.CheckEnableBasicAuth) Me.ConnectionPanel.Controls.Add(Me.TwitterSearchAPIText) Me.ConnectionPanel.Controls.Add(Me.Label31) @@ -1438,6 +1449,7 @@ Me.ConnectionPanel.Controls.Add(Me.Label64) Me.ConnectionPanel.Controls.Add(Me.ConnectionTimeOut) Me.ConnectionPanel.Controls.Add(Me.Label63) + resources.ApplyResources(Me.ConnectionPanel, "ConnectionPanel") Me.ConnectionPanel.Name = "ConnectionPanel" ' 'CheckEnableBasicAuth @@ -1491,7 +1503,6 @@ ' 'ProxyPanel ' - resources.ApplyResources(Me.ProxyPanel, "ProxyPanel") Me.ProxyPanel.Controls.Add(Me.Label55) Me.ProxyPanel.Controls.Add(Me.TextProxyPassword) Me.ProxyPanel.Controls.Add(Me.RadioProxyNone) @@ -1504,6 +1515,7 @@ Me.ProxyPanel.Controls.Add(Me.TextProxyPort) Me.ProxyPanel.Controls.Add(Me.TextProxyAddress) Me.ProxyPanel.Controls.Add(Me.LabelProxyPort) + resources.ApplyResources(Me.ProxyPanel, "ProxyPanel") Me.ProxyPanel.Name = "ProxyPanel" ' 'Label55 @@ -1576,13 +1588,13 @@ ' 'CooperatePanel ' - resources.ApplyResources(Me.CooperatePanel, "CooperatePanel") Me.CooperatePanel.Controls.Add(Me.CheckOutputz) Me.CooperatePanel.Controls.Add(Me.CheckNicoms) Me.CooperatePanel.Controls.Add(Me.TextBoxOutputzKey) Me.CooperatePanel.Controls.Add(Me.Label60) Me.CooperatePanel.Controls.Add(Me.Label59) Me.CooperatePanel.Controls.Add(Me.ComboBoxOutputzUrlmode) + resources.ApplyResources(Me.CooperatePanel, "CooperatePanel") Me.CooperatePanel.Name = "CooperatePanel" ' 'CheckOutputz @@ -1614,15 +1626,14 @@ ' 'ComboBoxOutputzUrlmode ' - resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxOutputzUrlmode.FormattingEnabled = True Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {resources.GetString("ComboBoxOutputzUrlmode.Items"), resources.GetString("ComboBoxOutputzUrlmode.Items1")}) + resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" ' 'ShortUrlPanel ' - resources.ApplyResources(Me.ShortUrlPanel, "ShortUrlPanel") Me.ShortUrlPanel.Controls.Add(Me.CheckTinyURL) Me.ShortUrlPanel.Controls.Add(Me.TextBitlyPw) Me.ShortUrlPanel.Controls.Add(Me.CheckAutoConvertUrl) @@ -1631,6 +1642,7 @@ Me.ShortUrlPanel.Controls.Add(Me.Label76) Me.ShortUrlPanel.Controls.Add(Me.Label77) Me.ShortUrlPanel.Controls.Add(Me.TextBitlyId) + resources.ApplyResources(Me.ShortUrlPanel, "ShortUrlPanel") Me.ShortUrlPanel.Name = "ShortUrlPanel" ' 'CheckTinyURL @@ -1657,10 +1669,10 @@ ' 'ComboBoxAutoShortUrlFirst ' - resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4"), resources.GetString("ComboBoxAutoShortUrlFirst.Items5")}) + resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" ' 'Label76 @@ -1680,16 +1692,16 @@ ' 'Cancel ' - resources.ApplyResources(Me.Cancel, "Cancel") Me.Cancel.CausesValidation = False Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel + resources.ApplyResources(Me.Cancel, "Cancel") Me.Cancel.Name = "Cancel" Me.Cancel.UseVisualStyleBackColor = True ' 'Save ' + Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK resources.ApplyResources(Me.Save, "Save") - Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK Me.Save.Name = "Save" Me.Save.UseVisualStyleBackColor = True ' @@ -1713,14 +1725,14 @@ Me.SplitContainer1.Panel2.ResumeLayout(False) CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit() Me.SplitContainer1.ResumeLayout(False) + Me.GetCountPanel.ResumeLayout(False) + Me.GetCountPanel.PerformLayout() Me.BasedPanel.ResumeLayout(False) Me.BasedPanel.PerformLayout() Me.GetPeriodPanel.ResumeLayout(False) Me.GetPeriodPanel.PerformLayout() Me.StartupPanel.ResumeLayout(False) Me.StartupPanel.PerformLayout() - Me.GetCountPanel.ResumeLayout(False) - Me.GetCountPanel.PerformLayout() Me.UserStreamPanel.ResumeLayout(False) Me.UserStreamPanel.PerformLayout() Me.ActionPanel.ResumeLayout(False) @@ -1965,4 +1977,6 @@ Friend WithEvents Label36 As System.Windows.Forms.Label Friend WithEvents CooperatePanel As System.Windows.Forms.Panel Friend WithEvents ShortUrlPanel As System.Windows.Forms.Panel + Friend WithEvents UserTimelineTextCountApi As System.Windows.Forms.TextBox + Friend WithEvents Label17 As System.Windows.Forms.Label End Class Modified: trunk/Tween/AppendSettingDialog.resx =================================================================== --- trunk/Tween/AppendSettingDialog.resx 2010-12-28 01:20:00 UTC (rev 1271) +++ trunk/Tween/AppendSettingDialog.resx 2010-12-28 04:42:19 UTC (rev 1272) @@ -117,150 +117,24 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ProxyPanel + + + Top - - 7 - - - - NoControl - - + True - - none - - - NoControl - - - 24 - - - False - - - 12 - - - 100, 16 + + 0, 0 - - 90, 22 + + Fill - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0 - - 15 - - - OK - - - NoControl - - - 16*16 - - - True - - - 1 - - - LabelProxyPassword - - - 11 - - - PreviewPanel - - - 6 - - - True - - - 0 - - - UserStreamPanel - - - 使用しない - - - 1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 163, 12 - - - 83, 290 - - - 10 - - - TextBoxOutputzKey - - - BasedPanel - - - 9 - - - True - - - 154, 16 - - - False - - - 0 - - - 7 - - - 16, 45 - - - 217, 90 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - GetPeriodPanel - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 339, 215 - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w @@ -287,6149 +161,6323 @@ clN0cmVhbQYUAAAADlVzZXJTdHJlYW1Ob2RlAP////8JBQAAAP////8JBQAAAAAAAAAL - - LanguageCombo + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG5YuV5L2cBgQAAAAKQWN0aW9uTm9kZQD/////BgUAAAAA/////wkFAAAAAQAAAAkGAAAABQYAAAAd + U3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJ + bmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50 + AQEAAAEAAQABCAgIAgAAAAYHAAAAGOODhOOCpOODvOODiOaZguOBruWLleS9nAYIAAAADFR3ZWV0QWN0 + Tm9kZQD/////CQUAAAD/////CQUAAAAAAAAACw== + - - GetPeriodPanel + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAG6KGo56S6BgQAAAALUHJldmlld05vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUGAAAA + HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdl + SW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3Vu + dAEBAAABAAEAAQgICAIAAAAGBwAAABLjg6rjgrnjg4jjga7ooajnpLoGCAAAAAxUd2VldFBydk5vZGUA + /////wkFAAAA/////wkFAAAAAAAAAAs= + - - 16 + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA + AAAM44OV44Kp44Oz44OIBgQAAAAIRm9udE5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG + AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt + YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD + b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAA3jg5Xjgqnjg7Pjg4gyBggAAAAJRm9udE5vZGUyAP////8J + BQAAAP////8JBQAAAAAAAAAL + - - 171, 16 + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w + LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 + ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQsAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 + CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp + bGRyZW4wCWNoaWxkcmVuMQljaGlsZHJlbjIBAQAAAQABAAQEBAEICAgdU3lzdGVtLldpbmRvd3MuRm9y + bXMuVHJlZU5vZGUCAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlAgAAAB1TeXN0ZW0uV2lu + ZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMAAAAG6YCa5L+hBgQAAAAOQ29ubmVjdGlvbk5vZGUA + /////wYFAAAAAP////8JBQAAAAMAAAAJBgAAAAkHAAAACQgAAAAFBgAAAB1TeXN0ZW0uV2luZG93cy5G + b3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNl + bGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAA + BgkAAAAM44OX44Ot44Kt44K3BgoAAAAJUHJveHlOb2RlAP////8JBQAAAP////8JBQAAAAAAAAAFBwAA + AB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFn + ZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291 + bnQBAQAAAQABAAEICAgCAAAABgwAAAAS6YCj5pC644K144O844OT44K5Bg0AAAANQ29vcGVyYXRlTm9k + ZQD/////CQUAAAD/////CQUAAAAAAAAABQgAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUI + AAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5k + ZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgIAgAAAAYPAAAACeefree4rlVS + TAYQAAAADFNob3J0VXJsTm9kZQD/////CQUAAAD/////CQUAAAAAAAAACw== + - - 1 + + 169, 368 - - 75, 23 + + 0 - - NoControl + + TreeView1 - - GroupBox1 + + System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + SplitContainer1.Panel1 - - 192, 20 + + 0 - - cmbNameBalloon + + SplitContainer1.Panel1 - - 104, 19 + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SplitContainer1.Panel2 + + SplitContainer1 - - 8 + + 0 - + + True + + False - - 22, 20 + + NoControl - - 13 + + 227, 20 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 57, 16 - - 11 + + 2 - - 11 + + BASIC - + + AuthBasicRadio + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + BasedPanel + + + 0 + + + True + + NoControl - - 自分の発言 + + 113, 20 - + + 93, 16 + + 1 - - 8 + + OAuth(xAuth) - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + AuthOAuthRadio - - 205, 103 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + BasedPanel - - 自動調整する + + 1 - - 104, 19 + + True - - 2 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 22 - - ShortUrlPanel + + 53, 12 - - True + + 0 - - Fill + + 認証方法 - - 5 + + Label6 - - 339, 165 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 339, 115 + + BasedPanel - - 14 + + 2 - - 235, 16 + + NoControl - - lblOWL + + 305, 64 - - 53, 12 + + 75, 23 - - 7 + + 6 - - 154, 12 + + クリア - - 5 + + AuthClearButton - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0 + + BasedPanel - - CheckMonospace + + 3 - - FontPanel2 + + NoControl - - 175, 235 + + 113, 68 - - 6 + + 149, 14 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - Label27 + + 認証済み - - 1 + + AuthUserLabel - - 48*48 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - HotkeyCtrl + + BasedPanel - - GetPeriodPanel + + 4 - - 12 + + NoControl - - 再起動後有効になります。 + + 113, 54 - - True + + 112, 14 - - 6 + + 4 - - AppendSettingDialog + + Not Authenticated - - True + + AuthStateLabel - - 5 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - search.twitter.com + + BasedPanel - - 22, 66 + + 5 - + True - - 22, 22 + + NoControl - - Label44 + + 22, 54 - - Label6 + + 53, 12 - - 0 + + 3 - - Win + + 認証状態 - - TweetActPanel + + Label4 - - 8 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + BasedPanel - - 22, 20 + + 6 - - 68, 19 + + NoControl - - 22, 18 + + 305, 126 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 23 - - Fill + + 11 - - Label45 + + 認証する - - tt h:mm + + AuthorizeButton - - MiddleLeft + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + BasedPanel - - 13, 14 + + 7 - - StatusText + + True - - Label8 + + NoControl - - 143, 16 + + 22, 112 - - lblUnread + + 57, 12 - - 読み込んだポストを既読にする + + 7 - - 通知なし + + ユーザー名 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label1 - - ShortUrlPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox3 + + BasedPanel - - TweetActPanel + + 8 - - 9, 198 + + True - - StartupUserstreamCheck + + NoControl - - 22, 166 + + 22, 133 - - 2 + + 52, 12 - - 191, 252 + + 9 - - 169, 368 + + パスワード - - 81, 12 + + Label2 - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + BasedPanel - - api.twitter.com + + 9 - - 5 + + 113, 109 - - 0 + + 186, 19 - + 8 Username - - ShortUrlPanel + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + BasedPanel - - 12 + + 10 - - GroupBox5 + + 113, 130 - - twurl.nl - 186, 19 - - 1 + + 10 - - 片思いユーザーリストを取得する + + Password - - 518, 368 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label23 + + BasedPanel - - 262, 100 + + 11 - - BrowserPathText + + Fill - - 259, 51 + + False - - ProxyPanel + + 0, 0 - - True + + 518, 368 - - 6 + + 0 - - 片思いを色分けして表示する + + False - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + BasedPanel - - 22, 93 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + SplitContainer1.Panel2 - - LabelProxyPort + + 0 - - AuthStateLabel + + 258, 21 - - 3 + + 65, 19 - - 94, 12 + + 1 - - 113, 68 + + TimelinePeriod - - 10 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - OAuth(xAuth) + + GetPeriodPanel - - 公式RTする際に確認をしない + + 0 - - 22, 20 + + True - - 22, 86 + + NoControl - - 7 + + 22, 24 - - 157, 16 + + 130, 12 - - True + + 0 - - NoControl + + タイムライン更新間隔(秒) - - 認証済み + + Label3 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + GetPeriodPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - 116, 15 + + NoControl - - 102, 19 + + 122, 216 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 108, 23 - - NoControl + + 14 - - StartupPanel + + 再計算 - - False + + ButtonApiCalc - - 175, 43 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GetPeriodPanel - - ChkNewMentionsBlink + + 2 - - 8 + + True - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - English + + 29, 195 - - PreviewPanel + + 285, 12 - + + 13 + + + 投稿時取得が有効のため、投稿のたびにAPIを消費します。 + + + LabelPostAndGet + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SplitContainer1.Panel2 + + GetPeriodPanel - - This is sample. + + 3 - - H:mm:ss + + True - + NoControl - - 259, 185 + + 29, 174 - - 258, 111 + + 23, 12 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - 22, 138 + + 999 - - 349, 12 + + MiddleRight - - 41, 134 + + LabelApiUsing - - 発言一覧への反映間隔(秒) + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GetPeriodPanel - - CooperatePanel + + 4 - - TextCountApiReply + + True - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 1 + + 22, 138 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 12 - - ConnectionPanel + + 10 - - 0 + + Lists更新間隔(秒) - - NoControl + + Label33 - - Label47 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 58, 19 + + GetPeriodPanel - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - False + + 258, 135 - - 4 + + 65, 19 - - NoControl + + 11 - - 3 + + ListsPeriod - - 278, 104 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 21 + + GetPeriodPanel - - False + + 6 - + True - - 63, 12 + + NoControl - - GroupBox5 + + 22, 114 - - ShortUrlPanel + + 137, 12 - - 174, 12 + + 8 - - GroupBox3 + + Twitter検索更新間隔(秒) - - 0 + + Label7 - - 125, 19 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 推奨フッターを使用する[TWNv○○] + + GetPeriodPanel - - True + + 7 - - 1 + + 258, 111 - - NoControl + + 65, 19 - + 9 - - CmbDateTimeFormat + + PubSearchPeriod - - 175, 143 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + GetPeriodPanel - - CheckSortOrderLock + + 8 - - j.mp + + True - - GroupBox1 + + NoControl - - btnTarget + + 22, 66 - - 5 + + 123, 12 - - True + + 4 - - False + + Mentions更新間隔(秒) - - NoControl + + Label69 - - 23 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + GetPeriodPanel - - 518, 368 + + 9 - - NoControl + + 258, 63 - - GetPeriodPanel + + 65, 19 - - 初回の更新 + + 5 - - その人への@返信 + + ReplyPeriod - - 画面最小化・アイコン時のみバルーンを表示する + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + GetPeriodPanel - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 114, 82 + + True - - ReplyIconStateCombo + + NoControl - - ConnectionPanel + + 33, 43 - - PreviewPanel + + 84, 16 - + 2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 投稿時取得 - - 131, 12 + + CheckPostAndGet - - OneWayLv + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 34, 19 + + GetPeriodPanel - - タイトルバーとツールチップにユーザー名を表示 - - - 179, 104 - - + 11 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - CheckNicoms + + 251, 43 - - H:mm:ss yy/M/d + + 91, 16 - - 113, 54 + + 3 - - MiddleLeft + + 自動調整する - - NoControl - - + False - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CheckPeriodAdjust - - 0, 0 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 18 + + GetPeriodPanel - - 157, 16 + + 12 - - 58, 19 + + True - - 11 + + NoControl - - 90, 22 + + 22, 90 - - (なし) + + 94, 12 - - 65, 19 + + 6 - - This is sample. + + DM更新間隔(秒) - - 11 + + Label5 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GetPeriodPanel - - False + + 13 - - 22, 78 + + 258, 87 - - 5 + + 65, 19 - - GetCountPanel + + 7 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DMPeriod - - 175, 193 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + GetPeriodPanel - - SplitContainer1 + + 14 - - 408, 22 + + Fill - - 5 + + False - - 75, 22 + + 0, 0 - - FavoritesTextCountApi + + 518, 368 - - 113, 20 + + 1 - - 186, 19 + + False - - Label49 + + GetPeriodPanel - - 75, 22 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + SplitContainer1.Panel2 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - 8 + + True - + NoControl - - True + + 22, 22 - - フッター(文末に付加) + + 166, 16 - - NoControl + + 0 - - GetCountPanel + + 読み込んだポストを既読にする - - SplitContainer1.Panel1 + + StartupReaded - - 133, 16 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 183, 16 + + StartupPanel - - 102, 12 + + 0 - - ButtonBackToDefaultFontColor + + True - + NoControl - - NoControl + + 22, 70 - - その発言の@先の人の発言 + + 174, 16 - - True + + 2 - - NoControl + + 片思いユーザーリストを取得する - - NoControl + + CheckStartupFollowers - - TweetPrvPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ConnectionTimeOut + + StartupPanel - - GetCountPanel + + 1 - - 60, 12 + + True - + NoControl - - NoControl + + 22, 47 - - 5 + + 129, 16 - - CheckMinimizeToTray + + 1 - - GroupBox3 + + 最新版のチェックをする - + + CheckStartupVersion + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + StartupPanel - + + 2 + + True - - 4 + + NoControl - - True + + 22, 93 - - UserstreamPeriod + + 124, 16 - - NoControl + + 3 - - MiddleLeft + + Favoritesを取得する - - 0 + + chkGetFav - - ConnectionPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + StartupPanel - - 11 + + 3 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Fill - - True + + False - - 99, 12 + + 0, 0 - - 9 + + 518, 368 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 11 + + False - - UserStreamPanel + + StartupPanel - - NoControl + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6 + + SplitContainer1.Panel2 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - NoControl + + 259, 208 - - True + + 58, 19 - - True + + 14 - - UserStreamPanel + + UserTimelineTextCountApi - - 0, 0 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label31 + + GetCountPanel - + + 0 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 213 - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQsAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wCWNoaWxkcmVuMQljaGlsZHJlbjIBAQAAAQABAAQEBAEICAgdU3lzdGVtLldpbmRvd3MuRm9y - bXMuVHJlZU5vZGUCAAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlAgAAAB1TeXN0ZW0uV2lu - ZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMAAAAG6YCa5L+hBgQAAAAOQ29ubmVjdGlvbk5vZGUA - /////wYFAAAAAP////8JBQAAAAMAAAAJBgAAAAkHAAAACQgAAAAFBgAAAB1TeXN0ZW0uV2luZG93cy5G - b3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4CEltYWdlS2V5ElNl - bGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQBAQAAAQABAAEICAgCAAAA - BgkAAAAM44OX44Ot44Kt44K3BgoAAAAJUHJveHlOb2RlAP////8JBQAAAP////8JBQAAAAAAAAAFBwAA - AB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQgAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFn - ZUluZGV4CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291 - bnQBAQAAAQABAAEICAgCAAAABgwAAAAS6YCj5pC644K144O844OT44K5Bg0AAAANQ29vcGVyYXRlTm9k - ZQD/////CQUAAAD/////CQUAAAAAAAAABQgAAAAdU3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUI - AAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJbmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5k - ZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50AQEAAAEAAQABCAgIAgAAAAYPAAAACeefree4rlVS - TAYQAAAADFNob3J0VXJsTm9kZQD/////CQUAAAD/////CQUAAAAAAAAACw== - + + 118, 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - btnAtSelf + + UserTimelineの取得数 - - GroupBox5 + + Label17 - - 170, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - chkTabIconDisp + + GetCountPanel - - SplitContainer1.Panel2 + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - Fill + + 22, 186 - - 102, 19 + + 117, 12 - - 7 + + 11 - - 認証する + + PublicSearchの取得数 - - 36, 60 + + Label30 - - CooperatePanel - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 48, 16 + + GetCountPanel - - LabelPostAndGet + + 2 - - 未読Mentions通知アイコン + + True - - GroupBox5 + + 22, 136 - - ニックネーム + + 63, 12 - - CheckShowGrid + + 7 - - TweetPrvPanel + + 初回の更新 - - 0 + + Label28 - - 2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + GetCountPanel - - 13 + + 3 - - リストフォント + + True - - 117, 12 + + 22, 54 - - 9 + + 87, 12 - - キャンセル + + 2 - - NoControl + + Mentions取得数 - - BasedPanel + + Label19 - - Favoritesを取得する + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GetCountPanel - - 5 + + 4 - - btnAtTo + + 259, 159 - - 背景色 + + 58, 19 - - 4, 15 + + 10 - - TextProxyPassword + + FavoritesTextCountApi - - GroupBox1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GetCountPanel - - Label63 + + 5 - - 2 + + 259, 185 - - 1 + + 58, 19 - - 0 + + 12 - - 4 + + SearchTextCountApi - - GroupBox1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22 + + GetCountPanel - - 5 + + 6 - - 44, 12 + + True - - False - - + NoControl - - Fill + + 22, 160 - - ActionPanel + + 99, 12 - - CheckAutoConvertUrl + + 9 - - 通信にHTTPSを使用する + + Favoritesの取得数 - - 文字色 + + Label66 - - ConnectionPanel - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ユーザー名 + + GetCountPanel - - 10 + + 7 - - 48, 12 + + 259, 135 - - System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 58, 19 - - NoControl + + 8 - - 有効 + + FirstTextCountApi - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + GetCountPanel - - SplitContainer1.Panel2 + + 8 - - GetPeriodPanel + + 259, 112 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 58, 19 - - 173, 146 + + 6 - - Disable + + GetMoreTextCountApi - - NoControl + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 45 + + GetCountPanel - - 11 + + 9 - - btnDetailLink + + True - - Label32 + + NoControl - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 112 - - ProxyPanel + + 79, 12 - - FirstTextCountApi + + 5 - - 518, 368 + + 前データの更新 - - NoControl + + Label53 - - 343, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetActPanel + + GetCountPanel - - 122, 16 + + 10 - - TreeView1 + + True - - btnAtTarget + + NoControl - - 175, 17 + + 22, 86 - - PreviewPanel + + 247, 16 - - False + + 4 - - NoControl + + 次の項目の更新時の取得数を個別に設定する - - 87, 12 + + UseChangeGetCount - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 216, 106 + + GetCountPanel - - 7 + + 11 - - GroupBox1 + + 259, 51 - - 2 + + 58, 19 - - 2 + + 3 - - NoControl + + TextCountApiReply - - 343, 101 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0 + + GetCountPanel - - 2 + + 12 - - 22, 90 - - - AuthBasicRadio - - + True - + NoControl - - 1 + + 22, 24 - + + 77, 12 + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 標準取得件数 - - 22, 49 + + Label67 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 604, 374 + + GetCountPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - 74, 110 + + 259, 21 - - 331, 171 + + 58, 19 - - 7 + + 1 - - タイムアウトまでの時間(秒) + + TextCountApi - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GetCountPanel - - Twitter検索更新間隔(秒) + + 14 - - 6 + + Fill - - 185, 94 + + False - - NoControl + + 0, 0 - - GroupBox1 + + 518, 368 - - True + + 3 - - GroupBox1 + + False - + GetCountPanel - - 226, 16 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnUnread + + SplitContainer1.Panel2 - - 14 - - + 3 - - GroupBox3 + + 227, 41 65, 19 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + UserstreamPeriod - - Alt + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 184, 160 + + UserStreamPanel - - 4 + + 0 - - 7 + + True - - 251, 43 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 20 - - NoControl + + 157, 16 - - 2 + + 0 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 起動時に自動的に接続する - - MiddleRight + + StartupUserstreamCheck - - CheckPostAndGet + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + UserStreamPanel - + 1 - + + True + + NoControl - - 173, 21 + + 22, 45 - - 145, 16 + + 145, 12 - - 背景色 + + 1 - - ShortUrlPanel + + 発言一覧への反映間隔(秒) - - 11 + + Label83 - - 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + UserStreamPanel - - 10 + + 2 - - 3 - - - 173, 171 - - + Fill - - 4 + + False - - 3 + + 0, 0 - - Fill + + 518, 368 - - ActionPanel + + 4 - - 投稿時取得が有効のため、投稿のたびにAPIを消費します。 + + False - - NoControl + + UserStreamPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + SplitContainer1.Panel2 - - 7 + + 4 - - LabelProxyUser + + True - - GroupBox5 + + NoControl - - GroupBox1 + + 4, 15 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 48, 16 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - 108, 23 + + 有効 - - CheckUseRecommendStatus + + HotkeyCheck - - Password + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + GroupBox3 - + 0 - - 14 + + True - - 3 - - + NoControl - - True + + 340, 16 - - 2 + + 13, 14 - - ブラウザパス - - - 5 - - - 17 - - + 6 - - 9 + + 0 - - ConnectionPanel + + HotkeyCode - - 173, 71 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + GroupBox3 - - 0 + + 1 - - 999 + + Disable - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 257, 13 - - NoControl + + 77, 19 - - 228, 12 + + 5 - - SplitContainer1.Panel1 + + HotkeyText - - GroupBox1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + GroupBox3 - - lblInputBackcolor + + 2 - + True - + NoControl - - MiddleLeft + + 211, 15 - - CheckRetweetNoConfirm + + 42, 16 - - 1 + + 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Win - - Fill + + HotkeyWin - - PreviewPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 178 + + GroupBox3 - + 3 - - 8 + + True - - 7 + + NoControl - - 0 + + 168, 15 - - TweetActPanel + + 39, 16 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - 1 + + Alt - - サウンドを再生する + + HotkeyAlt - - OS Default + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + GroupBox3 - + 4 - - UserStreamPanel + + True - - 1 + + NoControl - - 99, 12 + + 116, 15 - + + 48, 16 + + 2 - - 0 + + Shift - - 75, 22 + + HotkeyShift - - CooperatePanel - - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox3 - + + 5 + + True - - 75, 22 + + NoControl - - True + + 69, 15 - - 53, 12 + + 43, 16 - - 5 + + 1 - - SplitContainer1.Panel2 + + Ctrl - - NoControl + + HotkeyCtrl - - 42, 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9, 148 + + GroupBox3 - - System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - 58, 12 + + 21, 305 - - 11 + + 474, 41 - - 259, 159 + + 14 - - BasedPanel + + ホットキー - - 0, 0 + + GroupBox3 - - ColorDialog1 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - フォント&&色 + + ActionPanel - - 画像リンクがあった場合にサムネイルを表示する - - + 0 - + + True + + NoControl - - GetCountPanel + + 22, 253 - - 7 + + 157, 16 - - MiddleLeft + + 12 - - 14 + + #タグの入力補助を使用する - - This is sample. + + CheckHashSupple - - 1 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + ActionPanel - + 1 - + True - - 521, 374 + + NoControl - - アウトプット先のURL + + 22, 229 - - NoControl + + 153, 16 - - GroupBox1 + + 11 - - 130, 12 + + @IDの入力補助を使用する - - 22, 160 + + CheckAtIdSupple - + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + 2 - - NoControl + + True - + NoControl - - 173, 121 + + 26, 210 - - 8 + + 340, 12 - - RadioProxyIE + + 10 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 - - 入力欄アクティブ時背景色 + + Label57 - - CooperatePanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6 + + ActionPanel - - 6 + + 3 - - TweetPrvPanel + + True - + + NoControl + + + 22, 188 + + + 183, 16 + + + 9 + + + Fav操作結果を厳密にチェックする + + + CheckFavRestrict + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ActionPanel - - CheckPeriodAdjust + + 4 + + NoControl + + + 418, 158 + + + 75, 21 + 8 - - True + + 参照 - - 6 + + Button3 - - 11 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + ActionPanel - - 96, 19 + + 5 - - 215, 285 + + True - - 4 + + NoControl - - Label34 + + 22, 20 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 113, 16 - - NoControl + + 0 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + サウンドを再生する - - btnFav + + PlaySnd - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14 + + ActionPanel - + + 6 + + True - - PublicSearchの取得数 + + NoControl - - 340, 16 + + 22, 275 - - GetCountPanel + + 143, 16 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - 入力欄フォント + + 自分の発言を既読にする - - NoControl + + chkReadOwnPost - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.FontDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ActionPanel - - 4 + + 7 - - Label16 + + NoControl - - 216, 67 + + 22, 42 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 408, 22 - - GroupBox1 + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 - - 145, 12 + + Label15 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Simplified Chinese + + ActionPanel - - 0 + + 8 - - 14 + + 184, 160 - - Label80 + + 228, 19 - + 7 - - M/d tt h:mm:ss + + BrowserPathText - - 5 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + ActionPanel - - GetCountPanel + + 9 - - 22, 118 + + True - + NoControl - - Label14 + + 22, 71 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 100, 16 - - True + + 2 - - 0, 0 + + 未読管理を行う - - 4 + + UReadMng - + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ActionPanel + + + 10 + + True - - 22, 22 + + NoControl - - 58, 19 + + 21, 164 - - Label81 + + 60, 12 - - 10 + + 6 - - 5 + + ブラウザパス - - lblDetailLink + + Label44 - - 246, 20 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + ActionPanel - - 175, 68 + + 11 - - 305, 126 + + True - - 10 + + NoControl - - ConnectionPanel + + 22, 114 - - Label30 + + 171, 16 - - 23 + + 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ×ボタンを押したときに終了する - - Ctrl + + CheckCloseToExit - - 249, 16 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 84, 16 + + ActionPanel - - 22, 229 + + 12 - - Mentionsの新着があるときにウインドウを点滅する + + True - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 18 + + 22, 137 - - 22, 203 + + 170, 16 - - 518, 368 + + 5 - - 215, 88 + + 最小化したときにアイコン化する - - 0 + + CheckMinimizeToTray - - 9, 23 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ux.nu + + ActionPanel - + 13 - - 166, 16 + + True - + NoControl - - 22, 103 + + 22, 92 - - 75, 22 + + 145, 16 - - 1 + + 3 - - 6, 12 + + 新着時に未読をクリアする - - This is sample. + + CheckReadOldPosts - - 6 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 17 + + ActionPanel - - 新着バルーンのユーザー名 + + 14 - - 0 + + Fill - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - Label36 + + 0, 0 - - Label77 + + 518, 368 - - GroupBox1 + + 5 - - 1 + + False - - 6 + + ActionPanel - - ConnectionPanel + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label60 + + SplitContainer1.Panel2 - - True + + 5 - - GetPeriodPanel + + Enter - - 5 + + Ctrl+Enter - - Label10 + + Shift+Enter - - SplitContainer1.Panel2 + + 184, 19 - - ActionPanel + + 246, 20 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - 195, 16 + + ComboBoxPostKeySelect - - 168, 15 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - M/d tt h:mm + + TweetActPanel - - CheckHashSupple + + 0 - - 26 + + True - - Label37 + + NoControl - - H:mm:ss M/d + + 22, 22 - - 143, 107 + + 137, 12 - - lblAtTarget + + 8 - - 102, 19 + + POSTキー(デフォルトEnter) - - Label11 + + Label27 - - 22, 21 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 331, 96 + + TweetActPanel - - ComboBoxAutoShortUrlFirst + + 1 - - False + + True - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + NoControl - - 256, 16 + + 24, 50 - - 文字色 + + 165, 16 - - 15 + + 10 - - 5 + + 公式RTする際に確認をしない - - GroupBox5 + + CheckRetweetNoConfirm - - 22, 71 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TweetActPanel - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 9 + + True - - SearchTextCountApi + + NoControl - - True + + 23, 94 - - 13 + + 107, 12 - - 162, 16 + + 11 - - NoControl + + フッター(文末に付加) - - GroupBox1 + + Label12 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 19 + + TweetActPanel - - 113, 12 + + 3 - - 247, 16 + + True - - GroupBox5 + + NoControl - - Label83 + + 185, 94 - - 4 + + 195, 16 - - 131, 12 + + 12 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 推奨フッターを使用する[TWNv○○] - - True + + CheckUseRecommendStatus - - 23 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TweetActPanel - - False + + 4 - - 22, 22 + + 185, 116 - - NoControl + + 232, 19 - - 未読ポストのフォントと色を変更する(低速) + + 13 - - ProxyPanel + + StatusText - - 22, 191 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + TweetActPanel - - 20 + + 5 - - 19 + + Fill - - True + + False - - lblDetail + + 0, 0 - - 259, 21 + + 518, 368 - - 22, 66 + + 6 - - True + + False - - 10 + + TweetActPanel - - 0 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label15 + + SplitContainer1.Panel2 - - Mentions更新間隔(秒) + + 6 - - 15 + + 通知なし - - MiddleLeft + + アイコン変更 - - 22, 24 + + アイコン変更&点滅 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 215, 142 - - Label33 + + 136, 20 - - GroupBox5 + + 8 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ReplyIconStateCombo - - 259, 112 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PreviewPanel - - 9, 98 + + 0 - + True - - 102, 19 + + NoControl - - 新着時に未読をクリアする + + 22, 145 - + + 134, 12 + + 7 - + + 未読Mentions通知アイコン + + + Label72 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + PreviewPanel + + 1 - - 69, 15 + + True - - 11 + + NoControl - - 3 + + 22, 166 - - タイムライン更新間隔(秒) + + 256, 16 - - 0 + + 9 - + + Mentionsの新着があるときにウインドウを点滅する + + + ChkNewMentionsBlink + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 投稿時取得 + + PreviewPanel - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 16 - - + True - - StartupPanel + + NoControl - - This is sample. + + 22, 118 - - 331, 146 + + 161, 16 - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAM44OV44Kp44Oz44OIBgQAAAAIRm9udE5vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUG - AAAAHVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCklt - YWdlSW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRD - b3VudAEBAAABAAEAAQgICAIAAAAGBwAAAA3jg5Xjgqnjg7Pjg4gyBggAAAAJRm9udE5vZGUyAP////8J - BQAAAP////8JBQAAAAAAAAAL - + + 6 + + タブに未読アイコンを表示する + + + chkTabIconDisp + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + PreviewPanel - - BasedPanel + + 3 - + + True + + NoControl - - btnDetailBack + + 22, 191 - - 22, 188 + + 243, 16 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 16, 95 + + 画像リンクがあった場合にサムネイルを表示する - - btnListFont + + CheckPreviewEnable - - HotkeyShift + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + PreviewPanel - - True + + 4 - + True - - True + + NoControl - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 83, 290 - - 6 + + 115, 12 - - 16, 70 + + 15 - - 16 + + Apply after restarting - - 22, 51 + + Label81 - - 22, 62 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ShortUrlPanel + + PreviewPanel - - 9 + + 5 - - 1 + + OS Default - - True + + Japanese - - TextBitlyPw + + English - - 9, 123 + + Simplified Chinese - - 286, 107 + + 215, 285 - - 258, 21 + + 136, 20 - - ComboBoxPostKeySelect + + 16 - + + LanguageCombo + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + + 6 + + + True + + NoControl - - False + + 22, 290 - - 161, 16 + + 53, 12 - - This is sample. + + 14 - - CheckStartupFollowers + + Language - - UseChangeGetCount + + Label13 - - 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fill + + PreviewPanel - - True + + 7 - + True - + NoControl - - TweetPrvPanel + + 22, 263 - + + 133, 16 + + + 13 + + + 常に最前面に表示する + + + CheckAlwaysTop + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + 8 - + True - + + NoControl + + + 22, 238 + + + 343, 16 + + 12 - - ActionPanel + + 発言詳細を等幅フォントで表示(AA対応、フォント適用不具合あり) - + + CheckMonospace + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 75, 22 + + PreviewPanel - - 22, 145 + + 9 - + + True + + NoControl - - 21 + + 22, 66 - - @IDの入力補助を使用する + + 249, 16 - + 3 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 画面最小化・アイコン時のみバルーンを表示する - - アイコン変更&点滅 + + CheckBalloonLimit - - 3 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PreviewPanel - - 19 + + 10 - + True - - True + + NoControl - - True + + 22, 20 - - SplitContainer1.Panel2 + + 130, 12 - - PlaySnd + + 0 - - TimelinePeriod + + 新着バルーンのユーザー名 - - 1 + + Label10 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - BasedPanel + + PreviewPanel - - 4 + + 11 - - 21, 305 + + (なし) - - PreviewPanel + + バージョン - - 4 + + 最終発言 - - 70, 12 + + @未読数 - - 8, 173 + + 未読数 - - NoControl + + 未読数(@未読数) - - 2 + + 全未読/全発言数 - - NoControl + + 発言数/フォロー数/フォロワー数 - - 認証方法 + + 215, 88 - - ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 + + 197, 20 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - 2 + + ComboDispTitle - - 8 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + PreviewPanel - + + 12 + + + True + + NoControl - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 91 - - 1 + + 60, 12 - - True + + 4 - - GroupBox5 + + タイトルバー - + + Label45 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - chkUnreadStyle + + PreviewPanel - - AuthorizeButton + + 13 + + なし + + + ユーザーID + + + ニックネーム + 215, 15 - - 9 + + 136, 20 - + + 1 + + + cmbNameBalloon + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PreviewPanel + + 14 - - ActionPanel + + True - + NoControl - - ListsPeriod + + 22, 43 - - PubSearchPeriod + + 235, 16 - - 331, 71 + + 2 - - False + + タイトルバーとツールチップにユーザー名を表示 - - 4 + + CheckDispUsername - - False + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetCountPanel + + PreviewPanel - + + 15 + + True - - SplitContainer1.Panel2 + + False - - 起動時に自動的に接続する + + NoControl - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 215 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 180, 16 - - 0 + + 11 - - 24 + + 発言詳細部にアイコンを表示する - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CheckBox3 - - 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + PreviewPanel - - 最終発言 + + 16 - - 発言数/フォロー数/フォロワー数 + + Fill - - 0 - - + False - - TweetPrvPanel + + 0, 0 - - 77, 12 + + 518, 368 - - 4 + + 7 - - 22, 154 + + False - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PreviewPanel - - False + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label1 + + SplitContainer1.Panel2 - - NoControl + + 7 - + True - - 背景色 + + NoControl - - False + + 216, 134 - - 22, 24 + + 131, 12 - - 22, 47 + + 9 - - 0, 0 + + 再起動後有効になります。 - - ConnectionPanel + + Label47 - - This is sample. + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label12 + + TweetPrvPanel - - True - - + 0 - - 12 + + True - - TweetPrvPanel + + NoControl - - 3 + + 264, 90 - - 113, 130 + + 44, 12 - + 5 - + + Label63 + + + LabelDateTimeFormatApplied + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 258, 135 + + TweetPrvPanel - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - Label5 + + NoControl - - Label13 + + 217, 90 - - ReTweet + + 44, 12 - - True + + 4 - - StartupReaded + + Sample: - - NoControl + + Label62 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - CooperatePanel + + TweetPrvPanel - - HotkeyAlt + + 2 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Top, Bottom, Left, Right - - PreviewPanel + + yyyy/MM/dd H:mm:ss - - 518, 368 + + yy/M/d H:mm:ss - - 134, 12 + + H:mm:ss yy/M/d - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + M/d H:mm:ss - - 77, 19 + + M/d H:mm - - Label18 + + H:mm:ss M/d - - 691, 403 + + H:mm:ss - - GetMoreTextCountApi + + H:mm - - NoControl + + tt h:mm - - 518, 368 + + M/d tt h:mm:ss - - GroupBox5 + + M/d tt h:mm - - 1 + + 216, 67 - - 6 + + 192, 20 - - True + + 3 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CmbDateTimeFormat - - True + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label55 + + TweetPrvPanel - - PreviewPanel + + 3 - - NoControl + + True - - 10 - - + NoControl - - 258, 87 - 22, 70 - - 93, 16 + + 113, 12 - - Fill + + 2 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + リストの日時フォーマット - - Label19 + + Label23 System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + TweetPrvPanel - - POSTキー(デフォルトEnter) + + 4 - - 6 + + True - - 7 + + NoControl - - 262, 125 + + 22, 108 - - ButtonApiCalc + + 163, 12 - - 10 + + 6 - - 180, 16 + + リストのアイコンサイズ(初期値16) - - 22, 91 + + Label11 - - 339, 15 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 238 + + TweetPrvPanel - - 9 + + 5 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + none - - 14 + + 16*16 - - twitter.com + + 24*24 - - Twitter API URL (api.twitter.com) + + 48*48 - - 13 + + 48*48(2Column) - - 3 + + 252, 105 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 163, 20 - - 0, 0 + + 8 - - 2 + + IconSize - - ActionPanel + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TweetPrvPanel - - 25 + + 6 - - btnInputBackcolor + + False - - 125, 19 + + 216, 106 - - 122, 216 + + 34, 19 - + + 7 + + + TextBox3 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TweetPrvPanel - - 9 + + 7 - - 認証状態 + + True - - 75, 22 + + NoControl - - ホットキー + + 22, 203 - - 20 + + 203, 16 - - 331, 196 + + 12 - - 518, 368 + + ソート順を変更できないようにロックする - - NoControl + + CheckSortOrderLock - - PreviewPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 指定する + + TweetPrvPanel - - PreviewPanel + + 8 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - GroupBox5 + + NoControl - - 22, 54 + + 22, 178 - - CooperatePanel + + 154, 16 - - 3 + + 11 - - 4 + + リストの区切り線を表示する - - This is sample. + + CheckShowGrid - - 102, 19 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TweetPrvPanel - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - 8 + + True - + NoControl - - 205, 57 + + 22, 42 - - 26 + + 226, 16 - - StartupPanel + + 1 - - 6 + + 未読ポストのフォントと色を変更する(低速) - - 75, 22 + + chkUnreadStyle - - 75, 21 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 125, 19 + + TweetPrvPanel - - CheckAtIdSupple + + 10 - - 52, 12 + + True - + NoControl - - NoControl + + 22, 21 - - ActionPanel + + 162, 16 - - btnDetail + + 0 - - False + + 片思いを色分けして表示する - - 259, 135 + + OneWayLv - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - リストの日時フォーマット - - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + TweetPrvPanel - - 標準取得件数 + + 11 - - StartupPanel + + Fill - - True + + False - - 再計算 + + 0, 0 - - ActionPanel + + 518, 368 - - 228, 19 + + 8 - - GroupBox1 + + False - - BasedPanel + + TweetPrvPanel - - CooperatePanel + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + SplitContainer1.Panel2 - - ShortUrlPanel + + 8 - - 22, 275 + + True - + NoControl - - 104, 19 + + 331, 121 - - 7 + + 75, 22 - - GetPeriodPanel + + 14 - - 2 + + 文字色 - - 16, 120 + + btnRetweet - - 518, 368 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - True + + 0 - - 22, 166 + + NoControl - - 22, 186 + + 173, 121 - - False + + 104, 19 - - Fill + + 13 - - 0 + + This is sample. - - PreviewPanel + + MiddleLeft - - GroupBox3 + + lblRetweet - - 10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + GroupBox1 - - ProxyPanel + + 1 - - 0, 0 + + True - + NoControl - - 発言詳細リンク + + 9, 123 - - GroupBox3 + + 50, 12 - - 0 + + 12 - - Label57 + + ReTweet - + + Label80 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - HotkeyCode + + GroupBox1 - - NoControl + + 2 - + + True + + NoControl - - ActionPanel + + 175, 235 - - 自分の発言を既読にする + + 90, 22 - - Top + + 24 - - 14 + + デフォルトに戻す - - True + + ButtonBackToDefaultFontColor - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox1 - + + 3 + + True - - 43, 16 + + NoControl - - 153, 16 + + 331, 171 - - GroupBox5 + + 75, 22 - - NoControl + + 20 - - 173, 46 + + 文字色 - - 169 + + btnDetailLink - - 175, 93 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - 最小化したときにアイコン化する + + 4 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + NoControl - - 9 + + 173, 171 - - 13 + + 104, 19 - - 173, 96 + + 19 - - フォント&色設定 + + This is sample. - - 8 + + MiddleLeft - - 65, 19 + + lblDetailLink - - ProxyPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + GroupBox1 + + 5 - - GetCountPanel - - - 9 - - + True - - 88, 12 + + NoControl - - 10 + + 8, 173 - - NoControl + + 77, 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 18 - - 12 + + 発言詳細リンク - - 21 + + Label18 - - 文字色 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + GroupBox1 - - NoControl + + 6 - + True - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + NoControl - - 22 + + 331, 46 - - Label52 + + 75, 22 - - InternetExplorerの設定を使用する + + 5 - - ProxyPanel + + フォント&&色 - - 70, 19 + + btnUnread - - フォント&&色 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 227, 20 + + GroupBox1 - - なし + + 7 - - CheckAlwaysTop - - + NoControl - - 211, 15 + + 173, 46 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 104, 19 - - 26, 210 + + 4 - - 66, 16 + + This is sample. - - GroupBox5 - - + MiddleLeft - - Label53 + + lblUnread - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 自分への@返信 + + GroupBox1 - - 102, 19 + + 8 - - GroupBox5 + + True - - リストのアイコンサイズ(初期値16) + + NoControl - - LabelApiUsing + + 9, 48 - - 104, 19 + + 62, 12 - - 65, 19 - - - 63, 12 - - + 3 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 未読フォント - - btnListBack + + Label20 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + GroupBox1 - - This is sample. + + 9 - - 264, 90 + + True - + NoControl - - yy/M/d H:mm:ss + + 331, 196 - - 10 + + 75, 22 - - FontDialog1 + + 23 - - 5 + + 背景色 - - btnOWL + + btnDetailBack - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox1 + + + 10 + + NoControl - - True + + 173, 196 - - TweetPrvPanel + + 104, 19 - - フォント&色設定 + + 22 - - 102, 19 + + This is sample. + + MiddleLeft + lblDetailBackcolor - - 107, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 63, 12 + + GroupBox1 - - GetPeriodPanel + + 11 - - 75, 22 + + True - - 16, 12 + + NoControl - - 69, 12 + + 9, 198 - - MiddleLeft + + 89, 12 - - 22, 22 + + 21 - - True + + 発言詳細背景色 - - 6 + + Label37 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 発言詳細部にアイコンを表示する + + GroupBox1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - 65, 19 + + True - - 4 + + NoControl - - Save + + 331, 146 - - True + + 75, 22 - - 背景色 + + 17 - - 8 + + フォント&&色 - - 53, 12 + + btnDetail - - CheckCloseToExit + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ActionPanel + + GroupBox1 - - 175, 168 + + 13 - - GroupBox5 - NoControl - - 518, 368 + + 173, 146 - - 285, 12 + + 104, 19 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16 - - NoControl + + This is sample. - - 22, 263 + + MiddleLeft - + + lblDetail + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - URL自動短縮で優先的に使用 + + 14 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + True - - 48, 16 + + NoControl - - True + + 9, 148 - - 182, 20 + + 77, 12 - - 0 + + 15 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 発言詳細文字 - - 2 + + Label26 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBox1 - - False + + 15 - - 6 + + True - + NoControl - - 518, 368 + + 331, 96 - - 18 + + 75, 22 - + + 11 + + + 文字色 + + + btnOWL + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - 44, 12 + + 16 - - Label71 + + NoControl - - Label24 + + 173, 96 - - 134, 12 + + 104, 19 - - M/d H:mm + + 10 - - 4 + + This is sample. - - NoControl + + MiddleLeft - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblOWL - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + GroupBox1 + + + 17 + + True - - 22, 290 + + NoControl - - 8 + + 9, 98 - - lblAtSelf + + 63, 12 - - True + + 9 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 片思い発言 - - 62, 12 + + Label24 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - PreviewPanel + + GroupBox1 - - 305, 64 + + 18 - + True - - 1 + + NoControl - - #タグの入力補助を使用する + + 331, 71 - - 518, 368 + + 75, 22 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + 8 - - 331, 121 + + 文字色 - - 18 + + btnFav - - 22, 41 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 175, 118 + + GroupBox1 - - 339, 190 + + 19 - - GroupBox3 + + NoControl - - 2 + + 173, 71 - - 145, 16 + + 104, 19 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - クリア + + This is sample. - - TweetPrvPanel + + MiddleLeft - - 3 + + lblFav - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 19 + + GroupBox1 - - 1 + + 20 - - 16 + + True - - BasedPanel + + NoControl - - True + + 9, 73 - - This is sample. + + 48, 12 - - 5 + + 6 - - Label3 + + Fav発言 - - 50, 12 + + Label22 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 12 + + GroupBox1 - - 22, 137 + + 21 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - GroupBox5 + + 331, 21 - - 22, 92 + + 75, 22 - + 2 - - 3 + + フォント&&色 - - NoControl + + btnListFont - - 2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - AuthClearButton - - - 0 - - + GroupBox1 - - 474, 41 + + 22 - + NoControl - - ComboDispTitle + + 173, 21 - - NoControl + + 104, 19 - - Fill + + 1 - - NoControl + + This is sample. - - 24, 50 + + MiddleLeft - - 314, 12 + + lblListFont - - lblTarget + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + GroupBox1 + + + 23 + + True - - Label20 + + NoControl - - 2 + + 9, 23 - + + 62, 12 + + 0 - - 12 + + リストフォント - - 339, 40 + + Label61 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + GroupBox1 - - 4 + + 24 - - Label7 + + 22, 18 - - 9 + + 429, 267 - - Fill + + 0 - - CheckFavRestrict + + フォント&色設定 - - 8 + + GroupBox1 - - 17 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 104, 19 + + FontPanel - - 1 + + 0 - - 2 + + Fill - - Label66 + + False - - 15 + + 0, 0 - - ActionPanel + + 518, 368 - - Label72 + + 9 - - SplitContainer1.Panel2 + + False - - NoControl + + FontPanel - - 75, 22 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 77, 12 + + SplitContainer1.Panel2 - - 設定 + + 9 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 136, 20 + + NoControl - - 104, 19 + + 16, 220 - - 0 + + 74, 12 - - 5 + + 24 - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAG6KGo56S6BgQAAAALUHJldmlld05vZGUA/////wYFAAAAAP////8JBQAAAAEAAAAJBgAAAAUGAAAA - HVN5c3RlbS5XaW5kb3dzLkZvcm1zLlRyZWVOb2RlCAAAAARUZXh0BE5hbWUJSXNDaGVja2VkCkltYWdl - SW5kZXgISW1hZ2VLZXkSU2VsZWN0ZWRJbWFnZUluZGV4EFNlbGVjdGVkSW1hZ2VLZXkKQ2hpbGRDb3Vu - dAEBAAABAAEAAQgICAIAAAAGBwAAABLjg6rjgrnjg4jjga7ooajnpLoGCAAAAAxUd2VldFBydk5vZGUA - /////wkFAAAA/////wkFAAAAAAAAAAs= - + + 入力欄フォント - - False + + Label65 - - 9 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 113, 109 + + GroupBox5 - - 2 + + 0 - - 4 + + True - + NoControl - - 4 + + 16, 195 - - 255, 85 + + 131, 12 - - BASIC + + 21 - - 8 + + 入力欄アクティブ時背景色 - - 71, 19 + + Label52 - - ActionPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + GroupBox5 - - 27 + + 1 - - 0 + + True - + NoControl - - 8 + + 16, 145 - - True + + 102, 12 - - SplitContainer1.Panel2 + + 15 - - 73, 19 + + その発言の@先発言 - - ReplyPeriod + + Label49 - - SplitContainer1.Panel2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetActPanel + + GroupBox5 - - ComboBoxOutputzUrlmode + + 2 - - 3 - - + True - - Label59 + + NoControl - - True + + 16, 170 - - GroupBox5 + + 53, 12 - - 130, 12 + + 18 - - ProxyPanel + + 一般発言 - - 3 + + Label9 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TweetPrvPanel + + GroupBox5 - - ユーザ名(&U) - - + 3 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - PreviewPanel - - + NoControl - - FontPanel2 + + 16, 120 - - 3 + + 134, 12 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + その発言の@先の人の発言 - - 9 + + Label14 - - CheckPreviewEnable + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + GroupBox5 - - 22 + + 4 - - GetCountPanel + + True - - Label62 + + NoControl - - 518, 368 + + 16, 95 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 88, 12 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - NoControl + + その人への@返信 - - 12 + + Label16 - - MiddleLeft + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SplitContainer1 + + GroupBox5 - - 429, 267 + + 5 - - GroupBox1 + + True - - 短縮URLを解決する + + NoControl - - 10 + + 16, 70 - - 0, 0 + + 70, 12 - - GroupBox5 + + 6 - - TweetActPanel + + その人の発言 - - BasedPanel + + Label32 - - 39, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 112, 14 + + GroupBox5 - - NoControl + + 6 - - ConnectionPanel + + True - + NoControl - - 10 + + 16, 45 - - 7 + + 81, 12 - - GetPeriodPanel + + 3 - - 178, 16 + + 自分への@返信 - - NoControl + + Label34 - - True - - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - GetCountPanel + + 7 - - bit.ly + + True - - CheckOutputz + + NoControl - - 20 + + 16, 20 - - 22, 42 + + 63, 12 - - 3 + + 0 - - NoControl + + 自分の発言 - - True + + Label36 - - 6 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 GroupBox5 - - 22, 112 + + 8 - - CheckUseSsl + + True - - False + + NoControl - - 63, 12 + + 339, 215 - - 48, 12 + + 75, 22 - - True + + 26 - - NoControl + + フォント&&色 - - 3 + + btnInputFont - - lblListBackcolor + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + GroupBox5 - + + 9 + + True - - ID + + NoControl - - GroupBox1 + + 339, 190 - - 16, 170 + + 75, 22 - - 0 + + 23 - - Label28 + + 背景色 - - True + + btnInputBackcolor - - Ctrl+Enter + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + GroupBox5 + + + 10 + + True - - 発言詳細文字 - - + NoControl - - ユーザーID + + 339, 140 - + 75, 22 - - SplitContainer1.Panel2 + + 17 - - btnSelf + + 背景色 - - NoControl + + btnAtTo - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + GroupBox5 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - 331, 21 + + True - - GroupBox5 + + NoControl - - タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 + + 339, 165 - - 6 + + 75, 22 - - ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 + + 20 - - CheckDispUsername + + 背景色 - - IconSize + + btnListBack - - HotkeyText + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 246, 20 + + GroupBox5 - + + 12 + + True - - 113, 16 + + NoControl - - 7 + + 339, 115 - - True + + 75, 22 - - CheckBox3 + + 14 - - 429, 290 + + 背景色 - - H:mm + + btnAtFromTarget - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox5 - - 片思い発言 + + 13 - - This is sample. + + True + + NoControl + 339, 90 - - 22, 20 + + 75, 22 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - MiddleLeft + + 背景色 - - 2 + + btnAtTarget - - 0 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - RadioProxyNone + + GroupBox5 - - AuthOAuthRadio + + 14 - - 7 + + True - + NoControl - - 175, 218 + + 339, 65 - - 22 + + 75, 22 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - 58, 19 + + 背景色 - - True + + btnTarget - - MiddleLeft + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 未読管理を行う + + GroupBox5 - + + 15 + + True - - GetCountPanel + + NoControl - - GroupBox5 + + 339, 40 - - CheckBalloonLimit + + 75, 22 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - GetPeriodPanel + + 背景色 - - This is sample. + + btnAtSelf - - ShortUrlPanel + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TextBitlyId + + GroupBox5 - - HotkeyWin + + 16 - - Apply after restarting + + True - - 339, 65 + + NoControl - - PreviewPanel + + 339, 15 - - True + + 75, 22 - - Fav発言 + + 2 - - 331, 46 + + 背景色 - - Favoritesの取得数 + + btnSelf - - GetPeriodPanel - - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 75, 23 + + GroupBox5 - - 29, 174 + + 17 - - 背景色 + + NoControl - - 0 + + 175, 218 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 19 - - 197, 20 + + 25 - - 0, 0 + + This is sample. - - NoControl + + MiddleLeft - - NoControl + + lblInputFont - - 15 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this + + GroupBox5 - - True + + 18 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 63, 12 + + 175, 193 - - 11 + + 102, 19 - - 115, 12 + + 22 - - True + + This is sample. - - 12 + + MiddleLeft - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblInputBackcolor - - 11 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 次の項目の更新時の取得数を個別に設定する + + GroupBox5 - - 75, 22 + + 19 - - DM更新間隔(秒) - - + NoControl - - CheckEnableBasicAuth + + 175, 143 - - 0 + + 102, 19 - - NoControl + + 16 - - 137, 12 + + This is sample. - - BasedPanel + + MiddleLeft - - 104, 19 + + lblAtTo - - ActionPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label9 + + GroupBox5 - + + 20 + + NoControl - - TweetPrvPanel + + 175, 168 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 19 - - True + + 19 - - 4 + + This is sample. - - 115, 16 + + MiddleLeft - - PreviewPanel + + lblListBackcolor - - 6 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 25 + + GroupBox5 - - 11 + + 21 - - True - - + NoControl - - 74, 12 + + 175, 118 - - True + + 102, 19 - - 4 + + 13 - - TextProxyUser + + This is sample. - - 163, 20 + + MiddleLeft - - 14 + + lblAtFromTarget - - BasedPanel + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBox5 - + + 22 + + NoControl - - True + + 175, 93 - - 22, 108 + + 102, 19 - - False + + 10 - - Sample: + + This is sample. - - CheckStartupVersion + + MiddleLeft - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblAtTarget - - 185, 116 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + GroupBox5 - - ProxyPanel + + 23 - - 12 + + NoControl - - True + + 175, 68 - - True + + 102, 19 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 62, 12 - - + 7 - - 12 + + This is sample. - - ポート(&P) + + MiddleLeft - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblTarget - - SplitContainer1.Panel2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox5 - - 5 + + 24 - - True + + NoControl - - LabelProxyAddress + + 175, 43 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 19 - - SplitContainer1.Panel2 + + 4 - - 0 + + This is sample. - - NoControl + + MiddleLeft - - False + + lblAtSelf - - 0, 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 89, 12 + + GroupBox5 - - Fill + + 25 - + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 175, 17 - - True + + 102, 19 - - 16 + + 1 - - 20 + + This is sample. - - 4 - - + MiddleLeft - - 75, 22 + + lblSelf - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox5 + + + 26 + + True - - 518, 368 + + NoControl - - 3 + + 191, 252 - - 16 + + 90, 22 - - $this + + 27 - - lblSelf + + デフォルトに戻す - - 5 + + ButtonBackToDefaultFontColor2 - - Mentions取得数 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + GroupBox5 - - 復活の呪文 + + 27 - - 8 + + 22, 18 - - True + + 429, 290 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + フォント&色設定 - - 22, 22 + + GroupBox5 - - 9 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + FontPanel2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - True + + Fill - - twitter.com/username + + False - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0 - - NoControl + + 518, 368 - - This is sample. + + 10 - - 9 + + False - - 58, 19 + + FontPanel2 - - 0 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ProxyPanel + + SplitContainer1.Panel2 - - 2 + + 10 - + True - - 1 + + NoControl - - 14 + + 22, 166 - - ActionPanel + + 178, 16 - - TweetPrvPanel + + 14 - - 75, 23 + + BASIC認証への変更を許可する - - GetPeriodPanel + + CheckEnableBasicAuth - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 12 - - - 75, 22 - - - 340, 12 - ConnectionPanel - - 24 + + 0 - - NoControl + + 262, 125 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 125, 19 - - 未読フォント - - + 7 - - Fill + + search.twitter.com - - 257, 13 + + TwitterSearchAPIText - - 18 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 76, 16 + + ConnectionPanel - - NoControl + + 1 - - 0 + + True - - ソート順を変更できないようにロックする + + NoControl - - True + + 22, 128 - - TweetPrvPanel + + 228, 12 - - 42, 16 + + 6 - - 36, 106 + + Twitter SearchAPI URL (search.twitter.com) - - Japanese + + Label31 - - 9, 73 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleLeft + + ConnectionPanel - - 5 + + 2 - - TextProxyPort + + 262, 100 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 125, 19 - - NoControl + + 5 - - SplitContainer1.Panel2 + + api.twitter.com - - 6 + + TwitterAPIText - - 60, 12 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Cancel + + ConnectionPanel - + 3 - - lblInputFont + + True - - 0, 0 + + NoControl - - GetPeriodPanel + + 22, 103 - - 91, 16 + + 174, 12 - - 75, 22 + + 4 - - Button3 + + Twitter API URL (api.twitter.com) - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label8 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 137, 12 + + ConnectionPanel - - GetCountPanel + + 4 - - 215, 142 + + True - - GroupBox1 - - + NoControl - - 184, 19 + + 22, 78 - - 22, 54 + + 145, 16 - - 7 + + 3 - - DMPeriod + + 通信にHTTPSを使用する - - 2 + + CheckUseSsl - - btnRetweet + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetCountPanel + + ConnectionPanel - - 190, 16 + + 5 - - This is sample. + + True - - Fill + + NoControl - - 文字色 + + 22, 51 - - 1 + + 349, 12 - - NoControl + + 2 - - 79, 12 + + ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 - - 2 + + Label64 - - 123, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 16, 220 + + ConnectionPanel - - MiddleLeft + + 6 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 262, 18 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 125, 19 - - 53, 12 + + 1 - - 22, 112 + + ConnectionTimeOut - - 102, 19 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22, 133 + + ConnectionPanel - - 173, 196 + + 7 - - 10 + + True - - lblListFont + + NoControl - - デフォルトに戻す + + 22, 20 - - 22, 70 + + 131, 12 - - 227, 41 + + 0 - - 203, 16 + + タイムアウトまでの時間(秒) - + + Label63 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - タイトルバー + + ConnectionPanel - - ActionPanel + + 8 - - 10 + + Fill - - 12 + + False - - Label26 + + 0, 0 - - btnAtFromTarget + + 518, 368 - - 5 + + 11 - - 13 + + False - - Not Authenticated + + ConnectionPanel - - 発言詳細を等幅フォントで表示(AA対応、フォント適用不具合あり) + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + SplitContainer1.Panel2 - + + 11 + + + True + + NoControl - - 6 + + 41, 134 - - デフォルトに戻す + + 314, 12 - - 1 + + 11 - - 3 + + ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 - - Fill + + Label55 - - 182, 19 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 12 + + ProxyPanel - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - 22, 19 + + 286, 107 - - is.gd + + 96, 19 - - 4 + + 10 - - 一般発言 + + TextProxyPassword - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 237, 16 + + ProxyPanel - - 8 + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - フォント&&色 + + NoControl - - 4 + + 22, 19 - - lblRetweet + + 76, 16 - - True + + 0 - - PreviewPanel + + 使用しない - - 518, 368 + + RadioProxyNone - - 242, 16 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + ProxyPanel - - 258, 63 + + 2 - + + True + + NoControl - - 23 + + 217, 110 - - NoControl + + 69, 12 - - 75, 23 + + 9 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + パスワード(&W) - + + LabelProxyPassword + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - UReadMng + + ProxyPanel - - 1 + + 3 - - 309, 82 + + True - - btnInputFont + + NoControl - - 常に最前面に表示する + + 22, 41 - - NoControl + + 190, 16 - - 50, 85 + + 1 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + InternetExplorerの設定を使用する - - MiddleLeft + + RadioProxyIE - - GroupBox5 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - プロキシ(&X) + + ProxyPanel - - 75, 22 + + 4 - - Label64 + + 143, 107 - - NoControl + + 68, 19 - - Outputzに対応する + + 8 - - BASIC認証への変更を許可する + + TextProxyUser - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 136, 20 + + ProxyPanel - - 22, 114 + + 5 - - GroupBox5 + + True - - 9 + + NoControl - - Twitter SearchAPI URL (search.twitter.com) + + 22, 62 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 66, 16 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - Label22 + + 指定する - - 77, 12 + + RadioProxySpecified - - Label65 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GetPeriodPanel + + ProxyPanel - - BasedPanel + + 6 - - 22, 42 + + True - - Label4 + + NoControl - - ProxyPanel + + 74, 110 - - True + + 63, 12 - - True + + 7 - - 58, 19 + + ユーザ名(&U) - - True + + LabelProxyUser - - 9 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0 + + ProxyPanel - - 19 + + 7 - + True - - $this - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + NoControl - - TweetPrvPanel + + 50, 85 - - パスワード(&W) + + 58, 12 - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - True + + プロキシ(&X) - - 背景色 + + LabelProxyAddress - - 27 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 104, 19 + + ProxyPanel - - This is sample. + + 8 - - BasedPanel + + 309, 82 - - 22, 253 + + 73, 19 - - 1 + + 6 - - ButtonBackToDefaultFontColor2 + + TextProxyPort - - NoControl + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + ProxyPanel - - 6 + + 9 - - lblAtFromTarget + + 114, 82 - - 12 + + 135, 19 - - M/d H:mm:ss + + 4 - - ×ボタンを押したときに終了する + + TextProxyAddress - - タブに未読アイコンを表示する + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + ProxyPanel - - 背景色 + + 10 - - 23, 12 + + True - - GroupBox5 + + NoControl - - True + + 255, 85 - - False + + 48, 12 - - その人の発言 + + 5 - - 16, 145 + + ポート(&P) - - 17 + + LabelProxyPort - - 24*24 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w - LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAAB1TeXN0 - ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQkAAAAEVGV4dAROYW1lCUlzQ2hlY2tlZApJbWFnZUluZGV4 - CEltYWdlS2V5ElNlbGVjdGVkSW1hZ2VJbmRleBBTZWxlY3RlZEltYWdlS2V5CkNoaWxkQ291bnQJY2hp - bGRyZW4wAQEAAAEAAQAEAQgICB1TeXN0ZW0uV2luZG93cy5Gb3Jtcy5UcmVlTm9kZQIAAAACAAAABgMA - AAAG5YuV5L2cBgQAAAAKQWN0aW9uTm9kZQD/////BgUAAAAA/////wkFAAAAAQAAAAkGAAAABQYAAAAd - U3lzdGVtLldpbmRvd3MuRm9ybXMuVHJlZU5vZGUIAAAABFRleHQETmFtZQlJc0NoZWNrZWQKSW1hZ2VJ - bmRleAhJbWFnZUtleRJTZWxlY3RlZEltYWdlSW5kZXgQU2VsZWN0ZWRJbWFnZUtleQpDaGlsZENvdW50 - AQEAAAEAAQABCAgIAgAAAAYHAAAAGOODhOOCpOODvOODiOaZguOBruWLleS9nAYIAAAADFR3ZWV0QWN0 - Tm9kZQD/////CQUAAAD/////CQUAAAAAAAAACw== - + + ProxyPanel - - NoControl + + 11 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Fill - - 16, 20 + + False - - 13 + + 0, 0 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 518, 368 - - True + + 12 - - ShortUrlPanel + + False - - lblAtTo + + ProxyPanel - - 背景色 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 217, 110 + + SplitContainer1.Panel2 - - NoControl + + 12 - - 3 + + True - + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 22 - - Label61 + + 115, 16 - - NoControl + + 8 - - 9 + + Outputzに対応する - - SplitContainer1 + + CheckOutputz - - True - - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0 + + CooperatePanel - - Fav操作結果を厳密にチェックする + + 0 - - lblFav + + True - - RadioProxySpecified + + NoControl - - 発言詳細背景色 + + 22, 154 - - CheckReadOldPosts + + 237, 16 - - 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 + + 13 - - HotkeyCheck + + ニコニコ動画のURLをnico.msで短縮して送信 - - TwitterAPIText + + CheckNicoms - - ProxyPanel + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14 + + CooperatePanel - - ニコニコ動画のURLをnico.msで短縮して送信 + + 1 - - 418, 158 + + 205, 57 - - 11 + + 182, 19 - - 24 + + 10 - - 21, 164 + + TextBoxOutputzKey - - NoControl + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 21 + + CooperatePanel - - 3 + + 2 - - NoControl - - + True - - AuthUserLabel + + NoControl - - Shift + + 36, 106 - - 691, 368 + + 99, 12 - - MiddleLeft + + 11 - - その発言の@先発言 + + アウトプット先のURL - - 131, 12 + + Label60 - - 135, 19 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TwitterSearchAPIText + + CooperatePanel - - StartupPanel + + 3 - - 165, 16 + + True - - GroupBox1 + + NoControl - - TextProxyAddress + + 36, 60 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 63, 12 - - MiddleLeft + + 9 - - TweetActPanel + + 復活の呪文 - - Label67 + + Label59 - - 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + CooperatePanel - - 16, 195 - - + 4 - - GroupBox5 + + twitter.com - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + twitter.com/username - - Label2 + + 205, 103 - - 9, 48 + + 182, 20 - - NoControl - - + 12 - - TextCountApi + + ComboBoxOutputzUrlmode - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CooperatePanel - - パスワード + + 5 - - 65, 19 + + Fill - - 201, 102 + + False - - バージョン + + 0, 0 - - @未読数 + + 518, 368 - + 12 - - 未読数(@未読数) + + False - - 未読数 + + CooperatePanel - - 10 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 全未読/全発言数 + + SplitContainer1.Panel2 - - 3 + + 13 - - 518, 368 + + True - - 22, 114 - - + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22, 22 - - 11 + + 122, 16 - - LabelDateTimeFormatApplied + + 0 - - Top, Bottom, Left, Right + + 短縮URLを解決する - - True + + CheckTinyURL - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 23, 94 + + ShortUrlPanel - - Language + + 0 - - Lists更新間隔(秒) + + 343, 101 - - ProxyPanel + + 70, 19 - - chkGetFav + + 7 - - 前データの更新 + + TextBitlyPw - - APIKey + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ShortUrlPanel - - 262, 18 + + 1 - - yyyy/MM/dd H:mm:ss + + True - + NoControl - - 181, 78 + + 22, 49 - - 124, 16 + + 242, 16 - - 2 + + 1 - - 10 + + 入力欄のURLを投稿する際に自動で短縮する - - Shift+Enter + + CheckAutoConvertUrl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + ShortUrlPanel - - 0, 0 + + 2 - - 11 + + True - - 参照 + + NoControl - - 22, 128 + + 19, 81 - - 11 + + 154, 12 - - True + + 2 - - 33, 43 + + URL自動短縮で優先的に使用 - - False + + Label71 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - フォント&&色 + + ShortUrlPanel - - Enter + + 3 tinyurl - - GroupBox1 + + is.gd - - NoControl + + twurl.nl - - 2 + + bit.ly - - 0 + + j.mp - - 149, 14 + + ux.nu - - Label63 + + 181, 78 - - 10 + + 246, 20 - - CenterParent + + 3 - - 75, 22 + + ComboBoxAutoShortUrlFirst - - FontPanel + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox5 + + ShortUrlPanel - + + 4 + + + True + + NoControl - - 0, 0 + + 179, 104 - - 0 + + 16, 12 - - リストの区切り線を表示する + + 4 - - アイコン変更 + + ID - - 6 + + Label76 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + ShortUrlPanel - - 57, 16 + + 5 - - 19, 81 + + True - + NoControl - - True + + 278, 104 - - PreviewPanel + + 42, 12 - - 22, 43 + + 6 - - 最新版のチェックをする + + APIKey - - 216, 134 + + Label77 - - GroupBox1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + ShortUrlPanel - - FontPanel + + 6 - - CheckTinyURL + + 201, 102 - - Label69 + + 71, 19 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - 背景色 + + TextBitlyId - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 入力欄のURLを投稿する際に自動で短縮する + + ShortUrlPanel - - True + + 7 - - 243, 16 + + Fill - - 29, 195 + + False - - 174, 16 + + 0, 0 - - 22, 215 + + 518, 368 - - 15 + + 13 - - 1 + + ShortUrlPanel - - True + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + SplitContainer1.Panel2 - - 9 + + 14 - - chkReadOwnPost + + SplitContainer1.Panel2 - - 48*48(2Column) + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 232, 19 + + SplitContainer1 - - SplitContainer1.Panel2 + + 1 - - 339, 140 + + 691, 368 - - GroupBox1 + + 169 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - 136, 20 + + SplitContainer1 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TextBox3 + + $this - - 6 + + 2 - - 252, 105 + + 17, 17 + + + 140, 17 + + + NoControl - - This is sample. + + 604, 374 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 23 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - 57, 12 + + キャンセル - - 10 + + Cancel - - 9 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - This is sample. + + $this - - Label76 + + 0 - - 22, 136 + + NoControl - - 129, 16 + + 521, 374 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 23 - - GroupBox3 + + 3 - - 11 + + OK + + Save + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + True - - 17, 17 - 82 - - 140, 17 - + + 6, 12 + + + 691, 403 + + + CenterParent + + + 設定 + + + FontDialog1 + + + System.Windows.Forms.FontDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ColorDialog1 + + + System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + AppendSettingDialog + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file Modified: trunk/Tween/AppendSettingDialog.vb =================================================================== --- trunk/Tween/AppendSettingDialog.vb 2010-12-28 01:20:00 UTC (rev 1271) +++ trunk/Tween/AppendSettingDialog.vb 2010-12-28 04:42:19 UTC (rev 1272) @@ -102,6 +102,7 @@ Private _MyUseAdditonalCount As Boolean Private _SearchCountApi As Integer Private _FavoritesCountApi As Integer + Private _UserTimelineCountApi As Integer Private _MyRetweetNoConfirm As Boolean Private _MyUserstreamStartup As Boolean Private _MyUserstreamPeriod As Integer @@ -343,6 +344,7 @@ _FirstCountApi = CType(FirstTextCountApi.Text, Integer) _SearchCountApi = CType(SearchTextCountApi.Text, Integer) _FavoritesCountApi = CType(FavoritesTextCountApi.Text, Integer) + _UserTimelineCountApi = CType(UserTimelineTextCountApi.Text, Integer) Catch ex As Exception MessageBox.Show(My.Resources.Save_ClickText3) Me.DialogResult = Windows.Forms.DialogResult.Cancel @@ -601,15 +603,18 @@ FirstTextCountApi.Text = _FirstCountApi.ToString SearchTextCountApi.Text = _SearchCountApi.ToString FavoritesTextCountApi.Text = _FavoritesCountApi.ToString + UserTimelineTextCountApi.Text = _UserTimelineCountApi.ToString UseChangeGetCount.Checked = _MyUseAdditonalCount Label28.Enabled = UseChangeGetCount.Checked Label30.Enabled = UseChangeGetCount.Checked Label53.Enabled = UseChangeGetCount.Checked Label66.Enabled = UseChangeGetCount.Checked + Label17.Enabled = UseChangeGetCount.Checked GetMoreTextCountApi.Enabled = UseChangeGetCount.Checked FirstTextCountApi.Enabled = UseChangeGetCount.Checked SearchTextCountApi.Enabled = UseChangeGetCount.Checked FavoritesTextCountApi.Enabled = UseChangeGetCount.Checked + UserTimelineTextCountApi.Enabled = UseChangeGetCount.Checked With Me.TreeView1 .Nodes("BasedNode").Tag = BasedPanel @@ -1273,6 +1278,15 @@ End Set End Property + Public Property UserTimelineCountApi() As Integer + Get + Return _UserTimelineCountApi + End Get + Set(ByVal value As Integer) + _UserTimelineCountApi = value + End Set + End Property + Public Property PostAndGet() As Boolean Get Return _MyPostAndGet @@ -2178,8 +2192,10 @@ Label30.Enabled = UseChangeGetCount.Checked Label53.Enabled = UseChangeGetCount.Checked Label66.Enabled = UseChangeGetCount.Checked + Label17.Enabled = UseChangeGetCount.Checked SearchTextCountApi.Enabled = UseChangeGetCount.Checked FavoritesTextCountApi.Enabled = UseChangeGetCount.Checked + UserTimelineTextCountApi.Enabled = UseChangeGetCount.Checked End Sub Private Sub FirstTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles FirstTextCountApi.Validating @@ -2237,4 +2253,20 @@ End If End Sub + Private Sub UserTimelineTextCountApi_Validating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles UserTimelineTextCountApi.Validating + Dim cnt As Integer + Try + cnt = Integer.Parse(UserTimelineTextCountApi.Text) + Catch ex As Exception + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End Try + + If Not cnt = 0 AndAlso (cnt < 20 OrElse cnt > 200) Then + MessageBox.Show(My.Resources.TextCountApi_Validating1) + e.Cancel = True + Exit Sub + End If + End Sub End Class \ No newline at end of file Modified: trunk/Tween/MyCommon.vb =================================================================== --- trunk/Tween/MyCommon.vb 2010-12-28 01:20:00 UTC (rev 1271) +++ trunk/Tween/MyCommon.vb 2010-12-28 04:42:19 UTC (rev 1272) @@ -120,6 +120,7 @@ List 'Lists Related '関連発言 UserStream 'UserStream + UserTimeline 'UserTimeline ''' ErrorState 'エラー表示のみで後処理終了(認証エラー時など) End Enum @@ -541,6 +542,7 @@ PublicSearch = 128 'Pin(save/no distribute/auto update) Lists = 256 Related = 512 + UserTimeline = 1024 'RTMyTweet 'RTByOthers 'RTByMe Modified: trunk/Tween/Setting/SettingCommon.vb =================================================================== --- trunk/Tween/Setting/SettingCommon.vb 2010-12-28 01:20:00 UTC (rev 1271) +++ trunk/Tween/Setting/SettingCommon.vb 2010-12-28 04:42:19 UTC (rev 1272) @@ -176,4 +176,5 @@ Public AllAtReply As Boolean = False Public UserstreamPeriod As Integer = 3 Public UserstreamStartup As Boolean = True + Public UserTimelineCountApi As Integer = 20 End Class Modified: trunk/Tween/StatusDictionary.vb =================================================================== --- trunk/Tween/StatusDictionary.vb 2010-12-28 01:20:00 UTC (rev 1271) +++ trunk/Tween/StatusDictionary.vb 2010-12-28 04:42:19 UTC (rev 1272) @@ -1572,6 +1572,7 @@ 'Search query Private _searchLang As String = "" Private _searchWords As String = "" + Private _UseSearch As Integer = 0 Public Property SearchLang() As String Get @@ -1591,6 +1592,14 @@ _searchWords = value.Trim End Set End Property + Public Property UseSearch As Integer + Get + Return _UseSearch + End Get + Set(ByVal value As Integer) + _UseSearch = value + End Set + End Property Public Function GetSearchPage(ByVal count As Integer) As Integer Return ((_ids.Count \ count) + 1) End Function Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-28 01:20:00 UTC (rev 1271) +++ trunk/Tween/Tween.vb 2010-12-28 04:42:19 UTC (rev 1272) @@ -765,6 +765,7 @@ SettingDialog.FirstCountApi = _cfgCommon.FirstCountApi SettingDialog.SearchCountApi = _cfgCommon.SearchCountApi SettingDialog.FavoritesCountApi = _cfgCommon.FavoritesCountApi + SettingDialog.UserTimelineCountApi = _cfgCommon.UserTimelineCountApi 'If _cfgCommon.UseAdditionalCount Then ' _FirstRefreshFlags = True ' _FirstListsRefreshFlags = True @@ -1223,6 +1224,7 @@ If pubSearchCounter <= 0 AndAlso SettingDialog.PubSearchPeriodInt > 0 Then Interlocked.Exchange(pubSearchCounter, SettingDialog.PubSearchPeriodInt) GetTimeline(WORKERTYPE.PublicSearch, 1, 0, "") + GetTimeline(WORKERTYPE.UserTimeline, 1, 0, "") End If If listsCounter <= 0 AndAlso SettingDialog.ListsPeriodInt > 0 Then Interlocked.Exchange(listsCounter, SettingDialog.ListsPeriodInt) @@ -2062,6 +2064,26 @@ End If '振り分け rslt.addCount = _statuses.DistributePosts() + Case WORKERTYPE.UserTimeline + bw.ReportProgress(50, MakeStatusMessage(args, False)) + Dim count As Integer = 20 + If SettingDialog.UseAdditionalCount Then count = SettingDialog.UserTimelineCountApi + If args.tName = "" Then + For Each tb As TabClass In _statuses.GetTabsByType(TabUsageType.PublicSearch) + If tb.SearchWords <> "" AndAlso tb.UseSearch = 1 Then ret = tw.GetUserTimelineApi(read, count, tb.SearchWords, tb, False) + Next + Else + Dim tb As TabClass = _statuses.GetTabByName(args.tName) + If tb IsNot Nothing Then + If args.page = -1 Then + ret = tw.GetUserTimelineApi(read, count, tb.SearchWords, tb, True) + Else + ret = tw.GetUserTimelineApi(read, count, tb.SearchWords, tb, False) + End If + End If + End If + '振り分け + rslt.addCount = _statuses.DistributePosts() Case WORKERTYPE.List bw.ReportProgress(50, MakeStatusMessage(args, False)) If args.tName = "" Then @@ -2166,6 +2188,8 @@ smsg = "List refreshing..." Case WORKERTYPE.Related smsg = "Related refreshing..." + Case WORKERTYPE.UserTimeline + smsg = "UserTimeline refreshing..." End Select Else '完了メッセージ @@ -2192,6 +2216,8 @@ smsg = "List refreshed" Case WORKERTYPE.Related smsg = "Related refreshed" + Case WORKERTYPE.UserTimeline + smsg = "UserTimeline refreshed" End Select End If Return smsg @@ -2264,7 +2290,8 @@ rslt.type = WORKERTYPE.Follower OrElse _ rslt.type = WORKERTYPE.FavAdd OrElse _ rslt.type = WORKERTYPE.FavRemove OrElse _ - rslt.type = WORKERTYPE.Related Then + rslt.type = WORKERTYPE.Related OrElse _ + rslt.type = WORKERTYPE.UserTimeline Then RefreshTimeline(False) 'リスト反映 End If @@ -2374,7 +2401,7 @@ _itemCache = Nothing _postCache = Nothing If _curList IsNot Nothing Then _curList.Refresh() - Case WORKERTYPE.PublicSearch + Case WORKERTYPE.PublicSearch, WORKERTYPE.UserTimeline _waitPubSearch = False Case WORKERTYPE.List _waitLists = False @@ -2911,7 +2938,11 @@ '' TODO Dim tb As TabClass = _statuses.Tabs(_curTab.Text) If tb.SearchWords = "" Then Exit Sub - GetTimeline(WORKERTYPE.PublicSearch, 1, 0, _curTab.Text) + If tb.UseSearch = 0 Then + GetTimeline(WORKERTYPE.PublicSearch, 1, 0, _curTab.Text) + ElseIf tb.UseSearch = 1 Then + GetTimeline(WORKERTYPE.UserTimeline, 1, 0, _curTab.Text) + End If Case TabUsageType.Lists '' TODO Dim tb As TabClass = _statuses.Tabs(_curTab.Text) @@ -2941,7 +2972,11 @@ ' TODO Dim tb As TabClass = _statuses.Tabs(_curTab.Text) If tb.SearchWords = "" Then Exit Sub - GetTimeline(WORKERTYPE.PublicSearch, -1, 0, _curTab.Text) + If tb.UseSearch = 0 Then + GetTimeline(WORKERTYPE.PublicSearch, -1, 0, _curTab.Text) + ElseIf tb.UseSearch = 1 Then + GetTimeline(WORKERTYPE.UserTimeline, -1, 0, _curTab.Text) + End If Case TabUsageType.Lists '' TODO Dim tb As TabClass = _statuses.Tabs(_curTab.Text) @@ -3306,11 +3341,13 @@ Dim cmb As New ComboBox Dim btn As New Button Dim cmbLang As New ComboBox + Dim cmbushome As New ComboBox pnl.SuspendLayout() pnl.Controls.Add(cmb) pnl.Controls.Add(cmbLang) + pnl.Controls.Add(cmbushome) pnl.Controls.Add(btn) pnl.Controls.Add(lbl) pnl.Name = "panelSearch" @@ -3333,6 +3370,21 @@ cmb.Text = _statuses.Tabs(tabName).SearchWords End If + cmbushome.Text = "Search" + cmbushome.Anchor = AnchorStyles.Left Or AnchorStyles.Right + cmbushome.Dock = DockStyle.Right + cmbushome.Width = 50 + cmbushome.Name = "comboUserLine" + cmbushome.DropDownStyle = ComboBoxStyle.DropDownList + cmbushome.TabStop = False + cmbushome.Items.Add("Search") + cmbushome.Items.Add("User") + If _statuses.ContainsTab(tabName) Then + Dim SearchText As String = "Search" + If _statuses.Tabs(tabName).UseSearch = 1 Then SearchText = "User" + cmbushome.Text = SearchText + End If + cmbLang.Text = "" cmbLang.Anchor = AnchorStyles.Left Or AnchorStyles.Right cmbLang.Dock = DockStyle.Right @@ -6103,6 +6155,7 @@ _cfgCommon.FirstCountApi = SettingDialog.FirstCountApi _cfgCommon.SearchCountApi = SettingDialog.SearchCountApi _cfgCommon.FavoritesCountApi = SettingDialog.FavoritesCountApi + _cfgCommon.UserTimelineCountApi = SettingDialog.UserTimelineCountApi _cfgCommon.TrackWord = tw.TrackWord _cfgCommon.AllAtReply = tw.AllAtReply @@ -9089,6 +9142,7 @@ Dim tb As TabClass = _statuses.Tabs(tbName) Dim cmb As ComboBox = DirectCast(pnl.Controls("comboSearch"), ComboBox) Dim cmbLang As ComboBox = DirectCast(pnl.Controls("comboLang"), ComboBox) + Dim cmbusline As ComboBox = DirectCast(pnl.Controls("comboUserline"), ComboBox) cmb.Text = cmb.Text.Trim ' 検索式演算子 OR についてのみ大文字しか認識しないので強制的に大文字とする Dim Quote As Boolean = False @@ -9114,6 +9168,11 @@ tb.SearchWords = cmb.Text tb.SearchLang = cmbLang.Text + If cmbusline.Text = "User" Then + tb.UseSearch = 1 + Else + tb.UseSearch = 0 + End If If cmb.Text = "" Then DirectCast(ListTab.SelectedTab.Tag, DetailsListView).Focus() SaveConfigsTabs() @@ -9132,7 +9191,11 @@ SaveConfigsTabs() '検索条件の保存 End If - GetTimeline(WORKERTYPE.PublicSearch, 1, 0, tbName) + If tb.UseSearch = 0 Then + GetTimeline(WORKERTYPE.PublicSearch, 1, 0, tbName) + ElseIf tb.UseSearch = 1 Then + GetTimeline(WORKERTYPE.UserTimeline, 1, 0, tbName) + End If DirectCast(ListTab.SelectedTab.Tag, DetailsListView).Focus() End Sub Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-28 01:20:00 UTC (rev 1271) +++ trunk/Tween/Twitter.vb 2010-12-28 04:42:19 UTC (rev 1272) @@ -1325,7 +1325,8 @@ Public Function GetUserTimelineApi(ByVal read As Boolean, ByVal count As Integer, ByVal userName As String, - ByVal tab As TabClass) As String + ByVal tab As TabClass, + ByVal more As Boolean) As String If Twitter.AccountState <> ACCOUNT_STATE.Valid Then Return "" @@ -1341,7 +1342,11 @@ If target Is Nothing Then Return "" res = twCon.UserTimeline(target.Uid, "", count, 0, 0, content) Else - res = twCon.UserTimeline(0, userName, count, 0, 0, content) + If more Then + res = twCon.UserTimeline(0, userName, count, tab.OldestId, 0, content) + Else + res = twCon.UserTimeline(0, userName, count, 0, 0, content) + End If End If Catch ex As Exception Return "Err:" + ex.Message From svnnotify @ sourceforge.jp Tue Dec 28 14:11:19 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 28 Dec 2010 14:11:19 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNzNdICBVc2VyX1RpbWVsaW5l44Gu44K/44OW?= =?utf-8?b?44GM5pu05paw44GV44KM44Gf6Zqb44GrUHVibGljU2VhcmNo44Gu5pu05paw?= =?utf-8?b?44KC5a6f6KGM44GV44KM44Gm44GE44Gf44Gu44KS5L+u5q2j?= Message-ID: <1293513079.431900.27528.nullmailer@users.sourceforge.jp> Revision: 1273 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1273 Author: f_swallow Date: 2010-12-28 14:11:19 +0900 (Tue, 28 Dec 2010) Log Message: ----------- User_Timelineのタブが更新された際にPublicSearchの更新も実行されていたのを修正 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-28 04:42:19 UTC (rev 1272) +++ trunk/Tween/Tween.vb 2010-12-28 05:11:19 UTC (rev 1273) @@ -2051,7 +2051,7 @@ bw.ReportProgress(50, MakeStatusMessage(args, False)) If args.tName = "" Then For Each tb As TabClass In _statuses.GetTabsByType(TabUsageType.PublicSearch) - If tb.SearchWords <> "" Then ret = tw.GetSearch(read, tb, False) + If tb.SearchWords <> "" AndAlso tb.UseSearch = 0 Then ret = tw.GetSearch(read, tb, False) Next Else Dim tb As TabClass = _statuses.GetTabByName(args.tName) From svnnotify @ sourceforge.jp Tue Dec 28 21:38:58 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Tue, 28 Dec 2010 21:38:58 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNzRdIFNoaWZ0ICsgXSDjga7li5XkvZzjgac=?= =?utf-8?b?5LuW44Gu44K/44OW44Gu44Od44K544OI44Gr44KC56e75YuV44GZ44KL44KI?= =?utf-8?b?44GG44Gr5aSJ5pu0?= Message-ID: <1293539938.613591.32494.nullmailer@users.sourceforge.jp> Revision: 1274 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1274 Author: anis774 Date: 2010-12-28 21:38:58 +0900 (Tue, 28 Dec 2010) Log Message: ----------- Shift + ]の動作で他のタブのポストにも移動するように変更 Shift + ]で候補が無い場合には]と同じ動作をするように変更 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-28 05:11:19 UTC (rev 1273) +++ trunk/Tween/Tween.vb 2010-12-28 12:38:58 UTC (rev 1274) @@ -5561,45 +5561,41 @@ curTabPosts = _statuses.Posts End If - inReplyToIndex = curTabClass.IndexOf(_curPost.InReplyToId) - If inReplyToIndex <> -1 Then - inReplyToTabName = _curTab.Text - Else - Dim inReplyToPosts = From tab In _statuses.Tabs.Values - From post In DirectCast(IIf(tab.IsInnerStorageTabType, tab.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)).Values - Where post.Id = inReplyToId - Let index = tab.IndexOf(post.Id) - Where index <> -1 - Select New With {.Tab = tab, .Post = post, .Index = index} + Dim inReplyToPosts = From tab In _statuses.Tabs.Values + Order By tab IsNot curTabClass + From post In DirectCast(IIf(tab.IsInnerStorageTabType, tab.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)).Values + Where post.Id = inReplyToId + Let index = tab.IndexOf(post.Id) + Where index <> -1 + Select New With {.Tab = tab, .Index = index} - Try - Dim inReplyPost = inReplyToPosts.First() - inReplyToTabName = inReplyPost.Tab.TabName - inReplyToIndex = inReplyPost.Index - Catch ex As InvalidOperationException - Dim post As PostClass = Nothing - Dim r As String = tw.GetStatusApi(False, _curPost.InReplyToId, post) - If r = "" AndAlso post IsNot Nothing Then - post.IsRead = True - _statuses.AddPost(post) - _statuses.DistributePosts() - _statuses.SubmitUpdate(Nothing, Nothing, Nothing, False) - Me.RefreshTimeline(False) - Try - Dim inReplyPost = inReplyToPosts.First() - inReplyToTabName = inReplyPost.Tab.TabName - inReplyToIndex = inReplyPost.Index - Catch ex2 As InvalidOperationException - OpenUriAsync("http://twitter.com/" + inReplyToUser + "/statuses/" + inReplyToId.ToString()) - Exit Sub - End Try - Else - Me.StatusLabelUrl.Text = r + Try + Dim inReplyPost = inReplyToPosts.First() + inReplyToTabName = inReplyPost.Tab.TabName + inReplyToIndex = inReplyPost.Index + Catch ex As InvalidOperationException + Dim post As PostClass = Nothing + Dim r As String = tw.GetStatusApi(False, _curPost.InReplyToId, post) + If r = "" AndAlso post IsNot Nothing Then + post.IsRead = True + _statuses.AddPost(post) + _statuses.DistributePosts() + _statuses.SubmitUpdate(Nothing, Nothing, Nothing, False) + Me.RefreshTimeline(False) + Try + Dim inReplyPost = inReplyToPosts.First() + inReplyToTabName = inReplyPost.Tab.TabName + inReplyToIndex = inReplyPost.Index + Catch ex2 As InvalidOperationException OpenUriAsync("http://twitter.com/" + inReplyToUser + "/statuses/" + inReplyToId.ToString()) Exit Sub - End If - End Try - End If + End Try + Else + Me.StatusLabelUrl.Text = r + OpenUriAsync("http://twitter.com/" + inReplyToUser + "/statuses/" + inReplyToId.ToString()) + Exit Sub + End If + End Try Dim tabPage = Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = inReplyToTabName) Dim listView = DirectCast(tabPage.Tag, DetailsListView) @@ -5619,92 +5615,68 @@ Dim curTabPosts As Dictionary(Of Long, PostClass) = DirectCast(IIf(curTabClass.IsInnerStorageTabType, curTabClass.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) If isShiftKeyPress AndAlso _curPost.InReplyToId <> 0 Then - Dim posts = From p In curTabPosts + Dim posts = From t In _statuses.Tabs + From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) Where p.Value.Id <> _curPost.Id AndAlso p.Value.InReplyToId = _curPost.InReplyToId - Let indexOf = curTabClass.IndexOf(p.Value.Id) + Let indexOf = t.Value.IndexOf(p.Value.Id) Where indexOf > -1 Order By indexOf - Select New With {.Post = p.Value, .Index = indexOf} - + Order By t.Value IsNot curTabClass + Select New With {.Tab = t.Value, .Post = p.Value, .Index = indexOf} Try Dim postList = posts.ToList() - Dim post = postList.FirstOrDefault(Function(p) - Return p.Index > curTabClass.IndexOf(_curPost.Id) - End Function) - If post Is Nothing Then - post = postList.First() - End If - SelectListItem(_curList, post.Index) - _curList.EnsureVisible(post.Index) + For i As Integer = postList.Count - 1 To 0 Step -1 + Dim index As Integer = i + If postList.FindIndex(Function(pst) pst.Post.Id = postList(index).Post.Id) <> index Then + postList.RemoveAt(index) + End If + Next + Dim post = postList.FirstOrDefault(Function(pst) pst.Tab Is curTabClass AndAlso pst.Index > _curItemIndex) + If post Is Nothing Then post = postList.FirstOrDefault(Function(pst) pst.Tab IsNot curTabClass) + If post Is Nothing Then post = postList.First() + Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) + Dim listView = DirectCast(Me.ListTab.SelectedTab.Tag, DetailsListView) + SelectListItem(listView, post.Index) + listView.EnsureVisible(post.Index) Catch ex As InvalidOperationException - Dim posts2 = From t In _statuses.Tabs - Where t.Value IsNot curTabClass - From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) - Where p.Value.Id <> _curPost.Id AndAlso p.Value.InReplyToId = _curPost.InReplyToId - Let indexOf = t.Value.IndexOf(p.Value.Id) - Where indexOf > -1 - Order By indexOf - Select New With {.Tab = t.Value, .Post = p.Value, .Index = indexOf} - Try - Dim post = posts2.First() - Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) - Dim listView = DirectCast(Me.ListTab.SelectedTab.Tag, DetailsListView) - SelectListItem(listView, post.Index) - listView.EnsureVisible(post.Index) - Catch ex2 As InvalidOperationException - Exit Sub - End Try + Exit Sub End Try + ElseIf replyChains Is Nothing OrElse replyChains.Count < 1 Then + Dim posts = From t In _statuses.Tabs + From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) + Where p.Value.InReplyToId = _curPost.Id + Let indexOf = t.Value.IndexOf(p.Value.Id) + Where indexOf > -1 + Order By indexOf + Order By t.Value IsNot curTabClass + Select New With {.Tab = t.Value, .Index = indexOf} + Try + Dim post = posts.First() + Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) + Dim listView = DirectCast(Me.ListTab.SelectedTab.Tag, DetailsListView) + SelectListItem(listView, post.Index) + listView.EnsureVisible(post.Index) + Catch ex As InvalidOperationException + Exit Sub + End Try Else - If replyChains Is Nothing OrElse replyChains.Count < 1 Then - Dim posts = From p In curTabPosts - Where p.Value.InReplyToId = _curPost.Id - Let indexOf = curTabClass.IndexOf(p.Value.Id) - Where indexOf > -1 - Order By indexOf - Select New With {.Post = p.Value, .Index = indexOf} - Try - Dim post = posts.First() - SelectListItem(_curList, post.Index) - _curList.EnsureVisible(post.Index) - Catch ex As InvalidOperationException - Dim posts2 = From t In _statuses.Tabs - Where t.Value IsNot curTabClass - From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) - Where p.Value.InReplyToId = _curPost.Id - Let indexOf = t.Value.IndexOf(p.Value.Id) - Where indexOf > -1 - Order By indexOf - Select New With {.Tab = t.Value, .Post = p.Value, .Index = indexOf} + Dim chainHead As ReplyChain = replyChains.Pop() + If chainHead.InReplyToId = _curPost.Id Then + Dim idx As Integer = _statuses.Tabs(chainHead.OriginalTab.Text).IndexOf(chainHead.OriginalId) + If idx = -1 Then + replyChains = Nothing + Else Try - Dim post = posts2.First() - Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) - Dim listView = DirectCast(Me.ListTab.SelectedTab.Tag, DetailsListView) - SelectListItem(listView, post.Index) - listView.EnsureVisible(post.Index) - Catch ex2 As InvalidOperationException - Exit Sub - End Try - End Try - Else - Dim chainHead As ReplyChain = replyChains.Pop() - If chainHead.InReplyToId = _curPost.Id Then - Dim idx As Integer = _statuses.Tabs(chainHead.OriginalTab.Text).IndexOf(chainHead.OriginalId) - If idx = -1 Then + ListTab.SelectTab(chainHead.OriginalTab) + Catch ex As Exception replyChains = Nothing - Else - Try - ListTab.SelectTab(chainHead.OriginalTab) - Catch ex As Exception - replyChains = Nothing - End Try - SelectListItem(_curList, idx) - _curList.EnsureVisible(idx) - End If - Else - replyChains = Nothing - Me.GoBackInReplyToPost(isShiftKeyPress) + End Try + SelectListItem(_curList, idx) + _curList.EnsureVisible(idx) End If + Else + replyChains = Nothing + Me.GoBackInReplyToPost(isShiftKeyPress) End If End If End Sub From svnnotify @ sourceforge.jp Wed Dec 29 08:54:31 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 29 Dec 2010 08:54:31 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNzVdIFNoaWZ0ICsgXSDjgaflgJnoo5zjgYw=?= =?utf-8?b?54Sh44GE5aC05ZCI44GrIF0g44Go5ZCM44GY5YuV5L2c44KS44GZ44KL44KI?= =?utf-8?b?44GG44Gr5aSJ5pu044GX44Gf44GM44CB5L2V44KC44GX44Gq44GE44KI44GG?= =?utf-8?b?44Gr5aSJ5pu044CC?= Message-ID: <1293580471.568717.3002.nullmailer@users.sourceforge.jp> Revision: 1275 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1275 Author: anis774 Date: 2010-12-29 08:54:31 +0900 (Wed, 29 Dec 2010) Log Message: ----------- Shift + ]で候補が無い場合に]と同じ動作をするように変更したが、何もしないように変更。 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-28 12:38:58 UTC (rev 1274) +++ trunk/Tween/Tween.vb 2010-12-28 23:54:31 UTC (rev 1275) @@ -5614,69 +5614,73 @@ Dim curTabClass As TabClass = _statuses.Tabs(_curTab.Text) Dim curTabPosts As Dictionary(Of Long, PostClass) = DirectCast(IIf(curTabClass.IsInnerStorageTabType, curTabClass.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) - If isShiftKeyPress AndAlso _curPost.InReplyToId <> 0 Then - Dim posts = From t In _statuses.Tabs - From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) - Where p.Value.Id <> _curPost.Id AndAlso p.Value.InReplyToId = _curPost.InReplyToId - Let indexOf = t.Value.IndexOf(p.Value.Id) - Where indexOf > -1 - Order By indexOf - Order By t.Value IsNot curTabClass - Select New With {.Tab = t.Value, .Post = p.Value, .Index = indexOf} - Try - Dim postList = posts.ToList() - For i As Integer = postList.Count - 1 To 0 Step -1 - Dim index As Integer = i - If postList.FindIndex(Function(pst) pst.Post.Id = postList(index).Post.Id) <> index Then - postList.RemoveAt(index) + If isShiftKeyPress Then + If _curPost.InReplyToId <> 0 Then + Dim posts = From t In _statuses.Tabs + From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) + Where p.Value.Id <> _curPost.Id AndAlso p.Value.InReplyToId = _curPost.InReplyToId + Let indexOf = t.Value.IndexOf(p.Value.Id) + Where indexOf > -1 + Order By indexOf + Order By t.Value IsNot curTabClass + Select New With {.Tab = t.Value, .Post = p.Value, .Index = indexOf} + Try + Dim postList = posts.ToList() + For i As Integer = postList.Count - 1 To 0 Step -1 + Dim index As Integer = i + If postList.FindIndex(Function(pst) pst.Post.Id = postList(index).Post.Id) <> index Then + postList.RemoveAt(index) + End If + Next + Dim post = postList.FirstOrDefault(Function(pst) pst.Tab Is curTabClass AndAlso pst.Index > _curItemIndex) + If post Is Nothing Then post = postList.FirstOrDefault(Function(pst) pst.Tab IsNot curTabClass) + If post Is Nothing Then post = postList.First() + Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) + Dim listView = DirectCast(Me.ListTab.SelectedTab.Tag, DetailsListView) + SelectListItem(listView, post.Index) + listView.EnsureVisible(post.Index) + Catch ex As InvalidOperationException + Exit Sub + End Try + End If + Else + If replyChains Is Nothing OrElse replyChains.Count < 1 Then + Dim posts = From t In _statuses.Tabs + From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) + Where p.Value.InReplyToId = _curPost.Id + Let indexOf = t.Value.IndexOf(p.Value.Id) + Where indexOf > -1 + Order By indexOf + Order By t.Value IsNot curTabClass + Select New With {.Tab = t.Value, .Index = indexOf} + Try + Dim post = posts.First() + Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) + Dim listView = DirectCast(Me.ListTab.SelectedTab.Tag, DetailsListView) + SelectListItem(listView, post.Index) + listView.EnsureVisible(post.Index) + Catch ex As InvalidOperationException + Exit Sub + End Try + Else + Dim chainHead As ReplyChain = replyChains.Pop() + If chainHead.InReplyToId = _curPost.Id Then + Dim idx As Integer = _statuses.Tabs(chainHead.OriginalTab.Text).IndexOf(chainHead.OriginalId) + If idx = -1 Then + replyChains = Nothing + Else + Try + ListTab.SelectTab(chainHead.OriginalTab) + Catch ex As Exception + replyChains = Nothing + End Try + SelectListItem(_curList, idx) + _curList.EnsureVisible(idx) End If - Next - Dim post = postList.FirstOrDefault(Function(pst) pst.Tab Is curTabClass AndAlso pst.Index > _curItemIndex) - If post Is Nothing Then post = postList.FirstOrDefault(Function(pst) pst.Tab IsNot curTabClass) - If post Is Nothing Then post = postList.First() - Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) - Dim listView = DirectCast(Me.ListTab.SelectedTab.Tag, DetailsListView) - SelectListItem(listView, post.Index) - listView.EnsureVisible(post.Index) - Catch ex As InvalidOperationException - Exit Sub - End Try - ElseIf replyChains Is Nothing OrElse replyChains.Count < 1 Then - Dim posts = From t In _statuses.Tabs - From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) - Where p.Value.InReplyToId = _curPost.Id - Let indexOf = t.Value.IndexOf(p.Value.Id) - Where indexOf > -1 - Order By indexOf - Order By t.Value IsNot curTabClass - Select New With {.Tab = t.Value, .Index = indexOf} - Try - Dim post = posts.First() - Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) - Dim listView = DirectCast(Me.ListTab.SelectedTab.Tag, DetailsListView) - SelectListItem(listView, post.Index) - listView.EnsureVisible(post.Index) - Catch ex As InvalidOperationException - Exit Sub - End Try - Else - Dim chainHead As ReplyChain = replyChains.Pop() - If chainHead.InReplyToId = _curPost.Id Then - Dim idx As Integer = _statuses.Tabs(chainHead.OriginalTab.Text).IndexOf(chainHead.OriginalId) - If idx = -1 Then + Else replyChains = Nothing - Else - Try - ListTab.SelectTab(chainHead.OriginalTab) - Catch ex As Exception - replyChains = Nothing - End Try - SelectListItem(_curList, idx) - _curList.EnsureVisible(idx) + Me.GoBackInReplyToPost(isShiftKeyPress) End If - Else - replyChains = Nothing - Me.GoBackInReplyToPost(isShiftKeyPress) End If End If End Sub From svnnotify @ sourceforge.jp Wed Dec 29 08:59:34 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 29 Dec 2010 08:59:34 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNzZdICDjgZPjga7jg6bjg7zjgrbjg7zjga4=?= =?utf-8?b?55m66KiA44KS5qSc57Si44CA44Gu44Oh44OL44Ol44O844GnVXNlcl9UaW1l?= =?utf-8?b?bGluZeOBp+WPluW+l+OBmeOCi+OCiOOBhuOBqw==?= Message-ID: <1293580774.022630.8382.nullmailer@users.sourceforge.jp> Revision: 1276 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1276 Author: f_swallow Date: 2010-12-29 08:59:33 +0900 (Wed, 29 Dec 2010) Log Message: ----------- このユーザーの発言を検索 のメニューでUser_Timelineで取得するように Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-28 23:54:31 UTC (rev 1275) +++ trunk/Tween/Tween.vb 2010-12-28 23:59:33 UTC (rev 1276) @@ -2075,10 +2075,9 @@ Else Dim tb As TabClass = _statuses.GetTabByName(args.tName) If tb IsNot Nothing Then - If args.page = -1 Then + ret = tw.GetUserTimelineApi(read, count, tb.SearchWords, tb, False) + If ret = "" AndAlso args.page = -1 Then ret = tw.GetUserTimelineApi(read, count, tb.SearchWords, tb, True) - Else - ret = tw.GetUserTimelineApi(read, count, tb.SearchWords, tb, False) End If End If End If @@ -3287,6 +3286,43 @@ Me.SearchButton_Click(ListTab.SelectedTab.Controls("panelSearch").Controls("comboSearch"), Nothing) End Sub + Public Sub AddNewTabForUserTimeline(ByVal searchWord As String) + '同一検索条件のタブが既に存在すれば、そのタブアクティブにして終了 + For Each tb As TabClass In _statuses.GetTabsByType(TabUsageType.PublicSearch) + If tb.SearchWords = searchWord AndAlso tb.SearchLang = "" Then + For Each tp As TabPage In ListTab.TabPages + If tb.TabName = tp.Text Then + ListTab.SelectedTab = tp + Exit Sub + End If + Next + End If + Next + 'ユニークなタブ名生成 + Dim tabName As String = "user:" + searchWord + For i As Integer = 0 To 100 + If _statuses.ContainsTab(tabName) Then + tabName += "_" + Else + Exit For + End If + Next + 'タブ追加 + AddNewTab(tabName, False, TabUsageType.PublicSearch) + _statuses.AddTab(tabName, TabUsageType.PublicSearch, Nothing) + '追加したタブをアクティブに + ListTab.SelectedIndex = ListTab.TabPages.Count - 1 + '検索条件の設定 + Dim cmb As ComboBox = DirectCast(ListTab.SelectedTab.Controls("panelSearch").Controls("comboSearch"), ComboBox) + cmb.Items.Add(searchWord) + cmb.Text = searchWord + Dim cmbus As ComboBox = DirectCast(ListTab.SelectedTab.Controls("panelSearch").Controls("comboUserLine"), ComboBox) + cmbus.Text = "User" + SaveConfigsTabs() + '検索実行 + Me.SearchButton_Click(ListTab.SelectedTab.Controls("panelSearch").Controls("comboSearch"), Nothing) + End Sub + Public Function AddNewTab(ByVal tabName As String, ByVal startup As Boolean, ByVal tabType As TabUsageType) As Boolean '重複チェック For Each tb As TabPage In ListTab.TabPages @@ -9063,7 +9099,7 @@ Private Sub SearchPostsDetailToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SearchPostsDetailToolStripMenuItem.Click Dim name As String = GetUserId() - If name IsNot Nothing Then AddNewTabForSearch("from:" + name) + If name IsNot Nothing Then AddNewTabForUserTimeline(name) End Sub Private Sub SearchAtPostsDetailToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SearchAtPostsDetailToolStripMenuItem.Click @@ -9640,7 +9676,7 @@ Private Sub SearchPostsDetailNameToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SearchPostsDetailNameToolStripMenuItem.Click If NameLabel.Tag IsNot Nothing Then Dim id As String = DirectCast(NameLabel.Tag, String) - AddNewTabForSearch("from:" + id) + AddNewTabForUserTimeline(id) End If End Sub From svnnotify @ sourceforge.jp Wed Dec 29 09:27:16 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 29 Dec 2010 09:27:16 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNzddIFNoaWZ0ICsgWyDjgadTaGlmdCArIF0g?= =?utf-8?b?44Gu6YCG5YG044Gr56e75YuV44GZ44KL44KI44GG44Gr5a6f6KOF44CC?= Message-ID: <1293582436.219262.10966.nullmailer@users.sourceforge.jp> Revision: 1277 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1277 Author: anis774 Date: 2010-12-29 09:27:16 +0900 (Wed, 29 Dec 2010) Log Message: ----------- Shift + [でShift + ]の逆側に移動するように実装。 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-28 23:59:33 UTC (rev 1276) +++ trunk/Tween/Tween.vb 2010-12-29 00:27:16 UTC (rev 1277) @@ -4881,13 +4881,13 @@ If e.KeyCode = Keys.Oem4 Then e.Handled = True e.SuppressKeyPress = True - GoInReplyToPost() + GoInReplyToPostTree() End If ' [ in_reply_toへジャンプ If e.KeyCode = Keys.Oem6 Then e.Handled = True e.SuppressKeyPress = True - GoBackInReplyToPost() + GoBackInReplyToPostTree() End If If e.KeyCode = Keys.F1 Then e.Handled = True @@ -5099,10 +5099,14 @@ e.Handled = True e.SuppressKeyPress = True SendKeys.Send("{UP}") + ElseIf e.KeyCode = Keys.Oem4 AndAlso Not e.Alt Then + e.Handled = True + e.SuppressKeyPress = True + GoBackInReplyToPostTree(True, False) ElseIf e.KeyCode = Keys.Oem6 AndAlso Not e.Alt Then e.Handled = True e.SuppressKeyPress = True - GoBackInReplyToPost(True) + GoBackInReplyToPostTree(True, True) End If ' お気に入り前後ジャンプ(SHIFT+N←/P→) @@ -5559,7 +5563,7 @@ _curList.EnsureVisible(idx) End Sub - Private Sub GoInReplyToPost() + Private Sub GoInReplyToPostTree() If _curPost Is Nothing Then Return Dim curTabClass As TabClass = _statuses.Tabs(_curTab.Text) @@ -5644,20 +5648,20 @@ listView.EnsureVisible(inReplyToIndex) End Sub - Private Sub GoBackInReplyToPost(Optional ByVal isShiftKeyPress As Boolean = False) + Private Sub GoBackInReplyToPostTree(Optional ByVal parallel As Boolean = False, Optional ByVal isForward As Boolean = True) If _curPost Is Nothing Then Return Dim curTabClass As TabClass = _statuses.Tabs(_curTab.Text) Dim curTabPosts As Dictionary(Of Long, PostClass) = DirectCast(IIf(curTabClass.IsInnerStorageTabType, curTabClass.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) - If isShiftKeyPress Then + If parallel Then If _curPost.InReplyToId <> 0 Then Dim posts = From t In _statuses.Tabs From p In DirectCast(IIf(t.Value.IsInnerStorageTabType, t.Value.Posts, _statuses.Posts), Dictionary(Of Long, PostClass)) Where p.Value.Id <> _curPost.Id AndAlso p.Value.InReplyToId = _curPost.InReplyToId Let indexOf = t.Value.IndexOf(p.Value.Id) Where indexOf > -1 - Order By indexOf + Order By IIf(isForward, indexOf, indexOf * -1) Order By t.Value IsNot curTabClass Select New With {.Tab = t.Value, .Post = p.Value, .Index = indexOf} Try @@ -5668,7 +5672,7 @@ postList.RemoveAt(index) End If Next - Dim post = postList.FirstOrDefault(Function(pst) pst.Tab Is curTabClass AndAlso pst.Index > _curItemIndex) + Dim post = postList.FirstOrDefault(Function(pst) pst.Tab Is curTabClass AndAlso DirectCast(IIf(isForward, pst.Index > _curItemIndex, pst.Index < _curItemIndex), Boolean)) If post Is Nothing Then post = postList.FirstOrDefault(Function(pst) pst.Tab IsNot curTabClass) If post Is Nothing Then post = postList.First() Me.ListTab.SelectTab(Me.ListTab.TabPages.Cast(Of TabPage).First(Function(tp) tp.Text = post.Tab.TabName)) @@ -5715,7 +5719,7 @@ End If Else replyChains = Nothing - Me.GoBackInReplyToPost(isShiftKeyPress) + Me.GoBackInReplyToPostTree(parallel) End If End If End If From svnnotify @ sourceforge.jp Wed Dec 29 11:34:58 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 29 Dec 2010 11:34:58 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNzhdICBDdHJsLUPjgadERUxFVEVE55m66KiA?= =?utf-8?b?44GM44Kz44OU44O844GV44KM44Gq44GE44KI44GG44Gr?= Message-ID: <1293590098.148238.17024.nullmailer@users.sourceforge.jp> Revision: 1278 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1278 Author: kiri_feather Date: 2010-12-29 11:34:58 +0900 (Wed, 29 Dec 2010) Log Message: ----------- Ctrl-CでDELETED発言がコピーされないように Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-29 00:27:16 UTC (rev 1277) +++ trunk/Tween/Tween.vb 2010-12-29 02:34:58 UTC (rev 1278) @@ -5270,6 +5270,7 @@ IsProtected = True Continue For End If + If post.IsDeleted Then Continue For If post.RetweetedId > 0 Then sb.AppendFormat("{0}:{1} [http://twitter.com/{0}/status/{2}]{3}", post.Name, post.Data, post.RetweetedId, Environment.NewLine) Else From svnnotify @ sourceforge.jp Wed Dec 29 12:51:58 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 29 Dec 2010 12:51:58 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyNzldICDjg7vjg5Xjgqnjg7Pjg4jjga7oqK0=?= =?utf-8?b?5a6a44GnSGFuZGxlc+OBjOaKnOOBkeOBpuOBhOOBn+OCguOBruOBjOOBgg==?= =?utf-8?b?44Gj44Gf44Gu44Gn5L+u5q2j?= Message-ID: <1293594718.747430.16029.nullmailer@users.sourceforge.jp> Revision: 1279 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1279 Author: f_swallow Date: 2010-12-29 12:51:58 +0900 (Wed, 29 Dec 2010) Log Message: ----------- ・フォントの設定でHandlesが抜けていたものがあったので修正 Modified Paths: -------------- trunk/Tween/AppendSettingDialog.vb -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.vb =================================================================== --- trunk/Tween/AppendSettingDialog.vb 2010-12-29 02:34:58 UTC (rev 1278) +++ trunk/Tween/AppendSettingDialog.vb 2010-12-29 03:51:58 UTC (rev 1279) @@ -760,7 +760,7 @@ End If End Sub - Private Sub btnFontAndColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnInputFont.Click + Private Sub btnFontAndColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnUnread.Click, btnDetail.Click, btnListFont.Click, btnInputFont.Click Dim Btn As Button = CType(sender, Button) Dim rtn As DialogResult From svnnotify @ sourceforge.jp Wed Dec 29 16:08:33 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 29 Dec 2010 16:08:33 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyODBdICDmlLnooYznhKHlirnjgadFbnRlcg==?= =?utf-8?b?5oqV56i/44Gu6Zqb44GrU2hpZnQrRW50ZXLjgafjg5Xjg4Pjgr/jgpLnhKE=?= =?utf-8?b?5Yq544Gr44GX44Gm5oqV56i/44Gn44GN44Gq44GL44Gj44Gf44Gu44KS5L+u?= =?utf-8?b?5q2j?= Message-ID: <1293606513.063644.14529.nullmailer@users.sourceforge.jp> Revision: 1280 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1280 Author: f_swallow Date: 2010-12-29 16:08:33 +0900 (Wed, 29 Dec 2010) Log Message: ----------- 改行無効でEnter投稿の際にShift+Enterでフッタを無効にして投稿できなかったのを修正 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-29 03:51:58 UTC (rev 1279) +++ trunk/Tween/Tween.vb 2010-12-29 07:08:33 UTC (rev 1280) @@ -7226,6 +7226,7 @@ End If '投稿 If (Not StatusText.Multiline AndAlso _ + ((keyData And Keys.Shift) = Keys.Shift AndAlso (Not SettingDialog.PostCtrlEnter AndAlso Not SettingDialog.PostShiftEnter)) OrElse _ ((keyData And Keys.Control) = Keys.Control AndAlso SettingDialog.PostCtrlEnter) OrElse _ ((keyData And Keys.Shift) = Keys.Shift AndAlso SettingDialog.PostShiftEnter) OrElse _ (((keyData And Keys.Control) <> Keys.Control AndAlso Not SettingDialog.PostCtrlEnter) AndAlso _ From svnnotify @ sourceforge.jp Wed Dec 29 23:16:33 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Wed, 29 Dec 2010 23:16:33 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyODFdICBKU09O5a++5b+c5a6M5LqG?= Message-ID: <1293632193.182636.12877.nullmailer@users.sourceforge.jp> Revision: 1281 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1281 Author: kiri_feather Date: 2010-12-29 23:16:32 +0900 (Wed, 29 Dec 2010) Log Message: ----------- JSON対応完了 Modified Paths: -------------- trunk/Tween/Connection/HttpTwitter.vb trunk/Tween/DataModel.vb trunk/Tween/Twitter.vb trunk/Tween/UserInfo.vb -------------- next part -------------- Modified: trunk/Tween/Connection/HttpTwitter.vb =================================================================== --- trunk/Tween/Connection/HttpTwitter.vb 2010-12-29 07:08:33 UTC (rev 1280) +++ trunk/Tween/Connection/HttpTwitter.vb 2010-12-29 14:16:32 UTC (rev 1281) @@ -589,7 +589,7 @@ Dim param As New Dictionary(Of String, String) param.Add("cursor", cursor.ToString()) Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/" + user + "/" + list_id + "/members.xml"), _ + CreateTwitterUri("/1/" + user + "/" + list_id + "/members.json"), _ param, _ content, _ TwitterApiInfo.HttpHeaders, _ @@ -600,7 +600,7 @@ Dim param As New Dictionary(Of String, String) param.Add("id", id) Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/" + user + "/" + list_id + "/members.xml"), _ + CreateTwitterUri("/1/" + user + "/" + list_id + "/members.json"), _ param, _ content, _ Nothing, _ @@ -612,7 +612,7 @@ param.Add("id", id) param.Add("_method", "DELETE") Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/" + user + "/" + list_id + "/members.xml"), _ + CreateTwitterUri("/1/" + user + "/" + list_id + "/members.json"), _ param, _ content, _ Nothing, _ @@ -621,7 +621,7 @@ Public Function GetListMembersID(ByVal user As String, ByVal list_id As String, ByVal id As String, ByRef content As String) As HttpStatusCode Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/" + user + "/" + list_id + "/members/" + id + ".xml"), _ + CreateTwitterUri("/1/" + user + "/" + list_id + "/members/" + id + ".json"), _ Nothing, _ content, _ TwitterApiInfo.HttpHeaders, _ @@ -638,7 +638,7 @@ End If Return httpCon.GetContent(GetMethod, _ - CreateTwitterUri("/1/statuses/" + statusid.ToString + "/retweeted_by/ids.xml"), _ + CreateTwitterUri("/1/statuses/" + statusid.ToString + "/retweeted_by/ids.json"), _ param, _ content, _ TwitterApiInfo.HttpHeaders, _ @@ -654,7 +654,7 @@ param.Add("description", description) Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/account/update_profile.xml"), _ + CreateTwitterUri("/1/account/update_profile.json"), _ param, _ content, _ Nothing, _ @@ -666,7 +666,7 @@ binary.Add(New KeyValuePair(Of String, FileInfo)("image", imageFile)) Return httpCon.GetContent(PostMethod, _ - CreateTwitterUri("/1/account/update_profile_image.xml"), _ + CreateTwitterUri("/1/account/update_profile_image.json"), _ Nothing, _ binary, _ content, _ Modified: trunk/Tween/DataModel.vb =================================================================== --- trunk/Tween/DataModel.vb 2010-12-29 07:08:33 UTC (rev 1280) +++ trunk/Tween/DataModel.vb 2010-12-29 14:16:32 UTC (rev 1281) @@ -307,4 +307,12 @@ Public NextCursor As Long Public PreviousCursor As Long End Class + + _ + Public Class Users + Public users As User() + Public NextCursor As Long + Public PreviousCursor As Long + End Class + End Class Modified: trunk/Tween/Twitter.vb =================================================================== --- trunk/Tween/Twitter.vb 2010-12-29 07:08:33 UTC (rev 1280) +++ trunk/Tween/Twitter.vb 2010-12-29 14:16:32 UTC (rev 1281) @@ -909,19 +909,18 @@ Select Case res Case HttpStatusCode.OK - Dim xdoc As New XmlDocument - Dim xnode As XmlNodeList - Dim result As String = "" - Twitter.AccountState = ACCOUNT_STATE.Valid Try - xdoc.LoadXml(content) - xnode = xdoc.GetElementsByTagName("ids") - retweeted_count += xnode.ItemOf(0).ChildNodes.Count - If xnode.ItemOf(0).ChildNodes.Count < 100 Then Exit For + Dim ids As Int64() = CreateDataFromJson(Of Int64())(content) + retweeted_count += ids.Length + If ids.Length < 100 Then Exit For + Catch ex As SerializationException + retweeted_count = -1 + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" Catch ex As Exception retweeted_count = -1 - result = "Err:Invalid XML." - xmlBuf = Nothing + TraceOut(content) + Return "Err:Invalid Json!" End Try Case HttpStatusCode.BadRequest retweeted_count = -1 @@ -1061,15 +1060,12 @@ Twitter.AccountState = ACCOUNT_STATE.Invalid Return "Check your Username/Password." Case HttpStatusCode.Forbidden - Dim xd As XmlDocument = New XmlDocument - Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/hash/error") - Return "Err:" + xNode.InnerText + "(" + GetCurrentMethod.Name + ")" - Catch ex As Exception - Return "Err:Forbidden" + "(" + GetCurrentMethod.Name + ")" - End Try + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Err:Forbidden(" + GetCurrentMethod.Name + ")" + Else + Return "Err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -1096,15 +1092,12 @@ Twitter.AccountState = ACCOUNT_STATE.Invalid Return "Check your Username/Password." Case HttpStatusCode.Forbidden - Dim xd As XmlDocument = New XmlDocument - Try - xd.LoadXml(content) - Dim xNode As XmlNode = Nothing - xNode = xd.SelectSingleNode("/hash/error") - Return "Err:" + xNode.InnerText + "(" + GetCurrentMethod.Name + ")" - Catch ex As Exception - Return "Err:Forbidden" + "(" + GetCurrentMethod.Name + ")" - End Try + Dim errMsg As String = GetErrorMessageJson(content) + If String.IsNullOrEmpty(errMsg) Then + Return "Err:Forbidden(" + GetCurrentMethod.Name + ")" + Else + Return "Err:" + errMsg + End If Case Else Return "Err:" + res.ToString + "(" + GetCurrentMethod.Name + ")" End Select @@ -2467,7 +2460,6 @@ Dim res As HttpStatusCode Dim content As String = "" - 'Dim cursor As Long = -1 'Do Try @@ -2488,25 +2480,23 @@ Return "Err:" + res.ToString() + "(" + GetCurrentMethod.Name + ")" End Select - Dim xdoc As New XmlDocument Try - xdoc.LoadXml(content) + Dim users = CreateDataFromJson(Of TwitterDataModel.Users)(content) + Array.ForEach(Of TwitterDataModel.User)( + users.users, + New Action(Of TwitterDataModel.User)(Sub(u) + lists.Add(New UserInfo(u)) + End Sub)) + cursor = users.NextCursor + Return "" + Catch ex As SerializationException + TraceOut(ex.Message + Environment.NewLine + content) + Return "Err:Json Parse Error(DataContractJsonSerializer)" Catch ex As Exception TraceOut(content) - Return "Invalid XML!" + Return "Err:Invalid Json!" End Try - Try - For Each xentryNode As XmlNode In xdoc.DocumentElement.SelectNodes("/users_list/users/user") - lists.Add(New UserInfo(xentryNode)) - Next - cursor = Long.Parse(xdoc.DocumentElement.SelectSingleNode("/users_list/next_cursor").InnerText) - Catch ex As Exception - TraceOut(content) - Return "Invalid XML!" - End Try - 'Loop While cursor <> 0 - Return "" End Function @@ -2576,16 +2566,14 @@ Return "Err:" + res.ToString() + "(" + GetCurrentMethod.Name + ")" End Select - Dim xdoc As New XmlDocument Try - xdoc.LoadXml(content) - value = xdoc.DocumentElement.Name = "user" + Dim u = CreateDataFromJson(Of TwitterDataModel.User)(content) + value = True + Return "" Catch ex As Exception - TraceOut(content) - Return "Invalid XML!" + value = False + Return "" End Try - - Return "" End Function Public Function AddUserToList(ByVal list_name As String, ByVal user As String) As String @@ -2598,6 +2586,18 @@ Return "Err:" + ex.Message + "(" + GetCurrentMethod.Name + ")" End Try + Select Case res + Case HttpStatusCode.OK + Twitter.AccountState = ACCOUNT_STATE.Valid + Case HttpStatusCode.Unauthorized + Twitter.AccountState = ACCOUNT_STATE.Invalid + Return "Check your Username/Password." + Case HttpStatusCode.BadRequest + Return "Err:API Limits?" + Case Else + Return "Err:" + res.ToString() + "(" + GetCurrentMethod.Name + ")" + End Select + Return "" End Function @@ -2611,6 +2611,18 @@ Return "Err:" + ex.Message + "(" + GetCurrentMethod.Name + ")" End Try + Select Case res + Case HttpStatusCode.OK + Twitter.AccountState = ACCOUNT_STATE.Valid + Case HttpStatusCode.Unauthorized + Twitter.AccountState = ACCOUNT_STATE.Invalid + Return "Check your Username/Password." + Case HttpStatusCode.BadRequest + Return "Err:API Limits?" + Case Else + Return "Err:" + res.ToString() + "(" + GetCurrentMethod.Name + ")" + End Select + Return "" End Function @@ -2867,12 +2879,17 @@ Debug.Print("delete") Dim post As PostClass = Nothing Dim id As Int64 - If xElm.Element("delete").Element("direct_message") IsNot Nothing Then + If xElm.Element("delete").Element("direct_message") IsNot Nothing AndAlso + xElm.Element("delete").Element("direct_message").Element("id") IsNot Nothing Then id = CLng(xElm.Element("delete").Element("direct_message").Element("id").Value) RaiseEvent PostDeleted(id, post) - Else + ElseIf xElm.Element("delete").Element("status") IsNot Nothing AndAlso + xElm.Element("delete").Element("status").Element("id") IsNot Nothing Then id = CLng(xElm.Element("delete").Element("status").Element("id").Value) RaiseEvent PostDeleted(id, post) + Else + TraceOut("delete:" + line) + Exit Sub End If CreateDeleteEvent(DateTime.Now, id, post) Exit Sub @@ -2887,7 +2904,11 @@ Debug.Print("direct_message") isDm = True ElseIf xElm.Element("scrub_geo") IsNot Nothing Then - Debug.Print("scrub_geo: user_id=" + xElm.Element("user_id").Value.ToString + " up_to_status_id=" + xElm.Element("up_to_status_id").Value.ToString) + Try + Debug.Print("scrub_geo: user_id=" + xElm.Element("user_id").Value.ToString + " up_to_status_id=" + xElm.Element("up_to_status_id").Value.ToString) + Catch ex As Exception + TraceOut("scrub_geo:" + line) + End Try Exit Sub End If End Using Modified: trunk/Tween/UserInfo.vb =================================================================== --- trunk/Tween/UserInfo.vb 2010-12-29 07:08:33 UTC (rev 1280) +++ trunk/Tween/UserInfo.vb 2010-12-29 14:16:32 UTC (rev 1281) @@ -3,25 +3,30 @@ End Sub - Public Sub New(ByVal xmlNode As Xml.XmlNode) - Me.Id = Long.Parse(xmlNode.Item("id").InnerText) - Me.Name = xmlNode.Item("name").InnerText - Me.ScreenName = xmlNode.Item("screen_name").InnerText - Me.Location = xmlNode.Item("location").InnerText - Me.Description = xmlNode.Item("description").InnerText - Me.ImageUrl = New Uri(xmlNode.Item("profile_image_url").InnerText) - Me.Url = xmlNode.Item("url").InnerText - Me.Protect = Boolean.Parse(xmlNode.Item("protected").InnerText) - Me.FriendsCount = Integer.Parse(xmlNode.Item("friends_count").InnerText) - Me.FollowersCount = Integer.Parse(xmlNode.Item("followers_count").InnerText) - Me.CreatedAt = DateTime.ParseExact(xmlNode.Item("created_at").InnerText, "ddd MMM dd HH:mm:ss zzzz yyyy", System.Globalization.DateTimeFormatInfo.InvariantInfo, System.Globalization.DateTimeStyles.None) - Me.StatusesCount = Integer.Parse(xmlNode.Item("statuses_count").InnerText) - Me.Verified = Boolean.Parse(xmlNode.Item("verified").InnerText) - Me.isFollowing = Boolean.Parse(xmlNode.Item("following").InnerText) - Dim postNode As Xml.XmlNode = xmlNode.Item("status") - Me.RecentPost = postNode.Item("text").InnerText - Me.PostCreatedAt = DateTime.ParseExact(postNode.Item("created_at").InnerText, "ddd MMM dd HH:mm:ss zzzz yyyy", System.Globalization.DateTimeFormatInfo.InvariantInfo, System.Globalization.DateTimeStyles.None) - Me.PostSource = postNode.Item("source").InnerText + Public Sub New(ByVal user As TwitterDataModel.User) + Me.Id = user.Id + Me.Name = user.Name + Me.ScreenName = user.ScreenName + Me.Location = user.Location + Me.Description = user.Description + Try + Me.ImageUrl = New Uri(user.ProfileImageUrl) + Catch ex As Exception + Me.ImageUrl = Nothing + End Try + Me.Url = user.Url + Me.Protect = user.Protected + Me.FriendsCount = user.FriendsCount + Me.FollowersCount = user.FollowersCount + Me.CreatedAt = DateTimeParse(user.CreatedAt) + Me.StatusesCount = user.StatusesCount + Me.Verified = user.Verified + Me.isFollowing = Me.isFollowing + If user.Status IsNot Nothing Then + Me.RecentPost = user.Status.Text + Me.PostCreatedAt = DateTimeParse(user.Status.CreatedAt) + Me.PostSource = user.Status.Source + End If End Sub Public Id As Int64 = 0 From svnnotify @ sourceforge.jp Thu Dec 30 03:22:18 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Thu, 30 Dec 2010 03:22:18 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyODJdICDjg6rjg5fjg6njgqTlhYjjga7oibI=?= =?utf-8?b?5YiG44GR44KS5Lih5pa55ZCR44Gr44GX44Gm44GE44Gf44Gu44KS54mH5pa5?= =?utf-8?b?5ZCR44Gr5oi744GX?= Message-ID: <1293646938.066233.11696.nullmailer@users.sourceforge.jp> Revision: 1282 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1282 Author: anis774 Date: 2010-12-30 03:22:17 +0900 (Thu, 30 Dec 2010) Log Message: ----------- リプライ先の色分けを両方向にしていたのを片方向に戻し ここら辺の挙動に関して要検討 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-29 14:16:32 UTC (rev 1281) +++ trunk/Tween/Tween.vb 2010-12-29 18:22:17 UTC (rev 1282) @@ -1606,7 +1606,7 @@ Private Function JudgeColor(ByVal BasePost As PostClass, ByVal TargetPost As PostClass) As Color Dim cl As Color - If TargetPost.Id = BasePost.InReplyToId OrElse BasePost.Id = TargetPost.InReplyToId Then + If TargetPost.Id = BasePost.InReplyToId Then '@先 cl = _clAtTo ElseIf TargetPost.IsMe Then From svnnotify @ sourceforge.jp Thu Dec 30 04:34:51 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Thu, 30 Dec 2010 04:34:51 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyODNdICDjg7t1eCAuIG515bGV6ZaL44Gr5a++?= =?utf-8?b?5b+c?= Message-ID: <1293651291.971493.24552.nullmailer@users.sourceforge.jp> Revision: 1283 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1283 Author: syo68k Date: 2010-12-30 04:34:51 +0900 (Thu, 30 Dec 2010) Log Message: ----------- ・ux.nu展開に対応 ・転送先取得をHEADで行うように Modified Paths: -------------- trunk/Tween/Connection/HttpVarious.vb trunk/Tween/ShortUrl.vb -------------- next part -------------- Modified: trunk/Tween/Connection/HttpVarious.vb =================================================================== --- trunk/Tween/Connection/HttpVarious.vb 2010-12-29 18:22:17 UTC (rev 1282) +++ trunk/Tween/Connection/HttpVarious.vb 2010-12-29 19:34:51 UTC (rev 1283) @@ -6,10 +6,11 @@ Private Const PostMethod As String = "POST" Private Const GetMethod As String = "GET" + Private Const HeadMethod As String = "HEAD" Public Function GetRedirectTo(ByVal url As String) As String Try - Dim req As HttpWebRequest = CreateRequest(GetMethod, New Uri(url), Nothing, False) + Dim req As HttpWebRequest = CreateRequest(HeadMethod, New Uri(url), Nothing, False) req.Timeout = 5000 req.AllowAutoRedirect = False Dim data As String = "" Modified: trunk/Tween/ShortUrl.vb =================================================================== --- trunk/Tween/ShortUrl.vb 2010-12-29 18:22:17 UTC (rev 1282) +++ trunk/Tween/ShortUrl.vb 2010-12-29 19:34:51 UTC (rev 1283) @@ -45,6 +45,7 @@ "http://htn.to/", _ "http://amzn.to/", _ "http://flic.kr/", _ + "http://ux.nu/", _ "http://moi.st/" _ } From svnnotify @ sourceforge.jp Thu Dec 30 22:02:33 2010 From: svnnotify @ sourceforge.jp (svnnotify @ sourceforge.jp) Date: Thu, 30 Dec 2010 22:02:33 +0900 Subject: [Tween-svn] =?utf-8?b?WzEyODRdICDjgr/jg5bjgYzlpJrmrrXooajnpLo=?= =?utf-8?b?44Gr44Gq44Gj44Gm44GE44KL44Go44GN44Gr5LiL5q6144Gu44OA44OW44GM?= =?utf-8?b?5q2j44GX44GPRCZE44Gn56e75YuV5Ye65p2l44Gq44GL44Gj44Gf44Gu44KS?= =?utf-8?b?5L+u5q2j44CC?= Message-ID: <1293714153.556799.27541.nullmailer@users.sourceforge.jp> Revision: 1284 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1284 Author: anis774 Date: 2010-12-30 22:02:33 +0900 (Thu, 30 Dec 2010) Log Message: ----------- タブが多段表示になっているときに下段のダブが正しくD&Dで移動出来なかったのを修正。 Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2010-12-29 19:34:51 UTC (rev 1283) +++ trunk/Tween/Tween.vb 2010-12-30 13:02:33 UTC (rev 1284) @@ -57,6 +57,7 @@ Private _initialLayout As Boolean = True Private _ignoreConfigSave As Boolean 'True:起動時処理中 Private _tabDrag As Boolean 'タブドラッグ中フラグ(DoDragDropを実行するかの判定用) + Private _tabMouseDownPoint As Point Private _rclickTabName As String '右クリックしたタブの名前(Tabコントロール機能不足対応) Private ReadOnly _syncObject As New Object() 'ロック用 Private Const detailHtmlFormatMono1 As String = "