~hartmans/ubuntu/trusty/krb5/gss-infinite-loop

« back to all changes in this revision

Viewing changes to src/kim/agent/mac/BadgedImageView.h

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2013-11-10 02:20:12 UTC
  • mfrom: (53.1.3 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131110022012-b8ojkqhcxos55kln
Tags: 1.11.3+dfsg-3ubuntu2
Add alternate dependency on libverto-libevent1 as that's the package
ABI name in ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 2008 Massachusetts Institute of Technology.
3
 
 * All Rights Reserved.
4
 
 *
5
 
 * Export of this software from the United States of America may
6
 
 * require a specific license from the United States Government.
7
 
 * It is the responsibility of any person or organization contemplating
8
 
 * export to obtain such a license before exporting.
9
 
 *
10
 
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
11
 
 * distribute this software and its documentation for any purpose and
12
 
 * without fee is hereby granted, provided that the above copyright
13
 
 * notice appear in all copies and that both that copyright notice and
14
 
 * this permission notice appear in supporting documentation, and that
15
 
 * the name of M.I.T. not be used in advertising or publicity pertaining
16
 
 * to distribution of the software without specific, written prior
17
 
 * permission.  Furthermore if you modify this software you must label
18
 
 * your software as modified software and not distribute it in such a
19
 
 * fashion that it might be confused with the original M.I.T. software.
20
 
 * M.I.T. makes no representations about the suitability of
21
 
 * this software for any purpose.  It is provided "as is" without express
22
 
 * or implied warranty.
23
 
 */
24
 
 
25
 
#import <Cocoa/Cocoa.h>
26
 
 
27
 
 
28
 
@interface BadgedImageView : NSView {
29
 
    NSImage *iconImage;
30
 
    NSImage *badgeImage;
31
 
}
32
 
 
33
 
- (id) initWithFrame: (NSRect) frameRect;
34
 
- (void) dealloc;
35
 
- (void) setBadgeImage: (NSImage *) image;
36
 
- (void) setBadgePath: (NSString *) path;
37
 
- (void) drawRect: (NSRect) rect;
38
 
 
39
 
@end