mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
About dialog:
- Renamed Measures tab to Skins - Added support for viewing variables under new Skins tab
This commit is contained in:
parent
3254520ced
commit
9683b8a8bf
@ -47,6 +47,8 @@ public:
|
|||||||
void SetBuiltInVariable(const std::wstring& strVariable, const std::wstring& strValue) { SetVariable(m_BuiltInVariables, strVariable, strValue); }
|
void SetBuiltInVariable(const std::wstring& strVariable, const std::wstring& strValue) { SetVariable(m_BuiltInVariables, strVariable, strValue); }
|
||||||
void SetBuiltInVariable(const WCHAR* strVariable, const WCHAR* strValue) { SetVariable(m_BuiltInVariables, strVariable, strValue); }
|
void SetBuiltInVariable(const WCHAR* strVariable, const WCHAR* strValue) { SetVariable(m_BuiltInVariables, strVariable, strValue); }
|
||||||
|
|
||||||
|
const std::unordered_map<std::wstring, std::wstring>& GetVariables() { return m_Variables; }
|
||||||
|
|
||||||
void SetCurrentSection(const std::wstring& strSection) { m_CurrentSection->assign(strSection); }
|
void SetCurrentSection(const std::wstring& strSection) { m_CurrentSection->assign(strSection); }
|
||||||
void ClearCurrentSection() { m_CurrentSection->clear(); }
|
void ClearCurrentSection() { m_CurrentSection->clear(); }
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ CDialogAbout* CDialogAbout::c_Dialog = NULL;
|
|||||||
*/
|
*/
|
||||||
CDialogAbout::CDialogAbout(HWND wnd) : CDialog(wnd),
|
CDialogAbout::CDialogAbout(HWND wnd) : CDialog(wnd),
|
||||||
m_TabLog(wnd),
|
m_TabLog(wnd),
|
||||||
m_TabMeasures(wnd),
|
m_TabSkins(wnd),
|
||||||
m_TabPlugins(wnd),
|
m_TabPlugins(wnd),
|
||||||
m_TabVersion(wnd)
|
m_TabVersion(wnd)
|
||||||
{
|
{
|
||||||
@ -69,7 +69,8 @@ void CDialogAbout::Open(const WCHAR* name)
|
|||||||
|
|
||||||
if (name)
|
if (name)
|
||||||
{
|
{
|
||||||
if (_wcsicmp(name, L"Measures") == 0)
|
if (_wcsicmp(name, L"Skins") == 0 ||
|
||||||
|
_wcsicmp(name, L"Measures") == 0) // For backwards compatibility
|
||||||
{
|
{
|
||||||
tab = 1;
|
tab = 1;
|
||||||
}
|
}
|
||||||
@ -143,17 +144,17 @@ void CDialogAbout::AddLogItem(int level, LPCWSTR time, LPCWSTR message)
|
|||||||
|
|
||||||
void CDialogAbout::UpdateSkins()
|
void CDialogAbout::UpdateSkins()
|
||||||
{
|
{
|
||||||
if (c_Dialog && c_Dialog->m_TabMeasures.IsInitialized())
|
if (c_Dialog && c_Dialog->m_TabSkins.IsInitialized())
|
||||||
{
|
{
|
||||||
c_Dialog->m_TabMeasures.UpdateSkinList();
|
c_Dialog->m_TabSkins.UpdateSkinList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void CDialogAbout::UpdateMeasures(CMeterWindow* meterWindow)
|
void CDialogAbout::UpdateMeasures(CMeterWindow* meterWindow)
|
||||||
{
|
{
|
||||||
if (c_Dialog && c_Dialog->m_TabMeasures.IsInitialized())
|
if (c_Dialog && c_Dialog->m_TabSkins.IsInitialized())
|
||||||
{
|
{
|
||||||
c_Dialog->m_TabMeasures.UpdateMeasureList(meterWindow);
|
c_Dialog->m_TabSkins.UpdateMeasureList(meterWindow);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -212,7 +213,7 @@ INT_PTR CALLBACK CDialogAbout::DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPAR
|
|||||||
w -= 48;
|
w -= 48;
|
||||||
h -= 100;
|
h -= 100;
|
||||||
c_Dialog->m_TabLog.Resize(w, h);
|
c_Dialog->m_TabLog.Resize(w, h);
|
||||||
c_Dialog->m_TabMeasures.Resize(w, h);
|
c_Dialog->m_TabSkins.Resize(w, h);
|
||||||
c_Dialog->m_TabPlugins.Resize(w, h);
|
c_Dialog->m_TabPlugins.Resize(w, h);
|
||||||
c_Dialog->m_TabVersion.Resize(w, h);
|
c_Dialog->m_TabVersion.Resize(w, h);
|
||||||
}
|
}
|
||||||
@ -261,7 +262,7 @@ INT_PTR CDialogAbout::OnInitDialog(WPARAM wParam, LPARAM lParam)
|
|||||||
tci.mask = TCIF_TEXT;
|
tci.mask = TCIF_TEXT;
|
||||||
tci.pszText = GetString(ID_STR_LOG);
|
tci.pszText = GetString(ID_STR_LOG);
|
||||||
TabCtrl_InsertItem(item, 0, &tci);
|
TabCtrl_InsertItem(item, 0, &tci);
|
||||||
tci.pszText = GetString(ID_STR_MEASURES);
|
tci.pszText = GetString(ID_STR_SKINS);
|
||||||
TabCtrl_InsertItem(item, 1, &tci);
|
TabCtrl_InsertItem(item, 1, &tci);
|
||||||
tci.pszText = GetString(ID_STR_PLUGINS);
|
tci.pszText = GetString(ID_STR_PLUGINS);
|
||||||
TabCtrl_InsertItem(item, 2, &tci);
|
TabCtrl_InsertItem(item, 2, &tci);
|
||||||
@ -310,7 +311,7 @@ INT_PTR CDialogAbout::OnNotify(WPARAM wParam, LPARAM lParam)
|
|||||||
{
|
{
|
||||||
// Disable all tab windows first
|
// Disable all tab windows first
|
||||||
EnableWindow(m_TabLog.GetWindow(), FALSE);
|
EnableWindow(m_TabLog.GetWindow(), FALSE);
|
||||||
EnableWindow(m_TabMeasures.GetWindow(), FALSE);
|
EnableWindow(m_TabSkins.GetWindow(), FALSE);
|
||||||
EnableWindow(m_TabPlugins.GetWindow(), FALSE);
|
EnableWindow(m_TabPlugins.GetWindow(), FALSE);
|
||||||
EnableWindow(m_TabVersion.GetWindow(), FALSE);
|
EnableWindow(m_TabVersion.GetWindow(), FALSE);
|
||||||
|
|
||||||
@ -321,7 +322,7 @@ INT_PTR CDialogAbout::OnNotify(WPARAM wParam, LPARAM lParam)
|
|||||||
}
|
}
|
||||||
else if (sel == 1)
|
else if (sel == 1)
|
||||||
{
|
{
|
||||||
m_TabMeasures.Activate();
|
m_TabSkins.Activate();
|
||||||
}
|
}
|
||||||
else if (sel == 2)
|
else if (sel == 2)
|
||||||
{
|
{
|
||||||
@ -582,12 +583,12 @@ INT_PTR CDialogAbout::CTabLog::OnCommand(WPARAM wParam, LPARAM lParam)
|
|||||||
// -----------------------------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** CTabMeasures
|
** CTabSkins
|
||||||
**
|
**
|
||||||
** Constructor.
|
** Constructor.
|
||||||
**
|
**
|
||||||
*/
|
*/
|
||||||
CDialogAbout::CTabMeasures::CTabMeasures(HWND owner) : CTab(Rainmeter->GetResourceInstance(), owner, IDD_ABOUTMEASURES_DIALOG, DlgProc),
|
CDialogAbout::CTabSkins::CTabSkins(HWND owner) : CTab(Rainmeter->GetResourceInstance(), owner, IDD_ABOUTMEASURES_DIALOG, DlgProc),
|
||||||
m_SkinWindow()
|
m_SkinWindow()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@ -598,17 +599,30 @@ CDialogAbout::CTabMeasures::CTabMeasures(HWND owner) : CTab(Rainmeter->GetResour
|
|||||||
** Called when tab is displayed.
|
** Called when tab is displayed.
|
||||||
**
|
**
|
||||||
*/
|
*/
|
||||||
void CDialogAbout::CTabMeasures::Initialize()
|
void CDialogAbout::CTabSkins::Initialize()
|
||||||
{
|
{
|
||||||
m_Initialized = true;
|
m_Initialized = true;
|
||||||
|
|
||||||
// Add columns to the list view
|
// Add columns to the list view
|
||||||
HWND item = GetDlgItem(m_Window, IDC_ABOUTMEASURES_ITEMS_LISTVIEW);
|
HWND item = GetDlgItem(m_Window, IDC_ABOUTMEASURES_ITEMS_LISTVIEW);
|
||||||
ListView_SetExtendedListViewStyleEx(item, LVS_EX_FULLROWSELECT | LVS_EX_DOUBLEBUFFER, LVS_EX_FULLROWSELECT | LVS_EX_DOUBLEBUFFER);
|
ListView_SetExtendedListViewStyleEx(item, 0, LVS_EX_GRIDLINES | LVS_EX_FULLROWSELECT | LVS_EX_DOUBLEBUFFER);
|
||||||
|
|
||||||
|
LVGROUP lvg;
|
||||||
|
lvg.cbSize = sizeof(LVGROUP);
|
||||||
|
lvg.mask = LVGF_HEADER | LVGF_GROUPID | LVGF_STATE;
|
||||||
|
lvg.state = LVGS_NORMAL | LVGS_COLLAPSIBLE;
|
||||||
|
lvg.iGroupId = 0;
|
||||||
|
lvg.pszHeader = GetString(ID_STR_MEASURES);
|
||||||
|
ListView_InsertGroup(item, 0, &lvg);
|
||||||
|
lvg.iGroupId = 1;
|
||||||
|
lvg.pszHeader = L"Variables"; // FIXME
|
||||||
|
ListView_InsertGroup(item, 1, &lvg);
|
||||||
|
|
||||||
|
ListView_EnableGroupView(item, TRUE);
|
||||||
|
|
||||||
LVCOLUMN lvc;
|
LVCOLUMN lvc;
|
||||||
lvc.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
|
lvc.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
|
||||||
lvc.fmt = LVCFMT_LEFT; // left-aligned column
|
lvc.fmt = LVCFMT_LEFT;
|
||||||
lvc.iSubItem = 0;
|
lvc.iSubItem = 0;
|
||||||
lvc.cx = 120;
|
lvc.cx = 120;
|
||||||
lvc.pszText = GetString(ID_STR_NAME);
|
lvc.pszText = GetString(ID_STR_NAME);
|
||||||
@ -631,7 +645,7 @@ void CDialogAbout::CTabMeasures::Initialize()
|
|||||||
** Resizes window and repositions controls.
|
** Resizes window and repositions controls.
|
||||||
**
|
**
|
||||||
*/
|
*/
|
||||||
void CDialogAbout::CTabMeasures::Resize(int w, int h)
|
void CDialogAbout::CTabSkins::Resize(int w, int h)
|
||||||
{
|
{
|
||||||
SetWindowPos(m_Window, NULL, 0, 0, w, h, SWP_NOMOVE | SWP_NOZORDER);
|
SetWindowPos(m_Window, NULL, 0, 0, w, h, SWP_NOMOVE | SWP_NOZORDER);
|
||||||
|
|
||||||
@ -655,7 +669,7 @@ void CDialogAbout::CTabMeasures::Resize(int w, int h)
|
|||||||
** Updates the list of skins.
|
** Updates the list of skins.
|
||||||
**
|
**
|
||||||
*/
|
*/
|
||||||
void CDialogAbout::CTabMeasures::UpdateSkinList()
|
void CDialogAbout::CTabSkins::UpdateSkinList()
|
||||||
{
|
{
|
||||||
// Delete all entries
|
// Delete all entries
|
||||||
HWND item = GetDlgItem(m_Window, IDC_ABOUTMEASURES_ITEMS_LISTBOX);
|
HWND item = GetDlgItem(m_Window, IDC_ABOUTMEASURES_ITEMS_LISTBOX);
|
||||||
@ -711,7 +725,7 @@ void CDialogAbout::CTabMeasures::UpdateSkinList()
|
|||||||
** Updates the list of measures and values.
|
** Updates the list of measures and values.
|
||||||
**
|
**
|
||||||
*/
|
*/
|
||||||
void CDialogAbout::CTabMeasures::UpdateMeasureList(CMeterWindow* meterWindow)
|
void CDialogAbout::CTabSkins::UpdateMeasureList(CMeterWindow* meterWindow)
|
||||||
{
|
{
|
||||||
if (!meterWindow)
|
if (!meterWindow)
|
||||||
{
|
{
|
||||||
@ -744,7 +758,7 @@ void CDialogAbout::CTabMeasures::UpdateMeasureList(CMeterWindow* meterWindow)
|
|||||||
std::list<CMeasure*>::const_iterator j = measures.begin();
|
std::list<CMeasure*>::const_iterator j = measures.begin();
|
||||||
for ( ; j != measures.end(); ++j)
|
for ( ; j != measures.end(); ++j)
|
||||||
{
|
{
|
||||||
const WCHAR* name = (*j)->GetName();;
|
const WCHAR* name = (*j)->GetName();
|
||||||
if (index < count)
|
if (index < count)
|
||||||
{
|
{
|
||||||
ListView_SetItemText(item, index, 0, (WCHAR*)name);
|
ListView_SetItemText(item, index, 0, (WCHAR*)name);
|
||||||
@ -752,7 +766,8 @@ void CDialogAbout::CTabMeasures::UpdateMeasureList(CMeterWindow* meterWindow)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
LVITEM vitem;
|
LVITEM vitem;
|
||||||
vitem.mask = LVIF_TEXT;
|
vitem.mask = LVIF_TEXT | LVIF_GROUPID;
|
||||||
|
vitem.iGroupId = 0;
|
||||||
vitem.iItem = index;
|
vitem.iItem = index;
|
||||||
vitem.iSubItem = 0;
|
vitem.iSubItem = 0;
|
||||||
vitem.pszText = (WCHAR*)name;
|
vitem.pszText = (WCHAR*)name;
|
||||||
@ -771,6 +786,29 @@ void CDialogAbout::CTabMeasures::UpdateMeasureList(CMeterWindow* meterWindow)
|
|||||||
++index;
|
++index;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const auto& variables = m_SkinWindow->GetParser().GetVariables();
|
||||||
|
for (auto iter = variables.cbegin(); iter != variables.cend(); ++iter)
|
||||||
|
{
|
||||||
|
const WCHAR* name = (*iter).first.c_str();
|
||||||
|
if (index < count)
|
||||||
|
{
|
||||||
|
ListView_SetItemText(item, index, 0, (WCHAR*)name);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
LVITEM vitem;
|
||||||
|
vitem.mask = LVIF_TEXT | LVIF_GROUPID;
|
||||||
|
vitem.iGroupId = 1;
|
||||||
|
vitem.iItem = index;
|
||||||
|
vitem.iSubItem = 0;
|
||||||
|
vitem.pszText = (WCHAR*)name;
|
||||||
|
ListView_InsertItem(item, &vitem);
|
||||||
|
}
|
||||||
|
|
||||||
|
ListView_SetItemText(item, index, 2, (WCHAR*)(*iter).second.c_str());
|
||||||
|
++index;
|
||||||
|
}
|
||||||
|
|
||||||
// Delete unnecessary items
|
// Delete unnecessary items
|
||||||
while (count > index)
|
while (count > index)
|
||||||
{
|
{
|
||||||
@ -787,18 +825,18 @@ void CDialogAbout::CTabMeasures::UpdateMeasureList(CMeterWindow* meterWindow)
|
|||||||
** Dialog procedure for the measures dialog.
|
** Dialog procedure for the measures dialog.
|
||||||
**
|
**
|
||||||
*/
|
*/
|
||||||
INT_PTR CALLBACK CDialogAbout::CTabMeasures::DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
INT_PTR CALLBACK CDialogAbout::CTabSkins::DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
switch (uMsg)
|
switch (uMsg)
|
||||||
{
|
{
|
||||||
case WM_COMMAND:
|
case WM_COMMAND:
|
||||||
return c_Dialog->m_TabMeasures.OnCommand(wParam, lParam);
|
return c_Dialog->m_TabSkins.OnCommand(wParam, lParam);
|
||||||
}
|
}
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
INT_PTR CDialogAbout::CTabMeasures::OnCommand(WPARAM wParam, LPARAM lParam)
|
INT_PTR CDialogAbout::CTabSkins::OnCommand(WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
switch (LOWORD(wParam))
|
switch (LOWORD(wParam))
|
||||||
{
|
{
|
||||||
|
@ -66,10 +66,10 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Measures tab
|
// Measures tab
|
||||||
class CTabMeasures : public CTab
|
class CTabSkins : public CTab
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CTabMeasures(HWND owner);
|
CTabSkins(HWND owner);
|
||||||
|
|
||||||
virtual void Initialize();
|
virtual void Initialize();
|
||||||
virtual void Resize(int w, int h);
|
virtual void Resize(int w, int h);
|
||||||
@ -115,7 +115,7 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
CTabLog m_TabLog;
|
CTabLog m_TabLog;
|
||||||
CTabMeasures m_TabMeasures;
|
CTabSkins m_TabSkins;
|
||||||
CTabPlugins m_TabPlugins;
|
CTabPlugins m_TabPlugins;
|
||||||
CTabVersion m_TabVersion;
|
CTabVersion m_TabVersion;
|
||||||
};
|
};
|
||||||
|
@ -410,7 +410,7 @@ void LogWithArgs(int nLevel, const WCHAR* format, ...)
|
|||||||
_CrtSetReportMode(_CRT_ASSERT, 0);
|
_CrtSetReportMode(_CRT_ASSERT, 0);
|
||||||
|
|
||||||
errno = 0;
|
errno = 0;
|
||||||
_vsnwprintf_s( buffer, 4096, _TRUNCATE, format, args );
|
_vsnwprintf_s(buffer, 4096, _TRUNCATE, format, args);
|
||||||
if (errno != 0)
|
if (errno != 0)
|
||||||
{
|
{
|
||||||
nLevel = LOG_ERROR;
|
nLevel = LOG_ERROR;
|
||||||
|
@ -26,7 +26,7 @@ static const double M_E = 2.7182818284590452354;
|
|||||||
static const double M_PI = 3.14159265358979323846;
|
static const double M_PI = 3.14159265358979323846;
|
||||||
|
|
||||||
typedef double (*OneArgProc)(double arg);
|
typedef double (*OneArgProc)(double arg);
|
||||||
typedef WCHAR* (*MultiArgProc)(int paramcnt, double* args, double* result);
|
typedef const WCHAR* (*MultiArgProc)(int paramcnt, double* args, double* result);
|
||||||
|
|
||||||
enum OperationType
|
enum OperationType
|
||||||
{
|
{
|
||||||
@ -425,7 +425,7 @@ static const WCHAR* Calc(Parser& parser)
|
|||||||
int paramcnt = parser.valTop - op.prevTop;
|
int paramcnt = parser.valTop - op.prevTop;
|
||||||
|
|
||||||
parser.valTop = op.prevTop;
|
parser.valTop = op.prevTop;
|
||||||
WCHAR* error = (*(MultiArgProc)g_Functions[op.funcIndex].proc)(paramcnt, &parser.valStack[parser.valTop + 1], &res);
|
const WCHAR* error = (*(MultiArgProc)g_Functions[op.funcIndex].proc)(paramcnt, &parser.valStack[parser.valTop + 1], &res);
|
||||||
if (error) return error;
|
if (error) return error;
|
||||||
|
|
||||||
parser.valStack[++parser.valTop] = res;
|
parser.valStack[++parser.valTop] = res;
|
||||||
|
Loading…
Reference in New Issue
Block a user