Exemplo n.º 1
0
        private void setBarMenuInfo()
        {
            //常用工具按钮
            this.barMenu.LinksPersistInfo.Clear();
            barManager1.Items.Clear();
            DevExpress.XtraBars.BarButtonItem barSetAll = new DevExpress.XtraBars.BarButtonItem();
            barSetAll.Name       = "barButtonAllset";
            barSetAll.Caption    = "常用工具设置";
            barSetAll.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonAllset_ItemClick);
            barSetAll.ItemAppearance.Hovered.BackColor = Color.Yellow;
            barSetAll.ItemAppearance.Pressed.BackColor = Color.Red;
            barManager1.Items.Add(barSetAll);
            this.barMenu.LinksPersistInfo.Add(new DevExpress.XtraBars.LinkPersistInfo(barSetAll));

            //其他自定义的
            List <string> sectionList = GetAllCatogery();

            for (int i = 0; i < sectionList.Count; i++)
            {
                DevExpress.XtraBars.BarLinkContainerItem item = new DevExpress.XtraBars.BarLinkContainerItem();
                item.Name    = "barItemLink_" + i.ToString();
                item.Caption = sectionList[i];
                barManager1.Items.Add(item);
                this.barMenu.LinksPersistInfo.Add(new DevExpress.XtraBars.LinkPersistInfo(item));
                //子项
                Dictionary <string, string> sectionItems = GetAllItemsByCatogery(sectionList[i]);
                Dictionary <string, string> hotKeyItem   = GetHotKeysByCatogery(sectionList[i]);
                string sHotKeyValue = string.Empty;
                int    j            = 1;
                foreach (var detail in sectionItems)
                {
                    DevExpress.XtraBars.BarButtonItem items = new DevExpress.XtraBars.BarButtonItem();
                    items.Name        = "barItemLinkDetail_" + j.ToString();
                    items.Caption     = detail.Key;
                    items.Tag         = detail.Value;
                    items.ItemClick  += new DevExpress.XtraBars.ItemClickEventHandler(this.processDo);
                    items.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Default;
                    barManager1.Items.Add(items);
                    item.LinksPersistInfo.Add(new DevExpress.XtraBars.LinkPersistInfo(items));
                    //获取热键
                    if (hotKeyItem.ContainsKey(detail.Key))
                    {
                        sHotKeyValue = hotKeyItem[detail.Key];
                        if (!string.IsNullOrWhiteSpace(sHotKeyValue))
                        {
                            AllHotKeyDict.Add(sHotKeyValue, items);
                            AllHotKeyTips.Add(detail.Key, sHotKeyValue);
                        }
                    }
                    j++;
                }
            }
        }
