mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 07:00:37 +00:00
Add print panels to theme.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@38318 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c238b7c774
commit
e53b5e2e46
6 changed files with 86 additions and 12 deletions
|
@ -35,6 +35,7 @@
|
|||
#import <Foundation/NSUserDefaults.h>
|
||||
#import "AppKit/NSPanel.h"
|
||||
#import "GNUstepGUI/GSPrinting.h"
|
||||
#import "GNUstepGUI/GSTheme.h"
|
||||
|
||||
static NSBundle *printingBundle = nil;
|
||||
|
||||
|
@ -227,34 +228,32 @@ static NSBundle *printingBundle = nil;
|
|||
|
||||
+(Class) pageLayoutClass
|
||||
{
|
||||
return Nil;
|
||||
return [[GSTheme theme] pageLayoutClass];
|
||||
}
|
||||
|
||||
+(Class) printInfoClass
|
||||
{
|
||||
return Nil;
|
||||
return Nil;
|
||||
}
|
||||
|
||||
|
||||
+(Class) printOperationClass
|
||||
{
|
||||
return Nil;
|
||||
return Nil;
|
||||
}
|
||||
|
||||
+(Class) printPanelClass
|
||||
{
|
||||
return Nil;
|
||||
return [[GSTheme theme] printPanelClass];
|
||||
}
|
||||
|
||||
|
||||
+(Class) printerClass
|
||||
{
|
||||
return Nil;
|
||||
return Nil;
|
||||
}
|
||||
|
||||
+(Class) gsPrintOperationClass
|
||||
{
|
||||
return Nil;
|
||||
return Nil;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue