Where can I find more themes for VS2012? - visual-c++

I have downloaded the VS2012 Theme editor but would now like to to find more themes for it. Specifically, I am after .vstheme files, but haven't been able to find any. I'm hoping to get a nice dark theme that works with the theme editor. I am not interested in settings files as used in VS2010. I write in C++ if that is relevant.

I found this site to be pretty good with a great mix of themes.
One with actual *.vstheme extension: http://studiostyl.es/schemes/c-dark-scheme-for-use-with-expression-dark-theme

Related

Can we use Android-Studio Translations Editor for Flutter?

Translations editor was very good in dealing with strings and translating it to many languages. I wonder if I could use it for flutter apps.
if(yes) {
tell me how;
}else{
tell me the best way to translate texts in flutter;
}
thanks
now I think we couldn't use it.
so, for now, I can use excel to make CSV file of strings and use flappy_translator package to use it in a flutter app.
if there's a way to use android studio translations editor or there's a better way, please tell me.
So you want the handy Android Studio Translation Editor, however it only works with
strings.xml in a res/values folder in native Android projects, as it seems.
But I can offer you something similar. I found the Android Studio Plugin Easy i18n
Go to File->Settings->Plugins (windows) and search for the plugin.
After Installation, you can work with JSON files, I put them in assets/translations:
And added the dependency to the whole folder in my Pubspec.yaml:
assets:
- assets/translations/
And if you open the Editor via View->Tool Windows->Easy i18n, you can edit them, very similar to the Android Studio Translation Editor:
I use the values from the JSON files with the Easy Localization plugin.
Disclaimer: I don't think the authors of Easy i18n and Easy Localization are the same team, at least as I can tell. And I am in no way related to these projects/authors. This is just what worked for me. On my journey, I stumbled across this StackOverFlow post multiple times, so I thought I'd share.

Where can I find Theme Editor in Android Studio?

I searched everywhere. I even used "Search Everywhere" tool and it showed nothing.
The evidence of disappearing Theme Editor
So, guys can you help me with that a little bit?
Unfortunately Theme Editor for Android studio 3 has been removed for no good reason. See for yourself here https://issuetracker.google.com/issues/119271605
Just updated my Android Studio and alas, my Theme Editor has disappeared too. Take a look at this issue, apparently its been disabled and is now obsolete.

Android Studio Plugin - Show Image In Editor

I'd like to be able to display an image below a class-level javadoc in Android Studio. My assumption is that I should write a plugin to make this happen.
Does anyone know what I need to do to get an image (JPEG or PNG) to display below a class-level javadoc comment in a Java class file?
I looked into basic information about creating an IntelliJ IDEA plugin but I have no idea where to look to accomplish my task.
This is not possible in the current version of IntelliJ IDEA. The editor can display only text, and does not support embedding of non-text things such as an image file.
You can display images on hover, or in popups, or in dialogs, but not within the editor itself.
Do you want the image to show in the class' source code itself? As an aside, images in Javadocs will show when you view the formatted javadoc view the Quick documentation action (Windows/Linux: Ctrl+Q or Mac: ^J)
If you still want the image to show in the source code, then yes, you will need to write a plug-in. You can look at the Information for Plugin Developers
Setting Up the Plugin Development Environment section of this web page - https://www.jetbrains.com/idea/plugins - to get started. You'll have to dig through source code to try and find some ideas for how to display an image in the source code. As much as I love IntelliJ IDEA, there plug-in documentation is a bit weak. When I wrote a plug-in, I had to do a lot of looking through the IDEA code to find code that was doing things similar to what I wanted to do. I also downloaded the source code for some of the better plug-ins out there and looked through them.
Finally, you can ask for some guidance in the IntelliJ IDEA Open API and Plugin Development forum. That forum is monitored by JetBrains developers. Your best bet to getting answers in that forum is to ask very specific questions. Do not try and get someone to explain from start to finish what you need to do. As you do each step, ask questions about what you are trying to do.

Eclipse shortcuts in Resharper

I just started with Visual Studio + Resharper, coming from Java development with Eclipse. I can navigate eclipse pretty quickly, because I memorized all the shortcuts I need. Now it seems like Resharper knows all what eclipse can do (probably even more), but its mapped to different keys, and i really don't feel like learning a new set of shortcuts for the same stuff.
So my question:
Where is Resharpers shortcut configuration file (if there is any)? I saw a bunch of .xml files in it's bin directory, but I'm not sure it's the right place to look. Couldn't find anything in the docs, only how to change the shortcuts from VS one-by-one.
Is there an eclipse preset? I found this on github, but there is absolutely no explanation, on what to do with it, and in the file name it states, it's for r# 5.0 and i have 8.1 (not sure if there is any difference in the configuration part).
I found this file using Google Search: https://github.com/chrismo/jetbrains.keymaps/blob/master/resharper.5.0.eclipse.shortcuts.vs2010.vssettings
You can download it and use Visual Studio's Tools -> Import and Export Settings ... command to import it.
Resharper comes with only two default keyboard schemes, 'Visual Studio' or 'IntelliJ IDEA' (see here). Choose one that you are most happy with (under Resharper->Options...->Environment->Keyboard & Menus) and change any shortcuts in Visual Studio (under Tools->Options...->Environment->Keyboard) to match the ones in Eclipse. It may be easier just to re-learn one of the default schemes though.

Where is Themes.dll?

I have been looking at the new Bootstrap theme from Wiggleware, which goes well beyond any other Orchard Theme I have seen. There is quite a bit of code associated with this theme but I have not been able to figure out how this is compiled. There is no Themes\bin directory and no Themes.dll that I can find anywhere. So where does the code end up?
I ask because I need to do something similar but whenever I try to set up a theme the same way it only works under the debugger and won't deploy correctly (namespace name missing).
This is a stupid question that arises only because I didn't understand how Orchard Themes are laid out in VS. For the sake of anyone else making this mistake, please note that there are two types of Orchard theme:
'Ordinary' themes live under the 'Themes' Theme and so appear in the Solution Explorer under Themes/Themes. These themes do not have their own project and just share the 'Themes' project.
'Project' themes have their own project and in the Solution Explorer they appear as Themes/MyNewTheme. These themes compile just like a module.
Hope that helps

Resources