icons

Using FontAwesome 5.x with PrimeFaces 6.2+

十年热恋 提交于 2019-12-06 11:28:45
I was checking this question: How to use Font Awesome from webjars.org with JSF ant this question: FontAwesome with PrimeFaces with its answer https://stackoverflow.com/a/33070133/5113188 Hi I want to use the new icons of https://fontawesome.com/changelog/latest 5.5 version In my pom.xml file project... <dependency> <groupId>org.primefaces</groupId> <artifactId>primefaces</artifactId> <version>6.2</version> </dependency> <dependency> <groupId>org.primefaces.extensions</groupId> <artifactId>primefaces-extensions</artifactId> <version>6.2</version> </dependency> <dependency> <groupId>org

Fixed icon size in OpenLayers 3

久未见 提交于 2019-12-06 10:39:06
I searched for 2 hours now, but it's still not clear if it's possible or not in OL3. I would like my icons to be fixed size (not to the screen, but to the image map I'm using). I mean, it should cover the same area even if I'm zoomed out, and not covering the half of the map (like I was using a circle polygon, but I have complex Icons so I have to use it as point features). Is there any solution to it? Like in QGIS: MAP UNITS. I already have these: var jelekStyle = function(feature, resolution) { if(feature.get('tipus')=== 'falu') { icon = '00_ikonok/falu.png', size = [115, 233], scale = 0.05,

Wrapping an executable jar file with an icon

為{幸葍}努か 提交于 2019-12-06 09:36:27
Background: I created a simple GUI in java and can run that GUI by clicking its executable jar file. I created the GUI in java so that it could be ran on more than one OS. Question: Is there a way to make some sort of "wrapper icon" for the jar file so that when I click it (the icon) the GUI opens up? To be clear I am not talking about changing the .jar file icon, that is determined by the OS. I successfully converted the jar file to a .exe, .app and .sh file with the intent of running a cmd file that would determine the OS and run the appropriate file. But then I started feeling like I was

Old Delphi hide/show desktop icons method not working under Windows 7 64 Bit

◇◆丶佛笑我妖孽 提交于 2019-12-06 09:17:02
问题 I have a Delphi 2010 app which shows/hides the desktop icons under XP fine. However under my Window 7 test environment (happens to be 64 bit) the icons don't disappear. Here is the critical code I am using (for the hide): ShowWindow(FindWindow(nil, 'Program Manager'), SW_HIDE ); I have found I can set the registry: [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "HideIcons"=dword:00000001 And that works fine if I restart windows (or kill explorer and restart it

“Invalid Icon Path” - Error returned from Apple App Store Team

大城市里の小女人 提交于 2019-12-06 08:41:01
问题 This is my first time submitting something to the App Store, and I am having a lot of issues. First off, let me say that the application has been built with PhoneGap , using the Cordova 1.9.0 framework . The web application end of it is fine, validates W3, and runs perfectly in browser. I have rebuilt this project from the ground up after being unable to fix the issue manually, but that did not rectify it either. Below is the error that Apple sends back to me... Invalid Icon Path - No icon

How do I round corners of myapp's icon

社会主义新天地 提交于 2019-12-06 07:31:41
In simulator mode, my app has an icon with round corners, but on a real iPhone, the corners aren't rounded. Corners get automatically rounded if you install via MobileInstallation (from iTunes, Xcode or App Store). If you're building the package and installing it into /Applications manually or with cydia/apt, you have to make a rounded icon yourself. You can find the images used to round the corners and add reflection in /System/Library/Frameworks/UIKit.framework/Other.artwork, the first 3 images are the mask, reflection and shadow. You can extract the .artwork file with this script here by

Threaded loading of icons in Delphi

淺唱寂寞╮ 提交于 2019-12-06 07:18:23
问题 Using Delphi 2009, trying to make a launcher. In order to make it "snappy" I would really like to load icons in a background thread. I have used the solution found here : Can 48x48 or 64x64 icons be obtained from the Vista Shell? This works fine, if NOT run in a thread. As soon as I put it in a thread, some icons are not "fetched", or being some kind of generic icon. I even tried serializing the threads (making them obsolote, in effect) but it yields the same results. So, the question is: How

Xcode document icon not updating

流过昼夜 提交于 2019-12-06 06:51:07
I've created an .icns and set it in the Document Types section of my project, but my documents' icons in Finder remain generic. I've noticed that if I change my document type's file extension, the icon displays. Is there a cache I need to clear or some other way to update the icon without changing the file extension? To force refresh icon put this into your terminal /System/Library/Frameworks/ApplicationServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user; killall Dock Mavericks: /System/Library/Frameworks/CoreServices

How can I get MessageBox icons in Windows 8.1

被刻印的时光 ゝ 提交于 2019-12-06 06:22:27
问题 I want to get the MessageBoxIcons, that get displayed when the user is presented with a MessageBox . Earlier I used SystemIcons for that purpose, but now it seems that it returns icons different than the ones on the MessageBox . This leads to the conclusion that in Windows 8.1 SystemIcons and MessageBoxIcons are different. I know that icons are taken using WinApi MessageBox, but I can't seem to get the icons themselves in any way. I would like to ask for a way of retrieving those icons. 回答1:

Ionic app icon not change in android

[亡魂溺海] 提交于 2019-12-06 05:35:56
问题 I have project in ionic , I already set icon using ionic CLI . In iOS the icon is changed, but in android its not changed. Here is my config.xml: <platform name="android"> <icon src="resources/android/icon/drawable-ldpi-icon.png" density="ldpi"/> <icon src="resources/android/icon/drawable-mdpi-icon.png" density="mdpi"/> <icon src="resources/android/icon/drawable-hdpi-icon.png" density="hdpi"/> <icon src="resources/android/icon/drawable-xhdpi-icon.png" density="xhdpi"/> <icon src="resources