-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditCompany.h
executable file
·55 lines (41 loc) · 1.43 KB
/
EditCompany.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// EditCompany.h
// TradeShowInfo
//
// Created by Elon on 3/26/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SectionHeaderView.h"
#import "TwoTableViewCell.h"
#import "NotePhotoHomePageCell.h"
#import "Baseview.h"
#import "CompanyDao.h"
#import "EditNotesField.h"
#import "/usr/include/sqlite3.h"
#define databaseFileName @"data.sqlite3"
@interface EditCompany : Baseview <SectionHeaderViewDelegate,ImportanceCellClickedDelegate>{
TwoTableViewCell *TTVC;
SectionHeaderView *headerViewOfContacts;
SectionHeaderView *headerViewOfToDos;
NotePhotoHomePageCell *NPHPC;
sqlite3 *database;
UIToolbar *keyboardToolbar;
BOOL keyboardToolbarShouldHide;
CompanyDao *companyDao;
EditNotesField *newEditNotesField;
}
- (void)dispearAllTextfield;
@property (nonatomic,retain) TwoTableViewCell *TTVC;
@property(nonatomic,retain) SectionHeaderView *headerViewOfContacts;
@property(nonatomic,assign) BOOL openFlagOfContacts;
@property(nonatomic,retain) SectionHeaderView *headerViewOfToDos;
@property(nonatomic,retain) NotePhotoHomePageCell *NPHPC;
//for detail view
@property (nonatomic,retain) NSString *comName;
@property (nonatomic,retain) NSString *boothNum;
@property (nonatomic,retain) NSString *importance;
@property (nonatomic,retain) CompanyDao *companyDao;
@property (nonatomic,retain) EditNotesField *newEditNotesField;
@property (nonatomic, retain) UIToolbar *keyboardToolbar;
@end