JoshuaVL1988 Posted July 24, 2016 Share Posted July 24, 2016 On 10/21/2014 at 3:14 AM, NoelC said: Rudsec, for slightly rounded corners try one of theme resource files with Aero Glass for Win 8.1: http://Noel.ProDigitalSoftware.com/ForumPosts/themeatlas.png (with light caption glow for black font) http://Noel.ProDigitalSoftware.com/temp/themeatlas.png (with dark caption glow for light font) -Noel @NoelC can you please post the .layout file for this? I really like this one. Also, I'm on Windows 10 TH2. Link to comment Share on other sites More sharing options...
NoelC Posted July 24, 2016 Share Posted July 24, 2016 That was from before the time of .layout files, so I don't have one. Plus, I'm not sure anyone has all the numbers yet needed for the .layout for the newest Windows 10 release. Normally Big Muscle does some magic to extract those numbers from the system, and I'll bet he's waiting for the actual release. -Noel 1 Link to comment Share on other sites More sharing options...
JoshuaVL1988 Posted July 25, 2016 Share Posted July 25, 2016 6 hours ago, NoelC said: That was from before the time of .layout files, so I don't have one. Plus, I'm not sure anyone has all the numbers yet needed for the .layout for the newest Windows 10 release. Normally Big Muscle does some magic to extract those numbers from the system, and I'll bet he's waiting for the actual release. -Noel oohh, ok. Thanks for the info. =) Link to comment Share on other sites More sharing options...
bigmuscle Posted August 7, 2016 Share Posted August 7, 2016 On 24. 7. 2016 at 9:24 PM, NoelC said: That was from before the time of .layout files, so I don't have one. Plus, I'm not sure anyone has all the numbers yet needed for the .layout for the newest Windows 10 release. Normally Big Muscle does some magic to extract those numbers from the system, and I'll bet he's waiting for the actual release. -Noel There is no magic in it. Just a standard API for (unsigned int i = 1; i < iMaxPart; ++i) { RECT rc = { 0 }; if (GetThemeRect(hTheme, i, 0, TMT_ATLASRECT, &rc) == S_OK) { fprintf(f, "%u;0;8002=%u,%u,%u,%u\n", i, rc.left, rc.top, rc.right, rc.bottom); } } 1 Link to comment Share on other sites More sharing options...
Prado Posted August 7, 2016 Share Posted August 7, 2016 47 minutes ago, bigmuscle said: There is no magic in it. Just a standard API for (unsigned int i = 1; i < iMaxPart; ++i) { RECT rc = { 0 }; if (GetThemeRect(hTheme, i, 0, TMT_ATLASRECT, &rc) == S_OK) { fprintf(f, "%u;0;8002=%u,%u,%u,%u\n", i, rc.left, rc.top, rc.right, rc.bottom); } } .. A decision on when to expect in 1607? Link to comment Share on other sites More sharing options...
dencorso Posted August 7, 2016 Share Posted August 7, 2016 1 hour ago, Prado said: .. A decision on when to expect in 1607? Sure! Soon enough. Link to comment Share on other sites More sharing options...
dhjohns Posted August 8, 2016 Share Posted August 8, 2016 On 8/7/2016 at 7:26 AM, bigmuscle said: There is no magic in it. Just a standard API for (unsigned int i = 1; i < iMaxPart; ++i) { RECT rc = { 0 }; if (GetThemeRect(hTheme, i, 0, TMT_ATLASRECT, &rc) == S_OK) { fprintf(f, "%u;0;8002=%u,%u,%u,%u\n", i, rc.left, rc.top, rc.right, rc.bottom); } } And how do you use this? What extension? Link to comment Share on other sites More sharing options...
UCyborg Posted August 8, 2016 Share Posted August 8, 2016 It's just a code snippet written in C. You'd need the whole thing and Visual Studio to compile it. I haven't dug into theme related specifics so that's all I can say. 2 Link to comment Share on other sites More sharing options...
NoelC Posted August 15, 2016 Share Posted August 15, 2016 (edited) You could look at Big Muscle's current .layout file that he ships with his current beta for the Anniversary build. That's what I did to create this: Theme atlas PNG and associated .layout file: http://Noel.ProDigitalSoftware.com/ForumPosts/Win10/14393/RoundedCorners.zip -Noel Edited September 15, 2016 by NoelC Corrected link Link to comment Share on other sites More sharing options...
Mostly Harmless Posted August 16, 2016 Share Posted August 16, 2016 10 hours ago, NoelC said: You could look at Big Muscle's current .layout file that he ships with his current beta for the Anniversary build. That's what I did to create this: Theme atlas PNG and associated .layout file: http://Noel.ProDigitalSoftware.com/ForumPosts/10393/RoundedCorners.zip -Noel unfortunately, your link is dead... Link to comment Share on other sites More sharing options...
UCyborg Posted August 16, 2016 Share Posted August 16, 2016 (edited) Try this: http://noel.prodigitalsoftware.com/ForumPosts/Win10/14393/RoundedCorners.zip 14393 instead of 10393. And Win10 part. Edited August 16, 2016 by UCyborg 1 Link to comment Share on other sites More sharing options...
dafob Posted August 21, 2016 Share Posted August 21, 2016 On 8/15/2016 at 4:13 PM, NoelC said: You could look at Big Muscle's current .layout file that he ships with his current beta for the Anniversary build. That's what I did to create this: Theme atlas PNG and associated .layout file: http://Noel.ProDigitalSoftware.com/ForumPosts/10393/RoundedCorners.zip -Noel I've always been a big fan of your theme atlas files and now I'm at the point where I depend on them. I was wondering if you could provide this theme w/ no rounded corners like you did before. Thanks again for your hard work. Link to comment Share on other sites More sharing options...
NoelC Posted August 21, 2016 Share Posted August 21, 2016 (edited) On 8/16/2016 at 7:40 AM, UCyborg said: Try this: http://noel.prodigitalsoftware.com/ForumPosts/Win10/14393/RoundedCorners.zip 14393 instead of 10393. And Win10 part. Thank you! I corrected my post above. I usually test links but somehow I must have rushed through that one. Use a RoundRectRadius value of 11 with that, by the way, for the cleanest looking corners. 8 hours ago, dafob said: I've always been a big fan of your theme atlas files and now I'm at the point where I depend on them. I was wondering if you could provide this theme w/ no rounded corners like you did before. Thanks again for your hard work. You're welcome. Here's a very quick shot at that. Please let me know if you find anything wrong with it: http://Noel.ProDigitalSoftware.com/ForumPosts/Win10/14393/SquareCorners.zip -Noel Edited August 21, 2016 by NoelC Link to comment Share on other sites More sharing options...
UCyborg Posted August 21, 2016 Share Posted August 21, 2016 NoelC: I've played with RoundRectRadius a bit and have to ask, does it effect anything else except the top-right corner of the window? I figured value of 15 looks nicest to me, but there are still some redundant pixels in the remaining 3 corners of the window, bottom-left corner being the worst. Link to comment Share on other sites More sharing options...
NoelC Posted August 21, 2016 Share Posted August 21, 2016 (edited) As far as I can see, it affects all the corners. Keep in mind, in order to get it to take effect you either have to log off/on - or cause an immediate update to Aero Glass by changing the value using the AeroGlassGUI tool. If even in light of the above information you're seeing inconsistent corner radius handling, you should go ahead and report it as a bug to Big Muscle in the Experimental Builds thread. -Noel Edited August 21, 2016 by NoelC 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now