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

« back to all changes in this revision

Viewing changes to TerminalParser_LinuxPrefs.h

  • Committer: Bazaar Package Importer
  • Author(s): Gürkan Sengün
  • Date: 2005-11-25 15:35:20 UTC
  • Revision ID: james.westby@ubuntu.com-20051125153520-98yiw1zatalh7t1j
Tags: upstream-0.9.4+cvs20051125
Import upstream version 0.9.4+cvs20051125

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
copyright 2002 Alexander Malmberg <alexander@malmberg.org>
 
3
 
 
4
This file is a part of Terminal.app. Terminal.app is free software; you
 
5
can redistribute it and/or modify it under the terms of the GNU General
 
6
Public License as published by the Free Software Foundation; version 2
 
7
of the License. See COPYING or main.m for more information.
 
8
*/
 
9
 
 
10
#ifndef TerminalParser_LinuxPrefs_h
 
11
#define TerminalParser_LinuxPrefs_h
 
12
 
 
13
#include "PrefBox.h"
 
14
 
 
15
 
 
16
@class GSVbox,NSPopUpButton;
 
17
 
 
18
extern NSString *TerminalParser_LinuxPrefsDidChangeNotification;
 
19
 
 
20
@interface TerminalParser_LinuxPrefs : NSObject <PrefBox>
 
21
{
 
22
        GSVbox *top;
 
23
        NSPopUpButton *pb_characterSet;
 
24
}
 
25
 
 
26
+(const char *) characterSet;
 
27
 
 
28
@end
 
29
 
 
30
#endif