~ubuntu-branches/ubuntu/quantal/terminal.app/quantal

« back to all changes in this revision

Viewing changes to TerminalViewPrefs.h

  • Committer: Package Import Robot
  • Author(s): Yavor Doganov
  • Date: 2012-06-14 13:55:31 UTC
  • mfrom: (4.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20120614135531-xbagikvsm7nmcq25
Tags: 0.9.8-1
* New upstream release:
  + Fixes FTBFS with ld that defaults to --as-needed (Closes: #639040).
* TerminalParser_LinuxPrefs.m:
* TerminalView.m (-initWithFrame:):
* TerminalViewPrefs.m:
* ServicesPrefs.m: Revert all direct modifications.
* debian/control (Maintainer, Uploaders): Make the team maintainer, add
  myself.
  (Section): Change to `gnustep'.
  (Build-Depends): Require debhelper >= 8.  Remove version requirement
  for libgnustep-gui-dev.  Add dpkg-dev (>= 1.16.1~) and imagemagick.
  Drop gnustep-make.
  (Homepage): Point to the new location.
  (Vcs-Git, Vcs-Browser): New fields.
  (Conflicts, Replaces): Remove, no longer needed.
  (Depends): Add ${misc:Depends}.
  (Standards-Version): Claim compliance with 3.9.3 as of this release.
* debian/compat: Bump to 8.
* debian/rules: Get rid of gs_make.  Enable hardening, verbose builds,
  support for `noopt'.
  (d_app): New convenience variable.
  (build-stamp): Convert the app icon in XPM format.
  (clean): Delete the generated icon.
  (install): Replace the deprecated `dh_clean -k' with dh_prep.  Don't
  install lintian overrides.  Install the XPM icon.
  (binary-arch): Remove unnecessary arguments to dh_installman and
  dh_shlibdeps.  Move arch-independent Resources to /usr/share.
* debian/source/format: New file; set format to 3.0 (quilt).
* debian/overrides: Delete.
* debian/prerm: Don't ignore errors.
* debian/preinst:
* debian/watch: New file.
* debian/menu: Add icon.
* debian/Terminal.desktop: Make it valid.  Add Bulgarian translation.
* debian/Terminal.1: Fix errors from man.  Update homepage.
* debian/docs: Delete; duplicated by the manpage.
* debian/copyright: Switch to format 1.0, update copyright years, add
  many copyright holders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
copyright 2002, 2003 Alexander Malmberg <alexander@malmberg.org>
 
3
          2009-2011 GNUstep Application Project (Riccardo Mottola)
3
4
 
4
5
This file is a part of Terminal.app. Terminal.app is free software; you
5
6
can redistribute it and/or modify it under the terms of the GNU General
26
27
        NSMatrix *m_cursorStyle;
27
28
        NSTextField *f_scrollBackLines;
28
29
        NSButton *b_useMultiCellGlyphs;
 
30
        NSButton *b_blackOnWhite;
29
31
 
30
32
        NSTextField *f_cur;
31
33
}
34
36
+(NSFont *) boldTerminalFont;
35
37
 
36
38
+(BOOL) useMultiCellGlyphs;
 
39
+(BOOL) blackOnWhite;
37
40
 
38
41
+(const float *) brightnessForIntensities;
39
42
+(const float *) saturationForIntensities;
70
73
 
71
74
        NSButton *b_commandAsMeta;
72
75
        NSButton *b_doubleEscape;
 
76
        NSButton *b_altIsNotMeta;
73
77
}
74
78
 
75
79
+(BOOL) commandAsMeta;
 
80
+(BOOL) altIsNotMeta;
76
81
+(BOOL) doubleEscape;
77
82
 
78
83
@end