Exemplo n.º 2
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_RibbonMenu));
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            this.ribbon = new KTibiaX.UI.Controls.CustomRibbon();
            this.applicationMenu1 = new DevExpress.XtraBars.Ribbon.ApplicationMenu(this.components);
            this.btnStartClient = new DevExpress.XtraBars.BarButtonItem();
            this.btnMenuConfiguration = new DevExpress.XtraBars.BarButtonItem();
            this.btnMenuMinimize = new DevExpress.XtraBars.BarButtonItem();
            this.btnMenuRestore = new DevExpress.XtraBars.BarButtonItem();
            this.btnStatusBar = new DevExpress.XtraBars.BarButtonItem();
            this.btnMenuHelp = new DevExpress.XtraBars.BarButtonItem();
            this.btnMenuAbout = new DevExpress.XtraBars.BarButtonItem();
            this.btnMenuClose = new DevExpress.XtraBars.BarButtonItem();
            this.DockController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
            this.imgSmallRibbon = new DevExpress.Utils.ImageCollection(this.components);
            this.btnLight = new DevExpress.XtraBars.BarButtonItem();
            this.btnSpeed = new DevExpress.XtraBars.BarButtonItem();
            this.btnBattleList = new DevExpress.XtraBars.BarButtonItem();
            this.btnMapSpy = new DevExpress.XtraBars.BarButtonItem();
            this.btnOutfit = new DevExpress.XtraBars.BarButtonItem();
            this.btnAlerts = new DevExpress.XtraBars.BarButtonItem();
            this.btnTrade = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
            this.btnEater = new DevExpress.XtraBars.BarButtonItem();
            this.btnFisher = new DevExpress.XtraBars.BarButtonItem();
            this.btnHealer = new DevExpress.XtraBars.BarButtonItem();
            this.btnRuneMaker = new DevExpress.XtraBars.BarButtonItem();
            this.btnAmmoMaker = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
            this.btnAntiMove = new DevExpress.XtraBars.BarButtonItem();
            this.btnTrainer = new DevExpress.XtraBars.BarButtonItem();
            this.btnSpellCaster = new DevExpress.XtraBars.BarButtonItem();
            this.btnCavebot = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem19 = new DevExpress.XtraBars.BarButtonItem();
            this.btnScript = new DevExpress.XtraBars.BarButtonItem();
            this.btnHuntTools = new DevExpress.XtraBars.BarButtonItem();
            this.btnStatistics = new DevExpress.XtraBars.BarButtonItem();
            this.btnAutoLooter = new DevExpress.XtraBars.BarButtonItem();
            this.btnFluidDrinker = new DevExpress.XtraBars.BarButtonItem();
            this.btnRuneShooter = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem26 = new DevExpress.XtraBars.BarButtonItem();
            this.btnAddress = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem28 = new DevExpress.XtraBars.BarButtonItem();
            this.ribbonGalleryBarItem1 = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.lblConnection = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
            this.lblVersion = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem4 = new DevExpress.XtraBars.BarStaticItem();
            this.lblPlayer = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem6 = new DevExpress.XtraBars.BarStaticItem();
            this.lstFormSkin = new DevExpress.XtraBars.BarLinkContainerItem();
            this.lstMenuSkin = new DevExpress.XtraBars.BarLinkContainerItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem29 = new DevExpress.XtraBars.BarButtonItem();
            this.btnBRLang = new DevExpress.XtraBars.BarButtonItem();
            this.btnUSLang = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem31 = new DevExpress.XtraBars.BarButtonItem();
            this.btnZoom = new DevExpress.XtraBars.BarSubItem();
            this.btnClientZoom = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemZoomTrackBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemZoomTrackBar();
            this.barEditItem2 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemHyperLinkEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemHyperLinkEdit();
            this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
            this.btnMapReader = new DevExpress.XtraBars.BarButtonItem();
            this.btnPacketListener = new DevExpress.XtraBars.BarButtonItem();
            this.btnTestes = new DevExpress.XtraBars.BarButtonItem();
            this.btnRestaker = new DevExpress.XtraBars.BarButtonItem();
            this.btnCripto = new DevExpress.XtraBars.BarButtonItem();
            this.btnBPReader = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
            this.btnOutput = new DevExpress.XtraBars.BarCheckItem();
            this.lblServerInfo = new DevExpress.XtraBars.BarStaticItem();
            this.lblPlayerInfo = new DevExpress.XtraBars.BarStaticItem();
            this.imgLargRibbon = new DevExpress.Utils.ImageCollection(this.components);
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.GroupPlayer = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.GroupBattleList = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage2 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup6 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup7 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup8 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup9 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup10 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPage3 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup11 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup12 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup15 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup13 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup14 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rbConfig = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.pnConfigGroup = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup18 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup19 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rbDev = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup21 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup22 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup23 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rbHelp = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup17 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup20 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.repositoryItemHyperLinkEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemHyperLinkEdit();
            this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.DefaultLook = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
            this.ribbonPageGroup16 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.TMLogin = new System.Windows.Forms.Timer(this.components);
            this.TryIcon = new System.Windows.Forms.NotifyIcon(this.components);
            this.pnHost = new KTibiaX.UI.Controls.HostPanel();
            this.pnLogo = new DevExpress.XtraEditors.PictureEdit();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockOutputPanel = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.outputView1 = new KTibiaX.Windows.Features.Controls.OutputView();
            this.TMFeatures = new System.Windows.Forms.Timer(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DockController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imgSmallRibbon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemHyperLinkEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.imgLargRibbon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemHyperLinkEdit1)).BeginInit();
            this.pnHost.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pnLogo.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockOutputPanel.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            this.SuspendLayout();
            // 
            // ribbon
            // 
            this.ribbon.ApplicationButtonDropDownControl = this.applicationMenu1;
            this.ribbon.ApplicationCaption = "KTibiaX® Advanced 2009";
            this.ribbon.ApplicationIcon = ((System.Drawing.Bitmap)(resources.GetObject("ribbon.ApplicationIcon")));
            this.ribbon.Controller = this.DockController1;
            this.ribbon.Images = this.imgSmallRibbon;
            this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.btnLight,
            this.btnSpeed,
            this.btnBattleList,
            this.btnMapSpy,
            this.btnOutfit,
            this.btnAlerts,
            this.btnTrade,
            this.barButtonItem8,
            this.btnEater,
            this.btnFisher,
            this.btnHealer,
            this.btnRuneMaker,
            this.btnAmmoMaker,
            this.barButtonItem14,
            this.btnAntiMove,
            this.btnTrainer,
            this.btnSpellCaster,
            this.btnCavebot,
            this.barButtonItem19,
            this.btnScript,
            this.btnHuntTools,
            this.btnStatistics,
            this.btnAutoLooter,
            this.btnFluidDrinker,
            this.btnRuneShooter,
            this.barButtonItem26,
            this.btnAddress,
            this.barButtonItem28,
            this.ribbonGalleryBarItem1,
            this.lblConnection,
            this.barStaticItem2,
            this.lblVersion,
            this.barStaticItem4,
            this.lblPlayer,
            this.barStaticItem6,
            this.lstFormSkin,
            this.lstMenuSkin,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItem3,
            this.barButtonItem4,
            this.barButtonItem9,
            this.barButtonItem29,
            this.btnBRLang,
            this.btnUSLang,
            this.barButtonItem31,
            this.btnMenuConfiguration,
            this.btnMenuMinimize,
            this.btnMenuRestore,
            this.btnMenuHelp,
            this.btnMenuAbout,
            this.btnMenuClose,
            this.btnStatusBar,
            this.btnZoom,
            this.btnClientZoom,
            this.barEditItem2,
            this.barButtonItem5,
            this.btnMapReader,
            this.btnPacketListener,
            this.btnTestes,
            this.btnRestaker,
            this.btnCripto,
            this.btnBPReader,
            this.barButtonItem6,
            this.btnStartClient,
            this.btnOutput,
            this.lblServerInfo,
            this.lblPlayerInfo});
            this.ribbon.LargeImages = this.imgLargRibbon;
            this.ribbon.Location = new System.Drawing.Point(0, 0);
            this.ribbon.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
            this.ribbon.MaxItemId = 77;
            this.ribbon.Name = "ribbon";
            this.ribbon.PageHeaderItemLinks.Add(this.barEditItem2);
            this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1,
            this.ribbonPage2,
            this.ribbonPage3,
            this.rbConfig,
            this.rbDev,
            this.rbHelp});
            this.ribbon.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemHyperLinkEdit1,
            this.repositoryItemZoomTrackBar1,
            this.repositoryItemHyperLinkEdit2});
            this.ribbon.SelectedPage = this.rbDev;
            this.ribbon.ShowCategoryInCaption = false;
            this.ribbon.Size = new System.Drawing.Size(816, 148);
            this.ribbon.StatusBar = this.ribbonStatusBar1;
            this.ribbon.Toolbar.ItemLinks.Add(this.lblServerInfo, true);
            this.ribbon.Toolbar.ItemLinks.Add(this.lblPlayerInfo);
            this.ribbon.MouseClick += new System.Windows.Forms.MouseEventHandler(this.ribbon_MouseClick);
            this.ribbon.MinimizedChanged += new System.EventHandler(this.ribbon_MinimizedChanged);
            this.ribbon.MouseEnter += new System.EventHandler(this.ribbon_MouseEnter);
            this.ribbon.MouseMove += new System.Windows.Forms.MouseEventHandler(this.ribbon_MouseMove);
            this.ribbon.MouseLeave += new System.EventHandler(this.ribbon_MouseLeave);
            // 
            // applicationMenu1
            // 
            this.applicationMenu1.BottomPaneControlContainer = null;
            this.applicationMenu1.ItemLinks.Add(this.btnStartClient);
            this.applicationMenu1.ItemLinks.Add(this.btnMenuConfiguration, true);
            this.applicationMenu1.ItemLinks.Add(this.btnMenuMinimize);
            this.applicationMenu1.ItemLinks.Add(this.btnMenuRestore);
            this.applicationMenu1.ItemLinks.Add(this.btnStatusBar);
            this.applicationMenu1.ItemLinks.Add(this.btnMenuHelp, true);
            this.applicationMenu1.ItemLinks.Add(this.btnMenuAbout);
            this.applicationMenu1.ItemLinks.Add(this.btnMenuClose, true);
            this.applicationMenu1.MenuDrawMode = DevExpress.XtraBars.MenuDrawMode.LargeImagesTextDescription;
            this.applicationMenu1.Name = "applicationMenu1";
            this.applicationMenu1.Ribbon = this.ribbon;
            this.applicationMenu1.RightPaneControlContainer = null;
            // 
            // btnStartClient
            // 
            this.btnStartClient.Caption = "Open Tibia Client";
            this.btnStartClient.Description = "Statup a tibia client to be hosted by this application.";
            this.btnStartClient.Id = 72;
            this.btnStartClient.LargeImageIndex = 68;
            this.btnStartClient.Name = "btnStartClient";
            this.btnStartClient.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStartClient_ItemClick);
            // 
            // btnMenuConfiguration
            // 
            this.btnMenuConfiguration.Caption = "Configuration";
            this.btnMenuConfiguration.Description = "Information about system configuration and user preferences.";
            this.btnMenuConfiguration.Id = 51;
            this.btnMenuConfiguration.LargeImageIndex = 63;
            this.btnMenuConfiguration.Name = "btnMenuConfiguration";
            // 
            // btnMenuMinimize
            // 
            this.btnMenuMinimize.Caption = "Minimize Tray";
            this.btnMenuMinimize.Description = "Hide tibia window on system tray.";
            this.btnMenuMinimize.Id = 52;
            this.btnMenuMinimize.LargeImageIndex = 79;
            this.btnMenuMinimize.Name = "btnMenuMinimize";
            // 
            // btnMenuRestore
            // 
            this.btnMenuRestore.Caption = "Restore Tibia";
            this.btnMenuRestore.Description = "Remove tibia window of system tray.";
            this.btnMenuRestore.Enabled = false;
            this.btnMenuRestore.Id = 53;
            this.btnMenuRestore.LargeImageIndex = 78;
            this.btnMenuRestore.Name = "btnMenuRestore";
            // 
            // btnStatusBar
            // 
            this.btnStatusBar.Caption = "Stop All Macros";
            this.btnStatusBar.Description = "Stop all current macros.";
            this.btnStatusBar.Id = 57;
            this.btnStatusBar.LargeImageIndex = 84;
            this.btnStatusBar.Name = "btnStatusBar";
            // 
            // btnMenuHelp
            // 
            this.btnMenuHelp.Caption = "Help && Support";
            this.btnMenuHelp.Description = "Get help and support from KTibiaX.";
            this.btnMenuHelp.Id = 54;
            this.btnMenuHelp.LargeImageIndex = 66;
            this.btnMenuHelp.Name = "btnMenuHelp";
            // 
            // btnMenuAbout
            // 
            this.btnMenuAbout.Caption = "About KTibiaX";
            this.btnMenuAbout.Description = "Information about KTibiaX.";
            this.btnMenuAbout.Id = 55;
            this.btnMenuAbout.LargeImageIndex = 67;
            this.btnMenuAbout.Name = "btnMenuAbout";
            // 
            // btnMenuClose
            // 
            this.btnMenuClose.Caption = "Close KTibiaX";
            this.btnMenuClose.Description = "Cose KTibiaX and Tibia.";
            this.btnMenuClose.Id = 56;
            this.btnMenuClose.LargeImageIndex = 77;
            this.btnMenuClose.Name = "btnMenuClose";
            // 
            // DockController1
            // 
            this.DockController1.AppearancesRibbon.FormCaption.Options.UseTextOptions = true;
            this.DockController1.AppearancesRibbon.FormCaption.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
            this.DockController1.AppearancesRibbon.Item.ForeColor = System.Drawing.Color.DimGray;
            this.DockController1.AppearancesRibbon.Item.Options.UseForeColor = true;
            this.DockController1.AppearancesRibbon.Item.Options.UseTextOptions = true;
            this.DockController1.AppearancesRibbon.Item.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
            this.DockController1.AppearancesRibbon.ItemDisabled.Options.UseTextOptions = true;
            this.DockController1.AppearancesRibbon.ItemDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
            this.DockController1.AppearancesRibbon.PageGroupCaption.Options.UseTextOptions = true;
            this.DockController1.AppearancesRibbon.PageGroupCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.DockController1.AppearancesRibbon.PageGroupCaption.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
            this.DockController1.AppearancesRibbon.PageHeader.Options.UseTextOptions = true;
            this.DockController1.AppearancesRibbon.PageHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.NoWrap;
            this.DockController1.PropertiesBar.AllowLinkLighting = false;
            // 
            // imgSmallRibbon
            // 
            this.imgSmallRibbon.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imgSmallRibbon.ImageStream")));
            // 
            // btnLight
            // 
            this.btnLight.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnLight.Caption = "  Setup Light  ";
            this.btnLight.Id = 0;
            this.btnLight.LargeImageIndex = 98;
            this.btnLight.Name = "btnLight";
            this.btnLight.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLight_ItemClick);
            // 
            // btnSpeed
            // 
            this.btnSpeed.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnSpeed.Caption = "  Setup Speed  ";
            this.btnSpeed.Id = 1;
            this.btnSpeed.LargeImageIndex = 8;
            this.btnSpeed.Name = "btnSpeed";
            this.btnSpeed.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSpeed_ItemClick);
            // 
            // btnBattleList
            // 
            this.btnBattleList.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnBattleList.Caption = " Spy Battle List ";
            this.btnBattleList.Id = 2;
            this.btnBattleList.LargeImageIndex = 61;
            this.btnBattleList.Name = "btnBattleList";
            this.btnBattleList.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnBattleList_ItemClick);
            // 
            // btnMapSpy
            // 
            this.btnMapSpy.Caption = "  Spy Floor ";
            this.btnMapSpy.Enabled = false;
            this.btnMapSpy.Id = 3;
            this.btnMapSpy.LargeImageIndex = 20;
            this.btnMapSpy.Name = "btnMapSpy";
            // 
            // btnOutfit
            // 
            this.btnOutfit.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnOutfit.Caption = " Outfit Changer ";
            this.btnOutfit.Id = 4;
            this.btnOutfit.LargeImageIndex = 60;
            this.btnOutfit.Name = "btnOutfit";
            this.btnOutfit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnOutfit_ItemClick);
            // 
            // btnAlerts
            // 
            this.btnAlerts.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnAlerts.Caption = "  Player Alerts  ";
            this.btnAlerts.Enabled = false;
            this.btnAlerts.Id = 5;
            this.btnAlerts.LargeImageIndex = 31;
            this.btnAlerts.Name = "btnAlerts";
            // 
            // btnTrade
            // 
            this.btnTrade.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnTrade.Caption = " Trade Helper ";
            this.btnTrade.Id = 6;
            this.btnTrade.LargeImageIndex = 57;
            this.btnTrade.Name = "btnTrade";
            this.btnTrade.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnTrade_ItemClick);
            // 
            // barButtonItem8
            // 
            this.barButtonItem8.Caption = " Search Character ";
            this.barButtonItem8.Enabled = false;
            this.barButtonItem8.Id = 7;
            this.barButtonItem8.LargeImageIndex = 47;
            this.barButtonItem8.Name = "barButtonItem8";
            // 
            // btnEater
            // 
            this.btnEater.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnEater.Caption = " Auto Eater ";
            this.btnEater.Id = 8;
            this.btnEater.LargeImageIndex = 11;
            this.btnEater.Name = "btnEater";
            // 
            // btnFisher
            // 
            this.btnFisher.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnFisher.Caption = " Auto Fisher ";
            this.btnFisher.Id = 9;
            this.btnFisher.LargeImageIndex = 9;
            this.btnFisher.Name = "btnFisher";
            // 
            // btnHealer
            // 
            this.btnHealer.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnHealer.Caption = " Auto Healer ";
            this.btnHealer.Id = 10;
            this.btnHealer.LargeImageIndex = 52;
            this.btnHealer.Name = "btnHealer";
            // 
            // btnRuneMaker
            // 
            this.btnRuneMaker.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnRuneMaker.Caption = " Rune Maker ";
            this.btnRuneMaker.Id = 11;
            this.btnRuneMaker.LargeImageIndex = 83;
            this.btnRuneMaker.Name = "btnRuneMaker";
            // 
            // btnAmmoMaker
            // 
            this.btnAmmoMaker.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnAmmoMaker.Caption = " Ammo Maker ";
            this.btnAmmoMaker.Id = 12;
            this.btnAmmoMaker.LargeImageIndex = 21;
            this.btnAmmoMaker.Name = "btnAmmoMaker";
            // 
            // barButtonItem14
            // 
            this.barButtonItem14.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.barButtonItem14.Caption = " Auto Reply ";
            this.barButtonItem14.Id = 14;
            this.barButtonItem14.LargeImageIndex = 27;
            this.barButtonItem14.Name = "barButtonItem14";
            // 
            // btnAntiMove
            // 
            this.btnAntiMove.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnAntiMove.Caption = " AFK Anti-Move ";
            this.btnAntiMove.Id = 15;
            this.btnAntiMove.LargeImageIndex = 2;
            this.btnAntiMove.Name = "btnAntiMove";
            // 
            // btnTrainer
            // 
            this.btnTrainer.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnTrainer.Caption = " Trainer Helper ";
            this.btnTrainer.Id = 16;
            this.btnTrainer.LargeImageIndex = 34;
            this.btnTrainer.Name = "btnTrainer";
            // 
            // btnSpellCaster
            // 
            this.btnSpellCaster.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
            this.btnSpellCaster.Caption = " Spell Caster ";
            this.btnSpellCaster.Id = 17;
            this.btnSpellCaster.LargeImageIndex = 18;
            this.btnSpellCaster.Name = "btnSpellCaster";
            // 
            // btnCavebot
            // 
            this.btnCavebot.Caption = "  Cave Bot  ";
            this.btnCavebot.Id = 18;
            this.btnCavebot.LargeImageIndex = 35;
            this.btnCavebot.Name = "btnCavebot";
            this.btnCavebot.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnCavebot_ItemClick);
            // 
            // barButtonItem19
            // 
            this.barButtonItem19.Caption = "   Spell Bot   ";
            this.barButtonItem19.Id = 19;
            this.barButtonItem19.LargeImageIndex = 93;
            this.barButtonItem19.Name = "barButtonItem19";
            // 
            // btnScript
            // 
            this.btnScript.Caption = "  My Scripts  ";
            this.btnScript.Id = 21;
            this.btnScript.LargeImageIndex = 96;
            this.btnScript.Name = "btnScript";
            this.btnScript.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnScript_ItemClick);
            // 
            // btnHuntTools
            // 
            this.btnHuntTools.Caption = "  Hunt Tools ";
            this.btnHuntTools.Id = 22;
            this.btnHuntTools.LargeImageIndex = 59;
            this.btnHuntTools.Name = "btnHuntTools";
            // 
            // btnStatistics
            // 
            this.btnStatistics.Caption = " Hunt Statistics ";
            this.btnStatistics.Id = 23;
            this.btnStatistics.LargeImageIndex = 82;
            this.btnStatistics.Name = "btnStatistics";
            // 
            // btnAutoLooter
            // 
            this.btnAutoLooter.Caption = "  Auto Looter  ";
            this.btnAutoLooter.Id = 24;
            this.btnAutoLooter.LargeImageIndex = 95;
            this.btnAutoLooter.Name = "btnAutoLooter";
            // 
            // btnFluidDrinker
            // 
            this.btnFluidDrinker.Caption = " Potion Drinker ";
            this.btnFluidDrinker.Id = 25;
            this.btnFluidDrinker.LargeImageIndex = 92;
            this.btnFluidDrinker.Name = "btnFluidDrinker";
            // 
            // btnRuneShooter
            // 
            this.btnRuneShooter.Caption = " Rune Shooter ";
            this.btnRuneShooter.Id = 26;
            this.btnRuneShooter.LargeImageIndex = 16;
            this.btnRuneShooter.Name = "btnRuneShooter";
            // 
            // barButtonItem26
            // 
            this.barButtonItem26.Caption = " Preferences ";
            this.barButtonItem26.Id = 27;
            this.barButtonItem26.LargeImageIndex = 12;
            this.barButtonItem26.Name = "barButtonItem26";
            // 
            // btnAddress
            // 
            this.btnAddress.Caption = " Memory Address ";
            this.btnAddress.Id = 28;
            this.btnAddress.LargeImageIndex = 86;
            this.btnAddress.Name = "btnAddress";
            this.btnAddress.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnAddress_ItemClick);
            // 
            // barButtonItem28
            // 
            this.barButtonItem28.Caption = " Global Hot Keys";
            this.barButtonItem28.Id = 29;
            this.barButtonItem28.LargeImageIndex = 48;
            this.barButtonItem28.Name = "barButtonItem28";
            // 
            // ribbonGalleryBarItem1
            // 
            this.ribbonGalleryBarItem1.Caption = " Global Skin ";
            // 
            // 
            // 
            this.ribbonGalleryBarItem1.Gallery.AllowHoverImages = true;
            this.ribbonGalleryBarItem1.Gallery.Appearance.ItemCaption.Options.UseFont = true;
            this.ribbonGalleryBarItem1.Gallery.Appearance.ItemCaption.Options.UseTextOptions = true;
            this.ribbonGalleryBarItem1.Gallery.Appearance.ItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.ribbonGalleryBarItem1.Gallery.FixedHoverImageSize = false;
            galleryItemGroup1.Caption = "Main Skins";
            this.ribbonGalleryBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1});
            this.ribbonGalleryBarItem1.Gallery.ImageSize = new System.Drawing.Size(32, 17);
            this.ribbonGalleryBarItem1.Gallery.ItemImageLocation = DevExpress.Utils.Locations.Top;
            this.ribbonGalleryBarItem1.Gallery.RowCount = 4;
            this.ribbonGalleryBarItem1.Id = 32;
            this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
            // 
            // lblConnection
            // 
            this.lblConnection.Enabled = false;
            this.lblConnection.Id = 33;
            this.lblConnection.Name = "lblConnection";
            this.lblConnection.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem2
            // 
            this.barStaticItem2.Caption = "Connection:";
            this.barStaticItem2.Enabled = false;
            this.barStaticItem2.Id = 34;
            this.barStaticItem2.Name = "barStaticItem2";
            this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // lblVersion
            // 
            this.lblVersion.Enabled = false;
            this.lblVersion.Id = 35;
            this.lblVersion.Name = "lblVersion";
            this.lblVersion.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem4
            // 
            this.barStaticItem4.Caption = "Version:";
            this.barStaticItem4.Enabled = false;
            this.barStaticItem4.Id = 36;
            this.barStaticItem4.Name = "barStaticItem4";
            this.barStaticItem4.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // lblPlayer
            // 
            this.lblPlayer.Caption = " ";
            this.lblPlayer.Enabled = false;
            this.lblPlayer.Id = 38;
            this.lblPlayer.Name = "lblPlayer";
            this.lblPlayer.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem6
            // 
            this.barStaticItem6.Caption = "Player:";
            this.barStaticItem6.Enabled = false;
            this.barStaticItem6.Id = 39;
            this.barStaticItem6.Name = "barStaticItem6";
            this.barStaticItem6.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // lstFormSkin
            // 
            this.lstFormSkin.Caption = " Forms Skin";
            this.lstFormSkin.Id = 40;
            this.lstFormSkin.LargeImageIndex = 32;
            this.lstFormSkin.Name = "lstFormSkin";
            // 
            // lstMenuSkin
            // 
            this.lstMenuSkin.Caption = "Menu Skin";
            this.lstMenuSkin.Id = 41;
            this.lstMenuSkin.LargeImageIndex = 36;
            this.lstMenuSkin.Name = "lstMenuSkin";
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = " Get Help ";
            this.barButtonItem1.Id = 42;
            this.barButtonItem1.LargeImageIndex = 66;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // barButtonItem2
            // 
            this.barButtonItem2.Caption = " About KTibiaX ";
            this.barButtonItem2.Id = 43;
            this.barButtonItem2.LargeImageIndex = 67;
            this.barButtonItem2.Name = "barButtonItem2";
            // 
            // barButtonItem3
            // 
            this.barButtonItem3.Caption = " Send Feedback ";
            this.barButtonItem3.Id = 44;
            this.barButtonItem3.LargeImageIndex = 69;
            this.barButtonItem3.Name = "barButtonItem3";
            // 
            // barButtonItem4
            // 
            this.barButtonItem4.Caption = " Send Bug Report ";
            this.barButtonItem4.Id = 45;
            this.barButtonItem4.LargeImageIndex = 68;
            this.barButtonItem4.Name = "barButtonItem4";
            // 
            // barButtonItem9
            // 
            this.barButtonItem9.Caption = "  Beta Tester\'s  ";
            this.barButtonItem9.Id = 46;
            this.barButtonItem9.LargeImageIndex = 73;
            this.barButtonItem9.Name = "barButtonItem9";
            // 
            // barButtonItem29
            // 
            this.barButtonItem29.Caption = " Help && Suport ";
            this.barButtonItem29.Id = 47;
            this.barButtonItem29.LargeImageIndex = 66;
            this.barButtonItem29.Name = "barButtonItem29";
            // 
            // btnBRLang
            // 
            this.btnBRLang.Caption = "Minimize Menus";
            this.btnBRLang.Id = 48;
            this.btnBRLang.ImageIndex = 20;
            this.btnBRLang.LargeImageIndex = 63;
            this.btnBRLang.Name = "btnBRLang";
            // 
            // btnUSLang
            // 
            this.btnUSLang.Caption = "Restore Menus";
            this.btnUSLang.Id = 49;
            this.btnUSLang.ImageIndex = 19;
            this.btnUSLang.LargeImageIndex = 76;
            this.btnUSLang.Name = "btnUSLang";
            // 
            // barButtonItem31
            // 
            this.barButtonItem31.Caption = "barButtonItem31";
            this.barButtonItem31.Id = 50;
            this.barButtonItem31.Name = "barButtonItem31";
            // 
            // btnZoom
            // 
            this.btnZoom.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.btnZoom.Caption = "100%";
            this.btnZoom.Id = 60;
            this.btnZoom.Name = "btnZoom";
            // 
            // btnClientZoom
            // 
            this.btnClientZoom.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.btnClientZoom.Edit = this.repositoryItemZoomTrackBar1;
            this.btnClientZoom.EditValue = 100;
            this.btnClientZoom.Id = 61;
            this.btnClientZoom.Name = "btnClientZoom";
            this.btnClientZoom.Width = 100;
            // 
            // repositoryItemZoomTrackBar1
            // 
            this.repositoryItemZoomTrackBar1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.repositoryItemZoomTrackBar1.LargeChange = 50;
            this.repositoryItemZoomTrackBar1.Maximum = 200;
            this.repositoryItemZoomTrackBar1.Name = "repositoryItemZoomTrackBar1";
            this.repositoryItemZoomTrackBar1.ScrollThumbStyle = DevExpress.XtraEditors.Repository.ScrollThumbStyle.ArrowDownRight;
            this.repositoryItemZoomTrackBar1.SmallChange = 50;
            // 
            // barEditItem2
            // 
            this.barEditItem2.Edit = this.repositoryItemHyperLinkEdit2;
            this.barEditItem2.EditValue = "keyrox.net";
            this.barEditItem2.Id = 62;
            this.barEditItem2.Name = "barEditItem2";
            this.barEditItem2.Width = 65;
            // 
            // repositoryItemHyperLinkEdit2
            // 
            this.repositoryItemHyperLinkEdit2.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.repositoryItemHyperLinkEdit2.Appearance.Options.UseBackColor = true;
            this.repositoryItemHyperLinkEdit2.AutoHeight = false;
            this.repositoryItemHyperLinkEdit2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.repositoryItemHyperLinkEdit2.LinkColor = System.Drawing.Color.Gray;
            this.repositoryItemHyperLinkEdit2.Name = "repositoryItemHyperLinkEdit2";
            // 
            // barButtonItem5
            // 
            this.barButtonItem5.Id = 63;
            this.barButtonItem5.ImageIndex = 18;
            this.barButtonItem5.Name = "barButtonItem5";
            this.barButtonItem5.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithoutText;
            // 
            // btnMapReader
            // 
            this.btnMapReader.Caption = "  Map Reader  ";
            this.btnMapReader.Id = 64;
            this.btnMapReader.LargeImageIndex = 85;
            this.btnMapReader.Name = "btnMapReader";
            this.btnMapReader.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnMapReader_ItemClick);
            // 
            // btnPacketListener
            // 
            this.btnPacketListener.Caption = " Packet Listener ";
            this.btnPacketListener.Id = 65;
            this.btnPacketListener.LargeImageIndex = 86;
            this.btnPacketListener.Name = "btnPacketListener";
            this.btnPacketListener.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnPacketListener_ItemClick);
            // 
            // btnTestes
            // 
            this.btnTestes.Caption = "  Test Feature  ";
            this.btnTestes.Id = 67;
            this.btnTestes.LargeImageIndex = 68;
            this.btnTestes.Name = "btnTestes";
            // 
            // btnRestaker
            // 
            this.btnRestaker.Caption = " Item Restacker ";
            this.btnRestaker.Id = 68;
            this.btnRestaker.LargeImageIndex = 91;
            this.btnRestaker.Name = "btnRestaker";
            // 
            // btnCripto
            // 
            this.btnCripto.Caption = "  Cripto Utility  ";
            this.btnCripto.Id = 69;
            this.btnCripto.LargeImageIndex = 97;
            this.btnCripto.Name = "btnCripto";
            // 
            // btnBPReader
            // 
            this.btnBPReader.Caption = "  BP Reader  ";
            this.btnBPReader.Id = 70;
            this.btnBPReader.LargeImageIndex = 81;
            this.btnBPReader.Name = "btnBPReader";
            this.btnBPReader.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnBPReader_ItemClick);
            // 
            // barButtonItem6
            // 
            this.barButtonItem6.Caption = "  World Map  ";
            this.barButtonItem6.Enabled = false;
            this.barButtonItem6.Id = 71;
            this.barButtonItem6.LargeImageIndex = 85;
            this.barButtonItem6.Name = "barButtonItem6";
            // 
            // btnOutput
            // 
            this.btnOutput.Caption = "Output Viewew";
            this.btnOutput.Id = 74;
            this.btnOutput.LargeImageIndex = 49;
            this.btnOutput.Name = "btnOutput";
            this.btnOutput.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.btnOutput_CheckedChanged);
            // 
            // lblServerInfo
            // 
            this.lblServerInfo.Id = 75;
            this.lblServerInfo.ImageIndex = 22;
            this.lblServerInfo.Name = "lblServerInfo";
            this.lblServerInfo.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // lblPlayerInfo
            // 
            this.lblPlayerInfo.Id = 76;
            this.lblPlayerInfo.ImageIndex = 35;
            this.lblPlayerInfo.Name = "lblPlayerInfo";
            this.lblPlayerInfo.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // imgLargRibbon
            // 
            this.imgLargRibbon.ImageSize = new System.Drawing.Size(32, 32);
            this.imgLargRibbon.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imgLargRibbon.ImageStream")));
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.GroupPlayer,
            this.GroupBattleList,
            this.ribbonPageGroup4,
            this.ribbonPageGroup3,
            this.ribbonPageGroup5});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "Player Cheats";
            // 
            // GroupPlayer
            // 
            this.GroupPlayer.AllowMinimize = false;
            this.GroupPlayer.ItemLinks.Add(this.btnLight);
            this.GroupPlayer.ItemLinks.Add(this.btnSpeed, true);
            this.GroupPlayer.Name = "GroupPlayer";
            this.GroupPlayer.Text = "Player";
            // 
            // GroupBattleList
            // 
            this.GroupBattleList.ItemLinks.Add(this.btnBattleList);
            this.GroupBattleList.ItemLinks.Add(this.btnOutfit, true);
            this.GroupBattleList.Name = "GroupBattleList";
            this.GroupBattleList.Text = "Battle List";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.ItemLinks.Add(this.btnAlerts);
            this.ribbonPageGroup4.ItemLinks.Add(this.btnTrade, true);
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.Text = " Watcher ";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.ItemLinks.Add(this.btnMapSpy);
            this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem6, true);
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.Text = "Map";
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.ItemLinks.Add(this.barButtonItem8);
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            this.ribbonPageGroup5.Text = "Web";
            // 
            // ribbonPage2
            // 
            this.ribbonPage2.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup6,
            this.ribbonPageGroup7,
            this.ribbonPageGroup8,
            this.ribbonPageGroup9,
            this.ribbonPageGroup10});
            this.ribbonPage2.Name = "ribbonPage2";
            this.ribbonPage2.Text = "Trainner Tools";
            // 
            // ribbonPageGroup6
            // 
            this.ribbonPageGroup6.ItemLinks.Add(this.btnEater);
            this.ribbonPageGroup6.ItemLinks.Add(this.btnSpellCaster, true);
            this.ribbonPageGroup6.ItemLinks.Add(this.btnFisher, true);
            this.ribbonPageGroup6.Name = "ribbonPageGroup6";
            this.ribbonPageGroup6.Text = "Mana Tools";
            // 
            // ribbonPageGroup7
            // 
            this.ribbonPageGroup7.ItemLinks.Add(this.btnHealer);
            this.ribbonPageGroup7.Name = "ribbonPageGroup7";
            this.ribbonPageGroup7.Text = "Healer";
            // 
            // ribbonPageGroup8
            // 
            this.ribbonPageGroup8.ItemLinks.Add(this.btnRuneMaker);
            this.ribbonPageGroup8.ItemLinks.Add(this.btnAmmoMaker, true);
            this.ribbonPageGroup8.Name = "ribbonPageGroup8";
            this.ribbonPageGroup8.Text = "Makers";
            // 
            // ribbonPageGroup9
            // 
            this.ribbonPageGroup9.ItemLinks.Add(this.barButtonItem14);
            this.ribbonPageGroup9.ItemLinks.Add(this.btnAntiMove, true);
            this.ribbonPageGroup9.Name = "ribbonPageGroup9";
            this.ribbonPageGroup9.Text = "AFK";
            // 
            // ribbonPageGroup10
            // 
            this.ribbonPageGroup10.ItemLinks.Add(this.btnTrainer);
            this.ribbonPageGroup10.Name = "ribbonPageGroup10";
            this.ribbonPageGroup10.Text = "Helpers";
            // 
            // ribbonPage3
            // 
            this.ribbonPage3.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup11,
            this.ribbonPageGroup12,
            this.ribbonPageGroup15,
            this.ribbonPageGroup13,
            this.ribbonPageGroup14});
            this.ribbonPage3.Name = "ribbonPage3";
            this.ribbonPage3.Text = "Hunt Options";
            // 
            // ribbonPageGroup11
            // 
            this.ribbonPageGroup11.ItemLinks.Add(this.btnCavebot);
            this.ribbonPageGroup11.ItemLinks.Add(this.barButtonItem19, true);
            this.ribbonPageGroup11.Name = "ribbonPageGroup11";
            this.ribbonPageGroup11.Text = "Bots";
            // 
            // ribbonPageGroup12
            // 
            this.ribbonPageGroup12.ItemLinks.Add(this.btnScript);
            this.ribbonPageGroup12.Name = "ribbonPageGroup12";
            this.ribbonPageGroup12.Text = "Scripts";
            // 
            // ribbonPageGroup15
            // 
            this.ribbonPageGroup15.ItemLinks.Add(this.btnAutoLooter, true);
            this.ribbonPageGroup15.ItemLinks.Add(this.btnFluidDrinker, true);
            this.ribbonPageGroup15.ItemLinks.Add(this.btnRestaker, true);
            this.ribbonPageGroup15.Name = "ribbonPageGroup15";
            this.ribbonPageGroup15.Text = "Runes";
            // 
            // ribbonPageGroup13
            // 
            this.ribbonPageGroup13.ItemLinks.Add(this.btnHuntTools);
            this.ribbonPageGroup13.ItemLinks.Add(this.btnRuneShooter, true);
            this.ribbonPageGroup13.Name = "ribbonPageGroup13";
            this.ribbonPageGroup13.Text = "Tools";
            // 
            // ribbonPageGroup14
            // 
            this.ribbonPageGroup14.ItemLinks.Add(this.btnStatistics);
            this.ribbonPageGroup14.Name = "ribbonPageGroup14";
            this.ribbonPageGroup14.Text = " Loot";
            // 
            // rbConfig
            // 
            this.rbConfig.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.pnConfigGroup,
            this.ribbonPageGroup18,
            this.ribbonPageGroup19});
            this.rbConfig.Name = "rbConfig";
            this.rbConfig.Text = "Configuration";
            // 
            // pnConfigGroup
            // 
            this.pnConfigGroup.ItemLinks.Add(this.barButtonItem26);
            this.pnConfigGroup.ItemLinks.Add(this.btnAddress, true);
            this.pnConfigGroup.ItemLinks.Add(this.btnOutput, true);
            this.pnConfigGroup.Name = "pnConfigGroup";
            this.pnConfigGroup.Text = "Config";
            // 
            // ribbonPageGroup18
            // 
            this.ribbonPageGroup18.ItemLinks.Add(this.barButtonItem28);
            this.ribbonPageGroup18.Name = "ribbonPageGroup18";
            this.ribbonPageGroup18.Text = "Auto";
            // 
            // ribbonPageGroup19
            // 
            this.ribbonPageGroup19.ItemLinks.Add(this.ribbonGalleryBarItem1);
            this.ribbonPageGroup19.ItemLinks.Add(this.lstFormSkin, true);
            this.ribbonPageGroup19.ItemLinks.Add(this.lstMenuSkin);
            this.ribbonPageGroup19.Name = "ribbonPageGroup19";
            this.ribbonPageGroup19.Text = " Customization ";
            // 
            // rbDev
            // 
            this.rbDev.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup21,
            this.ribbonPageGroup22,
            this.ribbonPageGroup23});
            this.rbDev.Name = "rbDev";
            this.rbDev.Text = "Development";
            // 
            // ribbonPageGroup21
            // 
            this.ribbonPageGroup21.ItemLinks.Add(this.btnMapReader);
            this.ribbonPageGroup21.ItemLinks.Add(this.btnBPReader, true);
            this.ribbonPageGroup21.Name = "ribbonPageGroup21";
            this.ribbonPageGroup21.Text = "Map";
            // 
            // ribbonPageGroup22
            // 
            this.ribbonPageGroup22.ItemLinks.Add(this.btnPacketListener);
            this.ribbonPageGroup22.ItemLinks.Add(this.btnCripto, true);
            this.ribbonPageGroup22.Name = "ribbonPageGroup22";
            this.ribbonPageGroup22.Text = "Connection";
            // 
            // ribbonPageGroup23
            // 
            this.ribbonPageGroup23.ItemLinks.Add(this.btnTestes);
            this.ribbonPageGroup23.Name = "ribbonPageGroup23";
            this.ribbonPageGroup23.Text = "Testes";
            // 
            // rbHelp
            // 
            this.rbHelp.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup17,
            this.ribbonPageGroup20});
            this.rbHelp.Name = "rbHelp";
            this.rbHelp.Text = "Help";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.barButtonItem2);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.Text = "Information";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem3);
            this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem4, true);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.Text = "ribbonPageGroup2";
            // 
            // ribbonPageGroup17
            // 
            this.ribbonPageGroup17.ItemLinks.Add(this.barButtonItem9);
            this.ribbonPageGroup17.Name = "ribbonPageGroup17";
            this.ribbonPageGroup17.Text = "Beta";
            // 
            // ribbonPageGroup20
            // 
            this.ribbonPageGroup20.ItemLinks.Add(this.barButtonItem29);
            this.ribbonPageGroup20.Name = "ribbonPageGroup20";
            this.ribbonPageGroup20.Text = " Help";
            // 
            // repositoryItemHyperLinkEdit1
            // 
            this.repositoryItemHyperLinkEdit1.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.repositoryItemHyperLinkEdit1.Appearance.BackColor2 = System.Drawing.Color.Transparent;
            this.repositoryItemHyperLinkEdit1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.repositoryItemHyperLinkEdit1.Appearance.Options.UseBackColor = true;
            this.repositoryItemHyperLinkEdit1.Appearance.Options.UseFont = true;
            this.repositoryItemHyperLinkEdit1.Appearance.Options.UseTextOptions = true;
            this.repositoryItemHyperLinkEdit1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.repositoryItemHyperLinkEdit1.AutoHeight = false;
            this.repositoryItemHyperLinkEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.repositoryItemHyperLinkEdit1.Caption = "TProgramming";
            this.repositoryItemHyperLinkEdit1.LinkColor = System.Drawing.Color.GhostWhite;
            this.repositoryItemHyperLinkEdit1.Name = "repositoryItemHyperLinkEdit1";
            // 
            // ribbonStatusBar1
            // 
            this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 639);
            this.ribbonStatusBar1.Name = "ribbonStatusBar1";
            this.ribbonStatusBar1.Ribbon = this.ribbon;
            this.ribbonStatusBar1.Size = new System.Drawing.Size(816, 23);
            // 
            // DefaultLook
            // 
            this.DefaultLook.LookAndFeel.SkinName = "Black";
            // 
            // ribbonPageGroup16
            // 
            this.ribbonPageGroup16.Name = "ribbonPageGroup16";
            this.ribbonPageGroup16.Text = "Web";
            // 
            // TMLogin
            // 
            this.TMLogin.Tick += new System.EventHandler(this.TMLogin_Tick);
            // 
            // TryIcon
            // 
            this.TryIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
            this.TryIcon.BalloonTipText = "Welcome to KTibiaX";
            this.TryIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("TryIcon.Icon")));
            // 
            // pnHost
            // 
            this.pnHost.AppCreated = false;
            this.pnHost.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.pnHost.CommandLine = null;
            this.pnHost.Controls.Add(this.pnLogo);
            this.pnHost.CurrentProcess = null;
            this.pnHost.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnHost.Location = new System.Drawing.Point(0, 148);
            this.pnHost.Name = "pnHost";
            this.pnHost.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
            this.pnHost.Size = new System.Drawing.Size(816, 491);
            this.pnHost.TabIndex = 1;
            // 
            // pnLogo
            // 
            this.pnLogo.EditValue = global::KTibiaX.ImgTitles.tibia_dark_small2;
            this.pnLogo.Location = new System.Drawing.Point(656, 390);
            this.pnLogo.Name = "pnLogo";
            this.pnLogo.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.pnLogo.Properties.Appearance.Options.UseBackColor = true;
            this.pnLogo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pnLogo.Properties.PictureAlignment = System.Drawing.ContentAlignment.BottomRight;
            this.pnLogo.Properties.ShowMenu = false;
            this.pnLogo.Size = new System.Drawing.Size(185, 161);
            this.pnLogo.TabIndex = 4;
            // 
            // dockManager1
            // 
            this.dockManager1.Controller = this.DockController1;
            this.dockManager1.Form = this;
            this.dockManager1.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockOutputPanel});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            // 
            // dockOutputPanel
            // 
            this.dockOutputPanel.Controls.Add(this.dockPanel1_Container);
            this.dockOutputPanel.Dock = DevExpress.XtraBars.Docking.DockingStyle.Float;
            this.dockOutputPanel.FloatLocation = new System.Drawing.Point(773, 474);
            this.dockOutputPanel.FloatSize = new System.Drawing.Size(260, 134);
            this.dockOutputPanel.FloatVertical = true;
            this.dockOutputPanel.ID = new System.Guid("2d5d370b-e8b6-466b-b344-d6abba8f7c8c");
            this.dockOutputPanel.Location = new System.Drawing.Point(-32768, -32768);
            this.dockOutputPanel.Name = "dockOutputPanel";
            this.dockOutputPanel.OriginalSize = new System.Drawing.Size(0, 0);
            this.dockOutputPanel.SavedIndex = 0;
            this.dockOutputPanel.Size = new System.Drawing.Size(260, 134);
            this.dockOutputPanel.Text = "Output";
            this.dockOutputPanel.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
            // 
            // dockPanel1_Container
            // 
            this.dockPanel1_Container.Controls.Add(this.outputView1);
            this.dockPanel1_Container.Location = new System.Drawing.Point(2, 28);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(256, 104);
            this.dockPanel1_Container.TabIndex = 0;
            // 
            // outputView1
            // 
            this.outputView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.outputView1.Location = new System.Drawing.Point(0, 0);
            this.outputView1.Name = "outputView1";
            this.outputView1.Size = new System.Drawing.Size(256, 104);
            this.outputView1.TabIndex = 0;
            // 
            // TMFeatures
            // 
            this.TMFeatures.Interval = 1000;
            this.TMFeatures.Tick += new System.EventHandler(this.TMFeatures_Tick);
            // 
            // frm_RibbonMenu
            // 
            this.ClientSize = new System.Drawing.Size(816, 662);
            this.Controls.Add(this.pnHost);
            this.Controls.Add(this.ribbon);
            this.Controls.Add(this.ribbonStatusBar1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.IsMdiContainer = true;
            this.Name = "frm_RibbonMenu";
            this.Ribbon = this.ribbon;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.StatusBar = this.ribbonStatusBar1;
            this.Text = "KTibiaX® Advanced 2009";
            this.Load += new System.EventHandler(this.frm_RibbonMenu_Load);
            this.SizeChanged += new System.EventHandler(this.frm_RibbonMenu_SizeChanged);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frm_Main_FormClosing);
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.applicationMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DockController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imgSmallRibbon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemZoomTrackBar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemHyperLinkEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.imgLargRibbon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemHyperLinkEdit1)).EndInit();
            this.pnHost.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pnLogo.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockOutputPanel.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            this.ResumeLayout(false);

        }