It is currently April 19th, 2024, 7:28 am

[Suggestion] Skin/meter templates

Report bugs with the Rainmeter application and suggest features.
walkingonthemoon97
Posts: 1
Joined: October 25th, 2018, 7:12 pm

[Suggestion] Skin/meter templates

Post by walkingonthemoon97 »

This is what Rainmeter should have: an easily seen option that allows one to insert visual templates (bases) of common skins/meters.

This will save a lot of time and confusion among RM newcomers. I would add more explanation but I feel as if many understand the point and many most likely will want this as a feature.
User avatar
SilverAzide
Rainmeter Sage
Posts: 2603
Joined: March 23rd, 2015, 5:26 pm

Re: [Suggestion] Skin/meter templates

Post by SilverAzide »

That's not what Rainmeter is... Rainmeter is the app that runs your code, it's not a code editor or designer. What I think you are looking for is something like this: https://forum.rainmeter.net/viewtopic.php?f=18&t=21358. Lots of prebuilt snippets that you can use to build your skin code. There's a syntax highlighting plugin for Notepad++ available as well.
Gadgets Wiki GitHub More Gadgets...
User avatar
CyberTheWorm
Posts: 860
Joined: August 22nd, 2016, 11:32 pm
Location: Surrey, B.C., Canada

Re: [Suggestion] Skin/meter templates

Post by CyberTheWorm »

You can make your own template
The only source of knowledge is experience. Albert Einstein
Deviant Art Page
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: [Suggestion] Skin/meter templates

Post by jsmorley »

There are no common skins...
matthewkwong
Posts: 1
Joined: July 25th, 2019, 12:08 am

Re: [Suggestion] Skin/meter templates

Post by matthewkwong »

I know this is an old topic, but anyway...

I believe the OP is trying to suggest the inheritance concept from OOP. In such case, the skin will be easier to manage.

e.g.
AbstractButton.ini
[MeterButtonTemplate]
Meter=Button
H=20
W=40
ButtonCommand=<command>

NotepadButton.ini
[MeterNotepadButton]
Meter=AbstractButton ; Such that the button will have H=20 and W=40 without setting explicitly
ButtonCommand=["Notepad"]
User avatar
eclectic-tech
Rainmeter Sage
Posts: 5391
Joined: April 12th, 2012, 9:40 pm
Location: Cedar Point, Ohio, USA

Re: [Suggestion] Skin/meter templates

Post by eclectic-tech »

matthewkwong wrote: July 25th, 2019, 12:15 am I know this is an old topic, but anyway...

I believe the OP is trying to suggest the inheritance concept from OOP. In such case, the skin will be easier to manage.

e.g.
AbstractButton.ini
[MeterButtonTemplate]
Meter=Button
H=20
W=40
ButtonCommand=<command>

NotepadButton.ini
[MeterNotepadButton]
Meter=AbstractButton ; Such that the button will have H=20 and W=40 without setting explicitly
ButtonCommand=["Notepad"]
There already is the option to use MeterStyles to accomplish pretty much the same ability. You can create a separate style section, or use any existing meter, to duplicate the style.