-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from mulot/developpement
Developpement
- Loading branch information
Showing
45 changed files
with
2,320 additions
and
4,880 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// | ||
// PrintView.h | ||
// SubnetCalc | ||
// | ||
// Created by Julien Mulot on 02/02/11. | ||
// Copyright 2011 mulot.net. All rights reserved. | ||
// | ||
|
||
#import <Cocoa/Cocoa.h> | ||
|
||
|
||
@interface PrintView : NSView { | ||
NSTableView *subnetsTable; | ||
long entryPerPage; // how many entry per pages | ||
long pages; //how many pages | ||
float rectHeight; //how much vertical space | ||
} | ||
|
||
-initWithSubnet:(NSTableView *)table printInfo:(NSPrintInfo *)pi; | ||
- (NSRect)rectForSubnet:(int)index; | ||
@end |
Oops, something went wrong.