active questions tagged preferences - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T23:41:51Z http://stackoverflow.com/feeds/tag/preferences http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1861697/managing-different-windows-in-apples-interface-builder 0 Managing different windows in Apple's Interface Builder tilish 2009-12-07T17:51:35Z 2009-12-07T17:51:35Z <p>I'm working on Interface Builder. I don't like the fact that I have to manage multiple windows. For example if I open two xib files I can easily have six different windows scattered across my window. One problem is bringing these windows together to make a sensible arrangement. Another problem is Interface Builder doesn't remember this arrangement if I close it reopen it again. Does Interface Builder have an all-in-one view? How do you deal with this?</p> http://stackoverflow.com/questions/1551302/how-to-store-simple-name-value-pairs-in-an-ldap-directory 1 How to store simple name value pairs in an ldap directory rmarimon 2009-10-11T18:03:43Z 2009-12-06T23:35:51Z <p>I'm creating a user repository ldap backend for a series of web applications sharing the same users. I would like to store preference information in this ldap location. This way everything related to users is maintained in the same place and can be shared among all applications.</p> <p>I'm thinking of a general structure like this:</p> <pre> ou=People,dc=domain,dc=com uid=jdoe,ou=People,dc=domain,dc=com ou=Preferences,uid=jdoe,dc=domain,dc=com ou=firstpreference,ou=Preferences,uid=jdoe,dc=domain,dc=com value : 123 value : 456 </pre> <p>I have several questions:</p> <ol> <li><p>Is jsut below the user entry the right place to start storing the preferences? What objectClass should this entry be? I'm experimenting with organizationalUnit but it doesn't seem right.</p></li> <li><p>What is the best way to store name value pairs for the preferences? Here my best guest is to create an entry just below the preferences having a name and create the value just under it. This way I can account for multiple values. What should be the correct objectClass for those entries?</p></li> </ol> <p>I'm working with OpenLDAP and wouldn't like to change the schemas that come with it. Is there a way to set this up using available schemas?</p> http://stackoverflow.com/questions/1607551/soap-or-rest-as-a-client 3 SOAP or REST as a Client MarkPowell 2009-10-22T14:18:04Z 2009-12-03T07:21:51Z <p>I see multiple questions asking which is better, SOAP or REST from the development of the Web Service itself. However, not a lot of discussion of the pros/cons from the client perspective. If you were to write an Application and have a choice between two Web Service APIs that are similar in every way except one is SOAP and the other is REST, which would you choose and why? REST has the added benefit of allowing either XML or JSON, is there any other major difference between the two?</p> http://stackoverflow.com/questions/1460761/howto-hide-a-preference-page-in-an-eclipse-rcp 2 Howto hide a preference page in an eclipse RCP Bosso 2009-09-22T15:26:06Z 2009-11-25T11:35:46Z <p>I have an eclipse rcp and want to hide the security and help prerence pages. How can I do that?</p> http://stackoverflow.com/questions/1754734/preferenceactivity-nullpointer-error 0 PreferenceActivity NullPointer Error unknown (google) 2009-11-18T09:28:42Z 2009-11-18T09:56:32Z <p>I keep getting nullpointer exception when i switch to my preferenceactivity. I have no idea what wrong but i keep getting a error when i load in my preference which is done programmitically. </p> <pre><code>public class SettingsFrontEnd extends PreferenceActivity implements OnSharedPreferenceChangeListener { public static final String NO_SELECTION = "0&amp;#8243"; public static final String PASSWORD_KEY = "PASSWORDKEY"; public static final String SELECTED_TARGET_KEY = "SelectedTargetKey"; public final String QUICK_CONTACT_KEY = "QUICK_CONTACT_KEY"; private android.content.SharedPreferences.Editor editor; private HelpiDB mDbHelper; private EditTextPreference passwordPreference; private SharedPreferences pref; private CheckBoxPreference quickcontactPreference; private ListPreference targets; @Override public boolean onCreateOptionsMenu(Menu menu) { </code></pre> <p>MenuInflater inflater = getMenuInflater(); inflater.inflate(R.menu.main_menu, menu);</p> <p>return true; }</p> <pre><code>@Override public boolean onOptionsItemSelected(MenuItem item) { </code></pre> <p>switch (item.getItemId()) { case R.id.settings_menu:</p> <pre><code> break; </code></pre> <p>case R.id.contact_menu: if (targets.getValue().equals(NO_SELECTION)) { Toast.makeText(this, "Choose a Main COntact", Toast.LENGTH_LONG).show(); } else { Intent myIntent = new Intent(SettingsFrontEnd.this, ContactFrontEnd.class); startActivityForResult(myIntent, 0); } break; case R.id.map_menu: if (targets.getValue().equals(NO_SELECTION)) { Toast.makeText(this, "Choose a Main COntact", Toast.LENGTH_LONG).show(); } else { Intent myIntent = new Intent(SettingsFrontEnd.this, ContactFrontEnd.class); startActivityForResult(myIntent, 0); } break; case R.id.insert_menu: if (targets.getValue().equals(NO_SELECTION)) { Toast.makeText(this, "Choose a Main COntact", Toast.LENGTH_LONG).show(); } else { Intent myIntent = new Intent(SettingsFrontEnd.this, InsertFrontEnd.class); startActivityForResult(myIntent, 0); } break;</p> <p>default: // put your code here } return false; }</p> <pre><code>@Override public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) { </code></pre> <p>if (key.equals(SELECTED_TARGET_KEY)) { editor = pref.edit(); editor.putString(key, targets.getValue()); } if (key.equals(PASSWORD_KEY)) { editor = pref.edit(); editor.putString(key, passwordPreference.getText()); } if (key.equals(QUICK_CONTACT_KEY)) { editor = pref.edit(); editor.putBoolean(QUICK_CONTACT_KEY, quickcontactPreference.isChecked()); }</p> <pre><code>} @Override protected void onCreate(Bundle savedInstanceState) { </code></pre> <p>super.onCreate(savedInstanceState); pref.registerOnSharedPreferenceChangeListener(this);</p> <p>setPreferenceScreen(createPreferenceHierarchy()); }</p> <pre><code>private PreferenceScreen createPreferenceHierarchy() { </code></pre> <p>PreferenceScreen root = getPreferenceManager().createPreferenceScreen(this); PreferenceCategory dialogBasedPrefCat = new PreferenceCategory(this); dialogBasedPrefCat.setTitle(R.string.title_preferences); root.addPreference(dialogBasedPrefCat); // builds list from DB mDbHelper = new HelpiDB(this); mDbHelper.open(); Cursor c = mDbHelper.getCheckedContacts(); startManagingCursor(c); int count = c.getCount(); CharSequence[] entries = new CharSequence[count]; CharSequence[] entryValues = new CharSequence[count]; c.moveToFirst(); for (int i = 0; i &lt; count; i++) { entries[i] = c.getString(c.getColumnIndexOrThrow(HelpiDB.KEY_NAME)); entryValues[i] = c.getString(c.getColumnIndexOrThrow(HelpiDB.KEY_ID)); c.moveToNext(); } targets = new ListPreference(this); targets.setEntries(entries); targets.setEntryValues(entryValues); targets.setDefaultValue(NO_SELECTION); targets.setDialogTitle("Main Contact");</p> <p>targets.setKey(SELECTED_TARGET_KEY); targets.setTitle("Main Contact"); targets.setSummary("First person contacted using HelpiCall"); dialogBasedPrefCat.addPreference(targets); // add other preference screens passwordPreference = new EditTextPreference(this); passwordPreference.setTitle("Password"); passwordPreference.setSummary("Password need for others to find you"); passwordPreference.setDialogTitle("Password"); passwordPreference.setKey(PASSWORD_KEY); root.addPreference(passwordPreference);</p> <p>quickcontactPreference = new CheckBoxPreference(this); quickcontactPreference.setTitle("Quick Contact"); quickcontactPreference.setSummary("HelpiCall upon start up"); quickcontactPreference.setDefaultValue(false); quickcontactPreference.setKey(QUICK_CONTACT_KEY); root.addPreference(quickcontactPreference);</p> <p>return root; }</p> <p>}</p> http://stackoverflow.com/questions/1677739/what-is-the-suffix-called-in-this-example-helloworld-exeurlsbgzldmathiegtnjmn 0 What is the suffix called in this example: HelloWorld.exe_Url_sbgzldmathiegtnjmnawytpet03ycanv? Adam Kane 2009-11-05T01:15:54Z 2009-11-05T01:15:54Z <p>Hello,</p> <p>I have a question about the very long random looking suffix that is appended to directories created in the AppData folder when saving user preferences from a C# .NET Windows forms application.</p> <p>For example:</p> <p>C:\Users\Bob\AppData\Local\Acme\HelloWorld.exe_Url_ei0yyv33jvrgjqybolgkilwx2u1i32lq\</p> <p>The problem that I'm having is that I don't know the name of this thing other than "the really really long string of junk appended to the filename", so I'm not able to post questions about it or search for answers.</p> <p>Is there a name for this? Is it a "strong name" or "url security string", etc?</p> <p>Thanks!</p> http://stackoverflow.com/questions/840763/using-java-util-prefs-preferences-in-jython 0 Using java.util.prefs.Preferences in Jython Eric Wendelin 2009-05-08T16:45:11Z 2009-11-04T14:15:11Z <p>I seem to be having trouble storing Java preferences using a Jython script. If in Jython 2.5 beta I use:</p> <pre><code>clazz = Class.forName('mypackage.myclass') prefs = Preferences.userNodeForPackage(clazz); # or Preferences.userRoot() prefs.put('propertyname', 'yes') </code></pre> <p>The preferences are not stored. If I then add:</p> <pre><code>prefs.flush() </code></pre> <p>I get</p> <blockquote> <p>java.util.prefs.BackingStoreException: Couldn't get file lock.</p> </blockquote> <p>I am currently running this on Linux and Unix using Java 1.6. I'm hoping that I'm missing something obvious, since my Java applications can successfully use java.util.prefs.Preferences on the same system.</p> <p>Any help would be greatly appreciated.</p> http://stackoverflow.com/questions/1672274/easily-select-default-usings-for-project-namespaces-and-subamespaces 2 Easily select default usings for project namespaces and subamespaces RCIX 2009-11-04T07:52:05Z 2009-11-04T08:21:23Z <p>Is there an easy way in Visual Studio to assign default usings when i make a new file in a certain (sub)namespace in my project?</p> http://stackoverflow.com/questions/675864/where-are-java-preferences-stored-on-mac-os-x 2 Where are Java preferences stored on Mac OS X? Alessandro Vernet 2009-03-24T01:30:25Z 2009-11-02T22:55:15Z <p>On Windows, the Java preferences, which you access in your application from java.util.prefs.Preferences are stored in the registry. Where are those stored on Mac OS X?</p> http://stackoverflow.com/questions/1649234/using-nsuserdefaults-from-javascript-webapp 0 Using NSUserDefaults from javascript webapp N. Benzini 2009-10-30T11:17:22Z 2009-10-30T13:06:17Z <p>Hi! I need to store and access preferences (like colour, etc.) from a javascript webapp.. Is there some webkit access to the NSUserDefaults? (or maybe CFPreferences ?)</p> http://stackoverflow.com/questions/1553006/correct-way-to-restore-firefox-preferences-when-add-on-uninstalled-by-external-ap 2 Correct way to restore Firefox preferences when Add-On uninstalled by external application rwired 2009-10-12T06:22:55Z 2009-10-26T13:55:18Z <p>I have written an application suite on Windows which amongst other things installs a Firefox add-on which once run modifies the Firefox network preferences by interfacing with nsIPrefService.</p> <p>The extension itself resides in a folder under <em>Program Files</em> along with other parts of the application which work together with each other.</p> <p>Since the application consists of a number of components, the correct way to uninstall it is via the Control Panel or via an uninstall shortcut I provide for the users.</p> <p>I have no control over whether Firefox will be running or not when the user chooses to uninstall (possibly I could try to detect if it's running in the uninstaller and request the user close it to continue). </p> <p>Since the purposes of the uninstaller is to remove all traces of the program from the end-users system i.e:</p> <ul> <li>all the files under the <em>Program Files</em> folder, including the extension components</li> <li>remove the add-on from Firefox (by removing the registry key under HKEY_CURRENT_USER\Software\Mozilla\Firefox\Extensions, causing the add-on to unregister on next Firefox restart)</li> <li>remove application specific registry keys</li> </ul> <p>Then after uninstall there isn't any of my code left on the users system capable of restoring the network preferences to what they were before the component was installed. This results in end-users not being able to browse the web and being <em>very frustrated!</em></p> <p>The only way I can figure out how to do this at the moment is to have my component write to the window's registry the location of the users profile folder - which I can do with my add-on:</p> <pre><code>Components.classes["@mozilla.org/file/directory_service;1"] .getService(Components.interfaces.nsIProperties).get("ProfD", Components.interfaces.nsIFile).path </code></pre> <p>And then have my uninstaller modify the prefs.js file in that location directly. <strong>But this will only work if I can guarantee Firefox isn't running during uninstall</strong> (since prefs.js is re-written on FF close)</p> <p>To me this is not an elegant solution:</p> <ul> <li>It seems not to be future proof since it is dependent on the format and symbols used prefs.js which may change in future FF releases. </li> <li>Firefox has a nasty habbit of not always closing properlly (sometimes <em>other</em> installed add-ons prevent it from completely unloading from memory. This would break my uninstaller).</li> <li>This wouldn't work (without elaborate modification) if the user has multiple FF profiles setup all using my add-on.</li> </ul> <p>Is there a better or "standard" way to achieve this simple task?</p> http://stackoverflow.com/questions/1562336/tab-vs-space-preferences-in-vim 9 Tab Vs Space preferences in Vim nelstrom 2009-10-13T19:15:28Z 2009-10-24T22:51:41Z <p>Vim is very accommodating when it comes to tab Vs. space preferences. As I understand it, the <code>tabstop</code> setting indicates the width of a tab character. The <code>shiftwidth</code> setting specifies how many columns to increment/decrement when using the <kbd>&lt;&lt;</kbd> and <kbd>>></kbd> commands, whereas the <code>softtabstop</code> setting influences the amount of whitespace to be inserted when you press the <kbd>Tab</kbd> key in insert mode. If <code>expandtab</code> is on, the tab key inserts <code>softtabstop</code> number of space characters. Whereas with <code>expandtab</code> switched off, pressing the <kbd>Tab</kbd> key inserts a the smallest possible number of tab+space characters that matches <code>softtabstop</code>. (Please correct me if I'm wrong.)</p> <p>This final point makes me wonder: is there a practical case where you wouldn't want <code>shiftwidth == tabstop &amp;&amp; tabstop == softtabstop</code>? I can't think of one. As far as I am concerned, it would be most convenient if I could set all 3 of these to the same value, in one single assignment. e.g. calling:</p> <pre><code>:set stab=4 </code></pre> <p>which would be equivalent to running:</p> <pre><code>:set tabstop=4 softtabstop=4 shiftwidth=4 </code></pre> <p>Can anyone suggest how this could be done?</p> <p><hr /></p> <h2><em>UPDATE</em></h2> <p><strong>Thanks for the replies so far from <em>too much php</em>, <em>hobbs</em> and <em>kaiser.se</em>. Rather than reply to each individually, I'm updating the question here.</strong></p> <h2>Softtabstop with expandtab switched off</h2> <p>I said above that with expandtab switched off, pressing the Tab key inserts a the smallest possible number of tab+space characters that matches <code>softtabstop</code>. I stand by that, but I think I need to explain what I meant. I shall attempt to do so by way of a few examples. To follow along, run <code>:set list</code> so that you can see tab characters.</p> <p><code>tabstop=4 softtabstop=2 shiftwidth=4 noexpandtab</code></p> <p>In insert mode, pressing the tab key inserts 2 space characters. Press the tab key a second time, and instead of inserting two more space characters (for a total of 4 space characters) it replaces the previous 2 spaces with a single tab character. Tabstop is set to 4, so a single tab character has the same width as 4 spaces. </p> <p><code>tabstop=4 softtabstop=6 shiftwidth=4 noexpandtab</code></p> <p>In insert mode, pressing the tab key inserts 1 tab character plus 2 spaces. The tab character has a width of 4, so the total width is 6, and this is achieved using 3 characters. Pressing the tab key a second time inserts two tab characters, and removes the two spaces that were inserted previously. The total width is 12, and this is achieved using 3 characters.</p> <p>In both of these examples, Vim inserts the minimum possible number of tab+space characters that matches softtabstop. </p> <p>If I am working with expandtab switched off, I can't see myself wanting the extra granular control that can be achieved by setting softtabstop to a different value from tabstop. It would still be useful for me to be able to set <code>tabstop</code>, <code>softtabstop</code> and <code>shiftwidth</code> to the same value with a single command.</p> <h2>Does expandtab make softtabstop redundant?</h2> <p><code>tabstop=4 softtabstop=0 shiftwidth=4 expandtab</code></p> <p>In insert mode, pressing the tab key inserts 4 spaces. Pressing the delete key deletes a single space - so you have to backspace 4 times if you hit the tab key by accident.</p> <p><code>tabstop=4 softtabstop=4 shiftwidth=4 expandtab</code></p> <p>In insert mode, pressing the tab key inserts 4 spaces. Pressing the backspace key deletes 4 spaces.</p> <p>If I am working with <code>expandtab</code> switched on, I would prefer the delete key to remove the same amount of whitespace as the tab key inserts. So in this case, too, I feel that it would be useful to be able to assign the same value to <code>tabstop</code>, <code>softtabstop</code> and <code>shiftwidth</code> simultaneously.</p> <h2>A shortcut would still be useful</h2> <p>It's great that Vim provides so much flexibility, but I can't see myself needing it. I just want to be able to choose the width of a tab, and whether it is a 'hard' tab (using a tab character) or a 'soft' tab (made up of spaces). Toggling between hard and soft tabs is easy enough (<code>:set expandtab!</code>), but I wish it was more straightforward to set the width of tab, without having to fiddle with 3 different parameters. </p> <p>So my proposed suggestion for something like <code>:set stab=4</code> still sounds good to me.</p> http://stackoverflow.com/questions/1618966/iphone-sdk-preferences 0 iPhone SDK: Preferences unknown (google) 2009-10-24T20:19:43Z 2009-10-24T20:19:43Z <p>I wanted an entire page of text(multiple lines) in my settings similar to the one on iphone: <strong>settings->general settings->About->Legal</strong></p> <p>I have not been able to do so. I tried entering title in PSGroupSpecifier, it gives me multiple lines but with a gray background. i wanted a white background. Any help would be highly appreciated.</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1562633/setting-vim-whitespace-preferences-by-filetype 2 Setting Vim whitespace preferences by filetype nelstrom 2009-10-13T20:06:21Z 2009-10-16T06:04:27Z <p>At my work, I am required to follow the house style for indentation, which goes as follows:</p> <ul> <li>2 spaces when coding html and ruby</li> <li>tabs when coding javascript, with tabwidth=4 recommended</li> </ul> <p>What is the best way to specify different whitespace preferences per filetype?</p> http://stackoverflow.com/questions/1564119/more-vs-less-functions 2 More vs Less Functions yodie 2009-10-14T03:40:26Z 2009-10-14T06:37:26Z <p>I had a little argument, and was wondering what people out there think:</p> <p>In C++ (or in general), do you prefer code broken up into many shorter functions, with main() consisting of just a list of functions, in a logical order, or do you prefer functions only when necessary (i.e., when they will be reused very many times)? Or perhaps something in between?</p> http://stackoverflow.com/questions/536175/can-you-put-a-button-in-the-preferences-for-your-iphone-app 2 Can you put a button in the Preferences for your iPhone app? prefqguy 2009-02-11T09:58:38Z 2009-10-09T22:52:56Z <p>I'm building an iphone app, and I wanna use the iPhone's built in Preferences stuff. It looks like I put options in there, but I'm interested in putting a Reset button in the Prefs. I see that Apple's built-in apps like Safari have buttons in their prefs (Clear History, Clear Cookies, etc). I don't see a way to do this for SDK apps. Help!</p> http://stackoverflow.com/questions/1546005/iphone-and-nsuserdefaults 0 iPhone and NSUserDefaults Alasdair Allan 2009-10-09T20:54:53Z 2009-10-09T22:07:09Z <p>In my <em>viewWillLoad:</em> method I'm currently doing something along these lines:</p> <pre><code>- (void)viewWillAppear:(BOOL)animated { NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; if ( [defaults boolForKey:@"enabled_preference"] ) { ... } else { ... } [super viewWillAppear:animated]; } </code></pre> <p>If I build and run the application before opening the preference pane (built using a normal <em>Settings.bundle</em>) then the bool seems to be <em>NO</em> (or more probably <em>nil</em>) rather than the default <em>YES</em>. However if I open the Settings application and look at the application preference pane before I open the application, everything works as expected. </p> <p>I'm presuming that the application preferences aren't initialized and I should initialise them to the default value (if not already set) in the application delegate. Can someone confirm this? Or am I missing something else blindingly obvious here?</p> http://stackoverflow.com/questions/1141388/cocoa-notification-on-nsuserdefaults-value-change 0 Cocoa - Notification on NSUserDefaults value change? SirRatty 2009-07-17T03:58:40Z 2009-10-01T16:42:27Z <p>Let's say I have a key @"MyPreference", with a corresponding value stored through NSUserDefaults.</p> <p>Is there a way to be Notified when the value is modified?</p> <p>Or could it be done through bindings? (But this case, instead of binding the value to a UI element, I wish my object to be notified of the change, so that I can perform other tasks.)</p> <p>I am aware that NSUserDefaultsDidChangeNotification can be Observed, but this appears to be a all-or-nothing approach, and there does not appear to be a mechanism there to get at the specific key-value-pair that was modified. (Feel free to correct.)</p> http://stackoverflow.com/questions/1459288/explicit-or-implicit-execution-control-statement-use 0 Explicit or implicit execution control statement use Andrei Rinea 2009-09-22T10:30:48Z 2009-09-22T12:48:20Z <p>I sometimes use</p> <pre><code>if (this._currentToolForeColor.HasValue) return this._currentToolForeColor.Value; else throw new InvalidOperationException(); </code></pre> <p>other times I use</p> <pre><code>if (this._currentToolForeColor.HasValue) return this._currentToolForeColor.Value; throw new InvalidOperationException(); </code></pre> <p>The two are equivalent, I know, but I am not sure which is the best and why.</p> <p>This goes even further as you can use other execution-control statements such as brake or continue :</p> <pre><code>while(something) { if(condition) { DoThis(); continue; } else break; } </code></pre> <p>versus </p> <pre><code>while(something) { if(condition) { DoThis(); continue; } break; } </code></pre> <p>EDIT 1 : Yes the loop example(s) suck because they are synthetic (i.e.: made up for this question) unlike the first which is practical.</p> http://stackoverflow.com/questions/1200340/storing-very-granular-user-preferences 0 Storing Very Granular User Preferences Thody 2009-07-29T13:36:58Z 2009-09-22T06:57:38Z <p>I've seen a few questions on here about storing user preferences, but they seem to be referring mostly to a fairly minimal set of preferences. I'm currently working on a highly customizable web app, which will need to store a great number of preferences, and I'm struggling with how to store them.</p> <p>The kind of preferences I'll be storing include booleans for displaying specific tooltips, arrangement of various content panels on a page, which page to display after login, default values for specific form fields, etc. All-in-all, I'm expecting there will be 50+ preferences of this type for each user, the data being mostly booleans and integers.</p> <p>I'm not a big fan of serialization, but I'm concerned about the scalability of storing each preference as an individual row. Thoughts?</p> http://stackoverflow.com/questions/1442098/should-we-deprecate-the-remember-me-checkbox-and-start-assuming 4 Should we deprecate the "Remember Me" checkbox and start assuming? Josh Stodola 2009-09-18T00:49:24Z 2009-09-18T01:46:52Z <p>I've been thinking about this quite a bit lately, and I would like some feedback from this wonderful community. Is it safe to assume that a user wants to be remembered when they login? And if they are using a public computer, is it safe to assume that they are smart enough to logout before leaving?</p> http://stackoverflow.com/questions/1401791/implement-a-radiobuttonpreference-in-android 1 Implement a RadioButtonPreference in Android Tawani 2009-09-09T20:06:08Z 2009-09-09T20:14:01Z <p>How can you implement a RadioButtonPreference in android? Just like the CheckBoxPreference.</p> <p>Are there any workarounds?</p> http://stackoverflow.com/questions/1302831/xcode-changing-double-clicking-file-behavior 0 Xcode: changing double clicking file behavior Corey Floyd 2009-08-19T21:53:51Z 2009-08-19T22:03:41Z <p>One of my projects suddenly had its double-clicking behavior changed and I don't know how to change it back.</p> <p>The behavior I want:</p> <p>Double clicking a source code file opens up a new window.</p> <p>The behavior I have:</p> <p>Double clicking a source code file opens the file in the existing window. This results in only allowing one window open for the project at any time.</p> <p>Needless to say this is a bit frustrating. I can't find any preference that seems to control this. It seems to be a per-project preference (it is only happening in one project). Any ideas?</p> <p>Note: I am using the condensed layout.</p> <p>Note 2: "Open in Separate Editor" does not work.</p> http://stackoverflow.com/questions/1097070/why-doesnt-vs-2008-ide-remember-my-preferences 2 Why doesn't VS 2008 IDE remember my preferences? Shaul 2009-07-08T09:33:20Z 2009-08-19T08:26:38Z <p>This is a very petty question that I'm only asking while <a href="http://imgs.xkcd.com/comics/compiling.png" rel="nofollow">compiling</a>... ;)</p> <p>For some reason my VS 2008 IDE doesn't remember my window preferences when I close &amp; reopen - it resets the window widths, locations, appearances etc.</p> <p>Where's the secret switch so that my IDE stays looking the way I want it?</p> http://stackoverflow.com/questions/1284708/possible-to-remove-my-app-from-settings-app 3 Possible to remove my app from settings app? Frank C 2009-08-16T16:36:48Z 2009-08-17T05:04:35Z <p>Previous versions of my app have used the Settings.bundle method to have some user preferences managed in the (external) settings app. I've done away with that now, but I'd like to be able to de-register my application so that old users who upgrade don't have a useless entry in their settings app. Any idea if this is possible? Thanks.</p> http://stackoverflow.com/questions/1167782/userdefaults-in-system-preference-pane-installed-for-multiple-users-in-osx 1 UserDefaults in system preference pane installed for multiple users in OSX... Monobono 2009-07-22T19:48:53Z 2009-08-04T06:44:09Z <p>Hi I have a background-only app that is controlled via a preference pane in the system preferences. To communicate between pref pane and app I use distributed notifications. User defaults are shared via <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSUserDefaults%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSUserDefaults/addSuiteNamed:" rel="nofollow"><code>[NSUserDefaults addSuiteNamed:]</code></a>. This all works out very well. </p> <p>The problem occurs when the user installs the pref pane "for all users", when prompted by the system preference pane. In this case prefs get written to <code>~/Library/Preferences/</code>, same as when installed "for this user only". (I think this is the correct behavior.) However, when the prefpane reads a default key, the prefpane seems to be looking at <code>/Library/Preferences/</code>, not in the user's home directory.</p> <p>To sum it up:</p> <ul> <li>prefs pane installed in: ~/Library/PreferencePanes/<br /> <ul> <li>Defaults written to: ~/Library/Preferences/</li> <li>Defaults read from: ~/Library/Preferences/</li> </ul></li> <li>prefs pane installed in: /Library/PreferencePanes/ <ul> <li>Defaults written to: ~/Library/Preferences/</li> <li>Defaults read from: /Library/Preferences/</li> </ul></li> </ul> <p>Could anyone shed some light as to where things go wrong?</p> <p>Thanks, Kolja</p> http://stackoverflow.com/questions/1203216/cocoa-binding-to-an-array-of-nsstrings-which-are-stored-in-the-applications-pre 0 Cocoa: Binding to an array of NSStrings which are stored in the application's preferences Chronor 2009-07-29T21:37:31Z 2009-07-30T02:25:51Z <p>OK, I'm feeling really REALLY stupid for asking this question, but I've managed to stump myself so hard that I doubt I have the proper detachment to figure out the answer for myself any more. My apologies in advance...</p> <p>I have been playing around with bindings for a while now and LOVE them. That and the KVO/KVC conventions built into Objective-C 2.0 have allowed me to dramatically slim down my applications while increasing their reliability, flexibility, etc. I say this for no other reason than to illustrate that I am at least moderately comfortable with bindings in general. That being said, my problem is this:</p> <p>I have an application where I'd like to store an editable set of keywords by way of the preferences controller. Easy, right? Unfortunately, for the life of me I can't figure out how to do it. I set up an array controller and point it to the shared preferences object and give it a keypath for the array. The problem is that the objects being stored in the array are NSStrings and I don't see how NSStrings can be KVC-compliant for this kind of operation due to the lack of any "stringValue/setStringValue" methods. Without those, what keypath do I use in the NSTableView I have set up to facilitate manipulation of that list?</p> <p>Also, since the shared preferences object is not one that I own, I'm not sure how to go about setting up a new array to represent an unedited/newly installed state. (Registering them as defaults doesn't seem to be working for me.)</p> <p>So to reiterate my questions more succinctly: How can you bind a table view to an array of NSStrings and how can you store said array in an application's preferences?</p> <p>Any pointers or advice that you can offer would be VERY much appreciated. The headaches I'm getting from this are starting to get the better of me. :)</p> http://stackoverflow.com/questions/1192124/preference-pane 0 Preference Pane cduce2411 2009-07-28T05:49:24Z 2009-07-28T12:41:13Z <p>How do I create a preference pane for my app on Mac. Also, how do I make a preferences section for my app in the iPhone? Thanks for reading.</p> http://stackoverflow.com/questions/1166598/declaring-id-for-asp-net-controls 1 Declaring ID for ASP.NET Controls Chris Dwyer 2009-07-22T16:44:15Z 2009-07-22T17:04:08Z <p>If you don't provide an ID for your declared controls in ASPX files, I know that VS will automatically generate one for you. Should I always give the controls a descriptive ID even when I won't be accessing them from the code-behind? </p> http://stackoverflow.com/questions/1079711/best-approach-to-save-user-preferences 4 Best approach to save user preferences? satynos 2009-07-03T14:53:36Z 2009-07-03T17:02:52Z <p>I have seen two different approaches in saving user preferences. </p> <p><strong>APPROACH 1:</strong> Serializing them and saving in one of the column of USERS table</p> <p><strong>APPROACH 2:</strong> Creating a separate table PREFERENCES and make a has_many association from USERS to PREFERENCES.</p> <p>Which one of the above two approaches would you prefer and what are the pros and cons of each over other?</p>