Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
235b3bcb
Commit
235b3bcb
authored
Aug 20, 2004
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
beos/MessagesWindow*: fixed messages window
parent
8d3cfc4c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
39 deletions
+39
-39
modules/gui/beos/MessagesWindow.cpp
modules/gui/beos/MessagesWindow.cpp
+32
-32
modules/gui/beos/MessagesWindow.h
modules/gui/beos/MessagesWindow.h
+7
-7
No files found.
modules/gui/beos/MessagesWindow.cpp
View file @
235b3bcb
...
...
@@ -38,7 +38,6 @@
*****************************************************************************/
void
MessagesView
::
Pulse
()
{
#if 0
bool
isScrolling
=
false
;
if
(
fScrollBar
->
LockLooper
()
)
{
...
...
@@ -95,14 +94,14 @@ void MessagesView::Pulse()
if
(
LockLooper
()
)
{
oldLength
=
TextLength
();
BString string;
string << p_sub->p_msg[i_start].psz_module
<< " " << psz_module_type << " : "
<< p_sub->p_msg[i_start].psz_msg << "\n";
Insert( TextLength(), string.String(), strlen( string.String() ) );
SetFontAndColor( oldLength, TextLength(), NULL, 0, &color );
Draw( Bounds() );
UnlockLooper();
BString
string
;
string
<<
p_sub
->
p_msg
[
i_start
].
psz_module
<<
" "
<<
psz_module_type
<<
" : "
<<
p_sub
->
p_msg
[
i_start
].
psz_msg
<<
"
\n
"
;
Insert
(
TextLength
(),
string
.
String
(),
strlen
(
string
.
String
()
)
);
SetFontAndColor
(
oldLength
,
TextLength
(),
NULL
,
0
,
&
color
);
Draw
(
Bounds
()
);
UnlockLooper
();
}
}
...
...
@@ -123,37 +122,37 @@ void MessagesView::Pulse()
}
BTextView
::
Pulse
();
#endif
}
/*****************************************************************************
* MessagesWindow::MessagesWindow
*****************************************************************************/
MessagesWindow
::
MessagesWindow
(
intf_thread_t
*
p_intf
,
MessagesWindow
::
MessagesWindow
(
intf_thread_t
*
_
p_intf
,
BRect
frame
,
const
char
*
name
)
:
BWindow
(
frame
,
name
,
B_FLOATING_WINDOW_LOOK
,
B_NORMAL_WINDOW_FEEL
,
B_NOT_ZOOMABLE
)
:
BWindow
(
frame
,
name
,
B_FLOATING_WINDOW_LOOK
,
B_NORMAL_WINDOW_FEEL
,
B_NOT_ZOOMABLE
),
p_intf
(
_p_intf
)
{
this
->
p_intf
=
p_intf
;
SetSizeLimits
(
400
,
2000
,
200
,
2000
);
BRect
rect
,
textRect
;
rect
=
Bounds
();
rect
.
right
-=
B_V_SCROLL_BAR_WIDTH
;
textRect
=
rect
;
textRect
.
InsetBy
(
5
,
5
);
fMessagesView
=
new
MessagesView
(
p_intf
,
rect
,
"messages"
,
textRect
,
B_FOLLOW_ALL
,
B_WILL_DRAW
);
fMessagesView
->
MakeEditable
(
false
);
fMessagesView
->
SetStylable
(
true
);
fScrollView
=
new
BScrollView
(
"scrollview"
,
fMessagesView
,
B_WILL_DRAW
,
B_FOLLOW_ALL
,
false
,
true
);
fMessagesView
->
fScrollBar
=
fScrollView
->
ScrollBar
(
B_VERTICAL
);
AddChild
(
fScrollView
);
p_sub
=
msg_Subscribe
(
p_intf
);
BRect
rect
,
textRect
;
rect
=
Bounds
();
rect
.
right
-=
B_V_SCROLL_BAR_WIDTH
;
textRect
=
rect
;
textRect
.
InsetBy
(
5
,
5
);
fMessagesView
=
new
MessagesView
(
p_sub
,
rect
,
"messages"
,
textRect
,
B_FOLLOW_ALL
,
B_WILL_DRAW
);
fMessagesView
->
MakeEditable
(
false
);
fMessagesView
->
SetStylable
(
true
);
fScrollView
=
new
BScrollView
(
"scrollview"
,
fMessagesView
,
B_WILL_DRAW
,
B_FOLLOW_ALL
,
false
,
true
);
fMessagesView
->
fScrollBar
=
fScrollView
->
ScrollBar
(
B_VERTICAL
);
AddChild
(
fScrollView
);
/* start window thread in hidden state */
Hide
();
Show
();
...
...
@@ -164,6 +163,7 @@ MessagesWindow::MessagesWindow( intf_thread_t * p_intf,
*****************************************************************************/
MessagesWindow
::~
MessagesWindow
()
{
msg_Unsubscribe
(
p_intf
,
p_sub
);
}
/*****************************************************************************
...
...
modules/gui/beos/MessagesWindow.h
View file @
235b3bcb
...
...
@@ -29,19 +29,18 @@
class
MessagesView
:
public
BTextView
{
public:
MessagesView
(
intf_thread_t
*
_p_intf
,
MessagesView
(
msg_subscription_t
*
_p_sub
,
BRect
rect
,
char
*
name
,
BRect
textRect
,
uint32
resizingMode
,
uint32
flags
)
:
BTextView
(
rect
,
name
,
textRect
,
resizingMode
,
flags
)
resizingMode
,
flags
),
p_sub
(
_p_sub
)
{
p_intf
=
_p_intf
;
}
virtual
void
Pulse
();
intf_thread_t
*
p_intf
;
msg_subscription_t
*
p_sub
;
BScrollBar
*
fScrollBar
;
BScrollBar
*
fScrollBar
;
};
class
MessagesWindow
:
public
BWindow
...
...
@@ -55,12 +54,13 @@ class MessagesWindow : public BWindow
void
ReallyQuit
();
intf_thread_t
*
p_intf
;
intf_thread_t
*
p_intf
;
msg_subscription_t
*
p_sub
;
BView
*
fBackgroundView
;
MessagesView
*
fMessagesView
;
BScrollView
*
fScrollView
;
};
#endif
// BEOS_PREFERENCES_WINDOW_H
#endif
// BEOS_PREFERENCES_WINDOW_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment