//////////////////////////////////////////////////// // // CNewsBrowser::CreateGUI // // // //////////////////////////////////////////////////// void CNewsBrowser::CreateGUI(void) { CreateHeadlines(); CGUI* pManager = g_pCore->GetGUI(); // Create the window m_pWindow = reinterpret_cast<CGUIWindow*>(pManager->CreateWnd(NULL, "NEWS")); m_pWindow->SetCloseButtonEnabled(true); m_pWindow->SetMovable(true); CVector2D resolution = CCore::GetSingleton().GetGUI()->GetResolution(); float yoff = resolution.fY > 600 ? resolution.fY / 12 : 0.0f; m_pWindow->SetPosition(CVector2D(resolution.fX / 2 - 640.0f / 2, resolution.fY / 2 - 480.0f / 2 + yoff), false); m_pWindow->SetSize(CVector2D(640.0f, 480.0f)); m_pWindow->SetSizingEnabled(false); m_pWindow->SetAlwaysOnTop(true); // Create buttons // OK button m_pButtonOK = reinterpret_cast<CGUIButton*>(pManager->CreateButton(m_pWindow, "OK")); m_pButtonOK->SetPosition(CVector2D(560.0f - 60, 480.0f - 30)); m_pButtonOK->SetZOrderingEnabled(false); // Set up the events m_pWindow->SetEnterKeyHandler(GUI_CALLBACK(&CNewsBrowser::OnOKButtonClick, this)); m_pButtonOK->SetClickHandler(GUI_CALLBACK(&CNewsBrowser::OnOKButtonClick, this)); // Create the tab panel and necessary tabs m_pTabPanel = reinterpret_cast<CGUITabPanel*>(pManager->CreateTabPanel(m_pWindow)); m_pTabPanel->SetPosition(CVector2D(0, 20.0f)); m_pTabPanel->SetSize(CVector2D(640.0f, 480.0f - 60)); for (uint i = 0; i < m_NewsitemList.size(); i++) { AddNewsTab(m_NewsitemList[i]); } }
CServerBrowser::CServerBrowser ( void ) { CGUI *pManager = g_pCore->GetGUI (); // Initialize m_ulLastUpdateTime = 0; m_PrevServerBrowserType = INTERNET; // Create serverbrowser window m_pWindow = reinterpret_cast < CGUIWindow* > ( pManager->CreateWnd ( NULL, "SERVER BROWSER" ) ); m_pWindow->SetCloseButtonEnabled ( false ); m_pWindow->SetMovable ( true ); m_pWindow->SetSizingEnabled ( true ); CVector2D resolution = CCore::GetSingleton().GetGUI()->GetResolution(); m_pWindow->SetPosition ( CVector2D ( resolution.fX / 2 - BROWSER_DEFAULTWIDTH / 2, resolution.fY / 2 - BROWSER_DEFAULTHEIGHT / 2 ), false ); m_pWindow->SetSize ( CVector2D ( BROWSER_DEFAULTWIDTH, BROWSER_DEFAULTHEIGHT ) ); m_pWindow->SetAlwaysOnTop ( true ); m_pWindow->SetMinimumSize ( CVector2D ( BROWSER_DEFAULTWIDTH, BROWSER_DEFAULTHEIGHT ) ); // Create the serverlist tab panel and some tabs m_pTabs = reinterpret_cast < CGUITabPanel* > ( pManager->CreateTabPanel ( m_pWindow ) ); m_pTabs->SetPosition ( CVector2D ( 0.0f, 25.0f ) ); m_pTabs->SetSize ( CVector2D ( BROWSER_DEFAULTWIDTH, BROWSER_DEFAULTHEIGHT - 60.0f ) ); // Back button m_pButtonBack = reinterpret_cast < CGUIButton* > ( pManager->CreateButton ( m_pWindow, "Back" ) ); m_pButtonBack->SetPosition ( CVector2D ( BROWSER_DEFAULTWIDTH - 123.0f, BROWSER_DEFAULTHEIGHT - 32.0f ), false ); m_pButtonBack->SetSize ( CVector2D ( 108.0f, 20.0f ), false ); // Create the serverlist status label m_pServerListStatus = reinterpret_cast < CGUILabel* > ( pManager->CreateLabel ( m_pWindow, "Loading..." ) ); m_pServerListStatus->SetPosition ( CVector2D ( 14.0f, BROWSER_DEFAULTHEIGHT - 30.0f ) ); m_pServerListStatus->SetSize ( CVector2D ( 0.40f, 0.40f ), true ); //m_pServerListStatus->SetMinimumSize ( CVector2D ( 1.0f, 1.0f ) ); //m_pServerListStatus->SetMaximumSize ( CVector2D ( 1.0f, 1.0f ) ); // Create locked icon m_pLockedIcon = reinterpret_cast < CGUIStaticImage* > ( pManager->CreateStaticImage ( m_pWindow ) ); m_pLockedIcon->SetVisible ( false ); m_pLockedIcon->SetFrameEnabled ( false ); m_pLockedIcon->LoadFromFile ( "cgui\\images\\locked.png" ); // Serial verification icon m_pSerialIcon = reinterpret_cast < CGUIStaticImage* > ( pManager->CreateStaticImage ( m_pWindow ) ); m_pSerialIcon->SetVisible ( false ); m_pSerialIcon->SetFrameEnabled ( false ); m_pSerialIcon->LoadFromFile ( "cgui\\images\\shield.png" ); //Set necessary handlers m_pButtonBack->SetClickHandler ( GUI_CALLBACK ( &CServerBrowser::OnBackClick, this ) ); m_pWindow->SetSizedHandler ( GUI_CALLBACK ( &CServerBrowser::OnWindowSize, this ) ); // Create the tabs CreateTab ( ServerBrowserType::INTERNET, "Internet" ); CreateTab ( ServerBrowserType::LAN, "Lan" ); CreateTab ( ServerBrowserType::FAVOURITES, "Favourites" ); CreateTab ( ServerBrowserType::RECENTLY_PLAYED, "Recently Played" ); // Create the "Add to favourites by IP" button m_pButtonFavouritesByIP = reinterpret_cast < CGUIButton * > ( pManager->CreateButton ( m_pTab [ ServerBrowserType::FAVOURITES ], "Add by host/ip" ) ); m_pButtonFavouritesByIP->SetPosition ( CVector2D ( 0.30f, 0.93f ), true ); m_pButtonFavouritesByIP->SetSize ( CVector2D ( 0.25f, 0.04f ), true ); m_pButtonFavouritesByIP->SetClickHandler ( GUI_CALLBACK ( &CServerBrowser::OnFavouritesByIPClick, this ) ); // Create the "Add to favourites by IP" dialog m_pFavouritesAddByIP.SetCallback ( GUI_CALLBACK ( &CServerBrowser::OnFavouritesByIPAddClick, this ) ); // Login dialog m_pCommunityLogin.SetVisible ( false ); m_pCommunityLogin.SetCallback ( &CServerBrowser::CompleteConnect ); }