Home
last modified time | relevance | path

Searched refs:DisplayIndex (Results 1 – 8 of 8) sorted by relevance

/GUIX-v6.2.1/guix_studio/
Dresource_view.h57 void OnDisplaySelect(int DisplayIndex, BOOL bReload = FALSE);
74 void InstallResources(int DisplayIndex);
75 …void BuildResourceTables(int DisplayIndex, GX_DISPLAY *display, BOOL update_resource_view = GX_TRU…
95 void InstallColorTable(int DisplayIndex, GX_DISPLAY *display = NULL);
96 void InstallFontTable(int DisplayIndex, GX_DISPLAY *display = NULL);
97 void InstallPixelmapTable(int DisplayIndex, GX_DISPLAY *display = NULL);
98 void CheckInstallPalette(int DisplayIndex, GX_DISPLAY *display);
104 int BuildColorTable(int DisplayIndex, int ThemeIndex, int color_format, color_table *table);
105 int BuildFontTable(int DisplayIndex, int ThemeIndex, font_table *table);
106 int BuildPixelmapTable(int DisplayIndex, int ThemeIndex, pixelmap_table *table);
DStudioXProject.h633 void AddFolderToDisplay(int DisplayIndex, folder_info *child);
645 int CountResources(int DisplayIndex, int type) const;
648 int CountEnabledThemes(int DisplayIndex) const;
649 int CountEnabledLanguages(int DisplayIndex) const;
655 BOOL AddToIdDictionary(int DisplayIndex, int id_type, CString &id_name);
656 BOOL RemoveFromIdDictionary(int DisplayIndex, int id_type, CString &id_name);
657 INT GetIdIndex(int DisplayIndex, int id_type, const CString &id_name) const;
659 CString GetIdName(int DisplayIndex, int id_type, int index) const;
660 void CleanupIdDictionary(int DisplayIndex, int id_type);
665 BOOL AddToResourceDictionary(int DisplayIndex, res_info *info, int res_id = -1);
[all …]
DStudioXProject.cpp1982 void studiox_project::InitDisplayThemes(int DisplayIndex) in InitDisplayThemes() argument
1985 display_info *pInfo = &mDisplays[DisplayIndex]; in InitDisplayThemes()
1992 mDisplays[DisplayIndex].themes[theme].theme_name = theme_name; in InitDisplayThemes()
1993 mDisplays[DisplayIndex].themes[theme].palette = NULL; in InitDisplayThemes()
1994 mDisplays[DisplayIndex].themes[theme].palette_total_size = 0; in InitDisplayThemes()
1995 mDisplays[DisplayIndex].themes[theme].SetFirstResourceInfo(NULL); in InitDisplayThemes()
1996 mDisplays[DisplayIndex].themes[theme].gen_color_table = TRUE; in InitDisplayThemes()
1997 mDisplays[DisplayIndex].themes[theme].gen_font_table = TRUE; in InitDisplayThemes()
1998 mDisplays[DisplayIndex].themes[theme].gen_pixelmap_table = TRUE; in InitDisplayThemes()
1999 mDisplays[DisplayIndex].themes[theme].enabled = TRUE; in InitDisplayThemes()
[all …]
Dresource_view.cpp956 int resource_view::BuildColorTable(int DisplayIndex, int ThemeIndex, int color_format, color_table … in BuildColorTable() argument
964 res_info *res = project->mDisplays[DisplayIndex].themes[ThemeIndex].GetFirstResourceInfo(); in BuildColorTable()
966 int numcolors = project->CountResources(DisplayIndex, RES_TYPE_COLOR); in BuildColorTable()
978 project->GetResourceName(DisplayIndex, RES_TYPE_COLOR, color_id, color_name); in BuildColorTable()
994 int resource_view::BuildFontTable(int DisplayIndex, int ThemeIndex, font_table *table) in BuildFontTable() argument
1001 res_info *res = project->mDisplays[DisplayIndex].themes[ThemeIndex].GetFirstResourceInfo(); in BuildFontTable()
1002 int numfonts = project->CountResources(DisplayIndex, RES_TYPE_FONT); in BuildFontTable()
1014 project->GetResourceName(DisplayIndex, RES_TYPE_FONT, font_id, font_name); in BuildFontTable()
1028 int resource_view::BuildPixelmapTable(int DisplayIndex, int ThemeIndex, pixelmap_table *table) in BuildPixelmapTable() argument
1035 res_info *res = project->mDisplays[DisplayIndex].themes[ThemeIndex].GetFirstResourceInfo(); in BuildPixelmapTable()
[all …]
Dtarget_screen.cpp1876 int DisplayIndex = GetProjectView()->GetActiveDisplay(); in SwitchTopWidget() local
1880 if (!root && DisplayIndex >= 0) in SwitchTopWidget()
1885 ConfigureDisplay(DisplayIndex); in SwitchTopWidget()
1887 DisplayIndex = -1; // don't configure again in SwitchTopWidget()
1933 if (DisplayIndex >= 0) in SwitchTopWidget()
1935 ConfigureDisplay(DisplayIndex); in SwitchTopWidget()
2434 int DisplayIndex = GetProjectView()->GetActiveDisplay(); in TestDropItem() local
2467 provider->AssignFont(info, 0, project->GetResourceId(DisplayIndex, item->mpRes)); in TestDropItem()
2474 provider->AssignColor(info, 1, project->GetResourceId(DisplayIndex, item->mpRes)); in TestDropItem()
2479 provider->AssignColor(info, 0, project->GetResourceId(DisplayIndex, item->mpRes)); in TestDropItem()
[all …]
Dconfigure_theme_dlg.h14 configure_theme_dlg(int DisplayIndex, CWnd* pParent = NULL); // standard constructor
Dproject_view.cpp384 int DisplayIndex = 0; in PopulateProjectTree() local
392 for (DisplayIndex = 0; DisplayIndex < pProj->mHeader.max_displays; DisplayIndex++) in PopulateProjectTree()
394 widget_factory::CleanupWidgets(pProj->mDisplays[DisplayIndex].GetFirstChildFolder()); in PopulateProjectTree()
402 for (DisplayIndex = 0; DisplayIndex < pProj->mHeader.num_displays; DisplayIndex++) in PopulateProjectTree()
404 hCurrent = mpTree->InsertItem(pProj->mDisplays[DisplayIndex].name, in PopulateProjectTree()
406 mpTree->SetItemData(hCurrent, DisplayIndex); in PopulateProjectTree()
409 AddTreeFolders(hCurrent, pProj->mDisplays[DisplayIndex].GetFirstChildFolder()); in PopulateProjectTree()
Dconfigure_theme_dlg.cpp39 configure_theme_dlg::configure_theme_dlg(int DisplayIndex, CWnd* pParent /*=NULL*/) in IMPLEMENT_DYNAMIC()
45 mDisplayIndex = DisplayIndex; in IMPLEMENT_DYNAMIC()