mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
-Fixed several bugs in real time resolution changes
-Added AnchorX and AnchorY to the config and help -Added some of the build directories to the ignore list for svn
This commit is contained in:
parent
78bc4ba9dc
commit
537f02146f
@ -80,7 +80,14 @@ CMeterWindow::CMeterWindow(std::wstring& config, std::wstring& iniFile)
|
||||
m_WindowYFromBottom = false;
|
||||
m_WindowXScreen = 1;
|
||||
m_WindowYScreen = 1;
|
||||
//m_Monitors.count = 0;
|
||||
m_AnchorXFromRight = false;
|
||||
m_AnchorYFromBottom = false;
|
||||
m_AnchorXPercentage = false;
|
||||
m_AnchorYPercentage = false;
|
||||
m_AnchorXNumber = 0;
|
||||
m_AnchorYNumber = 0;
|
||||
m_AnchorScreenX = 0;
|
||||
m_AnchorScreenY = 0;
|
||||
m_WindowZPosition = ZPOSITION_NORMAL;
|
||||
m_WindowDraggable = true;
|
||||
m_WindowUpdate = 1000;
|
||||
@ -268,7 +275,7 @@ void CMeterWindow::Refresh(bool init)
|
||||
if(!init)
|
||||
{
|
||||
// First destroy everything
|
||||
WriteConfig();
|
||||
// WriteConfig(); //Not clear why this is needed and it messes up resolution changes
|
||||
|
||||
KillTimer(m_Window, METERTIMER); // Kill the timer
|
||||
KillTimer(m_Window, MOUSETIMER); // Kill the timer
|
||||
@ -296,6 +303,7 @@ void CMeterWindow::Refresh(bool init)
|
||||
m_BackgroundName.erase();
|
||||
}
|
||||
|
||||
//TODO: Should these be moved to a Reload command instead of hitting the disk on every refresh
|
||||
ReadConfig(); // Read the general settings
|
||||
ReadSkin();
|
||||
|
||||
@ -887,6 +895,56 @@ void CMeterWindow::WindowToScreen()
|
||||
m_Monitors.vsW = GetSystemMetrics(SM_CXVIRTUALSCREEN);
|
||||
}
|
||||
|
||||
index = m_AnchorX.find_first_not_of(L"0123456789.");
|
||||
m_AnchorXNumber = _wtof(m_AnchorX.substr(0,index).c_str());
|
||||
index = m_AnchorX.find(L'%');
|
||||
if(index != std::wstring::npos) m_AnchorXPercentage = true;
|
||||
index = m_AnchorX.find(L'R');
|
||||
if(index != std::wstring::npos) m_AnchorXFromRight = true;
|
||||
if(m_AnchorXPercentage) //is a percentage
|
||||
{
|
||||
float p = m_AnchorXNumber;
|
||||
pixel = (float)m_WindowW*p/100;
|
||||
}
|
||||
else
|
||||
{
|
||||
pixel = m_AnchorXNumber;
|
||||
}
|
||||
if(m_AnchorXFromRight) //measure from right
|
||||
{
|
||||
pixel = m_WindowW-pixel;
|
||||
}
|
||||
else
|
||||
{
|
||||
//pixel = pixel;
|
||||
}
|
||||
m_AnchorScreenX = pixel;
|
||||
|
||||
index = m_AnchorY.find_first_not_of(L"0123456789.");
|
||||
m_AnchorYNumber = _wtof(m_AnchorY.substr(0,index).c_str());
|
||||
index = m_AnchorY.find(L'%');
|
||||
if(index != std::wstring::npos) m_AnchorYPercentage = true;
|
||||
index = m_AnchorY.find(L'R');
|
||||
if(index != std::wstring::npos) m_AnchorYFromBottom = true;
|
||||
if(m_AnchorYPercentage) //is a percentage
|
||||
{
|
||||
float p = m_AnchorYNumber;
|
||||
pixel = (float)m_WindowH*p/100;
|
||||
}
|
||||
else
|
||||
{
|
||||
pixel = m_AnchorYNumber;
|
||||
}
|
||||
if(m_AnchorYFromBottom) //measure from bottom
|
||||
{
|
||||
pixel = m_WindowH-pixel;
|
||||
}
|
||||
else
|
||||
{
|
||||
//pixel = pixel;
|
||||
}
|
||||
m_AnchorScreenY = pixel;
|
||||
|
||||
index = m_WindowX.find_first_not_of(L"0123456789.");
|
||||
m_WindowXNumber = _wtof(m_WindowX.substr(0,index).c_str());
|
||||
index = m_WindowX.find(L'%');
|
||||
@ -932,7 +990,7 @@ void CMeterWindow::WindowToScreen()
|
||||
{
|
||||
pixel = screenx + pixel;
|
||||
}
|
||||
m_ScreenX = pixel;
|
||||
m_ScreenX = pixel-m_AnchorScreenX;
|
||||
|
||||
index = m_WindowY.find_first_not_of(L"0123456789.");
|
||||
m_WindowYNumber = _wtof(m_WindowY.substr(0,index).c_str());
|
||||
@ -978,7 +1036,7 @@ void CMeterWindow::WindowToScreen()
|
||||
{
|
||||
pixel = screeny + pixel;
|
||||
}
|
||||
m_ScreenY = pixel;
|
||||
m_ScreenY = pixel-m_AnchorScreenY;
|
||||
}
|
||||
|
||||
/* ScreenToWindow
|
||||
@ -1009,10 +1067,12 @@ void CMeterWindow::ScreenToWindow()
|
||||
if(m_WindowXFromRight == true)
|
||||
{
|
||||
pixel = (screenx + screenw) - m_ScreenX;
|
||||
pixel -= m_AnchorScreenX;
|
||||
}
|
||||
else
|
||||
{
|
||||
pixel = m_ScreenX - screenx;
|
||||
pixel += m_AnchorScreenX;
|
||||
}
|
||||
if(m_WindowXPercentage == true)
|
||||
{
|
||||
@ -1051,10 +1111,12 @@ void CMeterWindow::ScreenToWindow()
|
||||
if(m_WindowYFromBottom == true)
|
||||
{
|
||||
pixel = (screeny + screenh) - m_ScreenY;
|
||||
pixel -= m_AnchorScreenY;
|
||||
}
|
||||
else
|
||||
{
|
||||
pixel = m_ScreenY - screeny;
|
||||
pixel += m_AnchorScreenY;
|
||||
}
|
||||
if(m_WindowYPercentage == true)
|
||||
{
|
||||
@ -1097,6 +1159,8 @@ void CMeterWindow::ReadConfig()
|
||||
{
|
||||
m_WindowX = parser.ReadString(section, _T("WindowX"), m_WindowX.c_str());
|
||||
m_WindowY = parser.ReadString(section, _T("WindowY"), m_WindowY.c_str());
|
||||
m_AnchorX = parser.ReadString(section, _T("AnchorX"), m_AnchorX.c_str());
|
||||
m_AnchorY = parser.ReadString(section, _T("AnchorY"), m_AnchorY.c_str());
|
||||
|
||||
if (!m_Rainmeter->GetDummyLitestep())
|
||||
{
|
||||
@ -1108,18 +1172,6 @@ void CMeterWindow::ReadConfig()
|
||||
m_WindowY = ConvertToWide(tmpSz);
|
||||
}
|
||||
|
||||
//if(m_WindowX != 0 || m_WindowY != 0)
|
||||
//{
|
||||
// // TODO: check that pt is somewhere on screen
|
||||
//}
|
||||
|
||||
WindowToScreen();
|
||||
|
||||
//m_ScreenX=m_WindowX;
|
||||
//m_ScreenY=m_WindowY;
|
||||
|
||||
|
||||
|
||||
int zPos = parser.ReadInt(section, L"AlwaysOnTop", m_WindowZPosition);
|
||||
if (zPos == -1)
|
||||
{
|
||||
@ -1414,7 +1466,6 @@ void CMeterWindow::InitializeMeters()
|
||||
//}
|
||||
|
||||
Update(true);
|
||||
|
||||
ResizeWindow(true);
|
||||
}
|
||||
|
||||
@ -1444,6 +1495,7 @@ bool CMeterWindow::ResizeWindow(bool reset)
|
||||
|
||||
if (!reset && m_WindowW == w && m_WindowH == h)
|
||||
{
|
||||
WindowToScreen();
|
||||
return false; // The window is already correct size
|
||||
}
|
||||
|
||||
@ -1554,6 +1606,8 @@ bool CMeterWindow::ResizeWindow(bool reset)
|
||||
// Get the size form the background bitmap
|
||||
m_WindowW = m_Background->GetWidth();
|
||||
m_WindowH = m_Background->GetHeight();
|
||||
//Calculate the window position from the config parameters
|
||||
WindowToScreen();
|
||||
|
||||
if (!m_NativeTransparency)
|
||||
{
|
||||
@ -1571,6 +1625,7 @@ bool CMeterWindow::ResizeWindow(bool reset)
|
||||
{
|
||||
m_WindowW = w;
|
||||
m_WindowH = h;
|
||||
WindowToScreen();
|
||||
}
|
||||
|
||||
// If Background is not set, take a copy from the desktop
|
||||
@ -1875,16 +1930,16 @@ LRESULT CMeterWindow::OnTimer(WPARAM wParam, LPARAM lParam)
|
||||
Update(false);
|
||||
UpdateAboutStatistics();
|
||||
|
||||
if (m_KeepOnScreen)
|
||||
{
|
||||
int x = m_ScreenX;
|
||||
int y = m_ScreenY;
|
||||
MapCoordsToScreen(x, y, m_WindowW, m_WindowH);
|
||||
if (x != m_ScreenX || y != m_ScreenY)
|
||||
{
|
||||
MoveWindow(x, y);
|
||||
}
|
||||
}
|
||||
//if (m_KeepOnScreen)
|
||||
//{
|
||||
// int x = m_ScreenX;
|
||||
// int y = m_ScreenY;
|
||||
// MapCoordsToScreen(x, y, m_WindowW, m_WindowH);
|
||||
// if (x != m_ScreenX || y != m_ScreenY)
|
||||
// {
|
||||
// MoveWindow(x, y);
|
||||
// }
|
||||
//}
|
||||
}
|
||||
else if(wParam == MOUSETIMER)
|
||||
{
|
||||
@ -2386,8 +2441,8 @@ LRESULT CMeterWindow::OnNcHitTest(WPARAM wParam, LPARAM lParam)
|
||||
*/
|
||||
LRESULT CMeterWindow::OnSettingChange(WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
Refresh(false);
|
||||
m_Monitors.count = 0;
|
||||
Refresh(false);
|
||||
return DefWindowProc(m_Window, m_Message, wParam, lParam);
|
||||
}
|
||||
|
||||
|
@ -243,6 +243,8 @@ private:
|
||||
Gdiplus::Rect m_DragMargins;
|
||||
std::wstring m_WindowX; // Window's X-position in config file
|
||||
std::wstring m_WindowY; // Window's Y-position in config file
|
||||
std::wstring m_AnchorX; // Anchor's X-position in config file
|
||||
std::wstring m_AnchorY; // Anchor's Y-position in config file
|
||||
int m_WindowXScreen;
|
||||
int m_WindowYScreen;
|
||||
bool m_WindowXFromRight;
|
||||
@ -255,6 +257,14 @@ private:
|
||||
int m_WindowH; // Window's Height
|
||||
int m_ScreenX; // Window's X-postion on the virtual screen
|
||||
int m_ScreenY; // Window's Y-postion on the virtual screen
|
||||
bool m_AnchorXFromRight;
|
||||
bool m_AnchorYFromBottom;
|
||||
bool m_AnchorXPercentage;
|
||||
bool m_AnchorYPercentage;
|
||||
float m_AnchorXNumber; // Store the number portion from the config
|
||||
float m_AnchorYNumber; // Store the number portion from the config
|
||||
int m_AnchorScreenX; // Window's anchor X-postion
|
||||
int m_AnchorScreenY; // Window's anchor Y-postion
|
||||
static MULTIMONITOR_INFO m_Monitors; // Multi-Monitor info
|
||||
bool m_WindowDraggable; // True, if window can be moved
|
||||
int m_WindowUpdate; // Measure update frequency
|
||||
|
Loading…
Reference in New Issue
Block a user