1 //
2 //  PRCBriCon.h
3 //  PRICE
4 //
5 //  Created by Riccardo Mottola on Thu Mar 3 2005.
6 //  Copyright (c) 2005-2010 Carduus. All rights reserved.
7 //
8 // This application 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 2 of the License, or (at your option) any later version.
9 // This program 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.
10 
11 #import <AppKit/AppKit.h>
12 
13 #import "PRFilterController.h"
14 
15 
16 @interface PRCBriCon : PRFilterController
17 {
18     IBOutlet NSWindow    *briconWindow;
19     IBOutlet NSStepper   *briStep;
20     IBOutlet NSSlider    *briSlider;
21     IBOutlet NSTextField *briVal;
22     IBOutlet NSStepper   *conStep;
23     IBOutlet NSSlider    *conSlider;
24     IBOutlet NSTextField *conVal;
25 }
26 
27 - (IBAction)briconReset:(id)sender;
28 - (IBAction)changeBri:(id)sender;
29 - (IBAction)changeCon:(id)sender;
30 
31 @end
32 
33