1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
'''
====================================================================
Copyright (c) 2003-2006 Barry A Scott. All rights reserved.
This software is licensed as described in the file LICENSE.txt,
which you should have received as part of this distribution.
====================================================================
wb_ids.py
'''
import wx
id_View_Refresh = wx.NewId()
id_View_AutoRefresh = wx.NewId()
id_View_ControlledFiles = wx.NewId()
id_View_IgnoredFiles = wx.NewId()
id_View_UncontrolledFiles = wx.NewId()
id_View_Recursive = wx.NewId()
id_ClearLog = wx.NewId()
id_Project_Add = wx.NewId()
id_Project_Update = wx.NewId()
id_Project_Delete = wx.NewId()
id_Bookmark_Add = wx.NewId()
id_Bookmark_Manage = wx.NewId()
id_Return_Hotkey = wx.NewId()
id_Command_Shell = wx.NewId()
id_File_Browser = wx.NewId()
id_Shell_Open = wx.NewId()
id_File_Edit = wx.NewId()
id_SP_NewFile = wx.NewId()
id_SP_ConflictMenu = wx.NewId()
id_SP_DetailsMenu = wx.NewId()
id_SP_EditCopy = wx.NewId()
id_SP_EditCut = wx.NewId()
id_SP_EditPaste = wx.NewId()
id_SP_Add = wx.NewId()
id_SP_Annotate = wx.NewId()
id_SP_Checkin = wx.NewId()
id_SP_Checkout = wx.NewId()
id_SP_Cleanup = wx.NewId()
id_SP_Delete = wx.NewId()
id_SP_DiffMineNew = wx.NewId()
id_SP_DiffOldMine = wx.NewId()
id_SP_DiffOldNew = wx.NewId()
id_SP_DiffWorkBase = wx.NewId()
id_SP_DiffWorkHead = wx.NewId()
id_SP_DiffWorkBranchOriginBase = wx.NewId()
id_SP_DiffWorkBranchOriginHead = wx.NewId()
id_SP_History = wx.NewId()
id_SP_Info = wx.NewId()
id_SP_Lock = wx.NewId()
id_SP_Mkdir = wx.NewId()
id_SP_Properties = wx.NewId()
id_SP_Rename = wx.NewId()
id_SP_Resolved = wx.NewId()
id_SP_Revert = wx.NewId()
id_SP_Unlock = wx.NewId()
id_SP_Update = wx.NewId()
id_SP_Report_Updates = wx.NewId()
id_SP_Report_LocksWc = wx.NewId()
id_SP_Report_LocksRepos = wx.NewId()
id_SP_Report_BranchChanges = wx.NewId()
|