Ticket #2389: SetTitleDlg.2.h

File SetTitleDlg.2.h, 641 bytes (added by hey68you, 15 years ago)
Line 
1/*
2 * Copyright 2001-2007, Haiku, Inc.
3 * Copyright (c) 2003-4 Kian Duffy <myob@users.sourceforge.net>
4 * Parts Copyright (C) 1998,99 Kazuho Okui and Takashi Murai.
5 * Distributed under the terms of the MIT license.
6 */
7#include <Window.h>
8#include "TermView.h"
9
10class BRect;
11class BMessage;
12
13class TermWindow;
14class TermView;
15
16class SetTitleDlg : public BWindow
17{
18 public:
19
20 SetTitleDlg(BRect frame, TermWindow *termWin);
21 ~SetTitleDlg ();
22
23 private:
24 virtual void Quit (void);
25 void MessageReceived (BMessage *msg);
26
27 TermWindow *fParentWin;
28 TermView *fParentView;
29 BView *fSetTitleView;
30 BTextControl *textCtl;
31};
32