view scripts/prefs/preferences.m @ 17017:8003a4f013be

Announce new prefdir, preferences functions and add to manual. * NEWS: Add prefdir, preferences to list of new functions for 3.8. * doc/interpreter/gui.txi: Add prefdir, preferences to manual. * scripts/help/__unimplemented__.m: Remove functions from list of unimplemented. * scripts/prefs/prefdir.m: Add @seealso references to docstring. * scripts/prefs/preferences.m: Use prefsfile() instead of creating name. * scripts/prefs/private/prefsfile.m: Use filesep() instead of '/' for Windows users.
author Rik <rik@octave.org>
date Fri, 19 Jul 2013 10:12:43 -0700
parents c50ee84842a9
children 35a565fed4bd
line wrap: on
line source

## Copyright (C) 2013 John Donoghue
##
## This file is part of Octave.
##
## Octave is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or (at
## your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <http://www.gnu.org/licenses/>.

## -*- texinfo -*-
## @deftypefn {Function File} {} preferences 
## Display preferences settings for Octave.
##
## If in GUI mode, display using the preferences dialog, otherwise display
## the preferences with the @code{edit} function.
##
## @seealso{getpref, setpref, addpref, rmpref}
## @end deftypefn

## Author: John Donoghue
## Version: 0.01

function preferences ()
  if (! __octave_link_enabled__ ())
    edit (prefsfile ());
  else
    __octave_link_show_preferences__ ();
  endif
endfunction