Fixed two bugs:
* FrameReceived() updated the bitmaps, but did not invalidate the view, causing B_FULL_UPDATE_ON_RESIZE to show an outdated icon. * fInDeskbar was not initialized in case the archive constructor was used. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20666 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -24,6 +24,7 @@
|
|||||||
#include <MessageRunner.h>
|
#include <MessageRunner.h>
|
||||||
#include <PopUpMenu.h>
|
#include <PopUpMenu.h>
|
||||||
#include <Resources.h>
|
#include <Resources.h>
|
||||||
|
#include <Roster.h>
|
||||||
#include <String.h>
|
#include <String.h>
|
||||||
#include <TextView.h>
|
#include <TextView.h>
|
||||||
|
|
||||||
@@ -68,7 +69,7 @@ const bigtime_t kUpdateInterval = 1000000;
|
|||||||
NetworkStatusView::NetworkStatusView(BRect frame, int32 resizingMode,
|
NetworkStatusView::NetworkStatusView(BRect frame, int32 resizingMode,
|
||||||
bool inDeskbar)
|
bool inDeskbar)
|
||||||
: BView(frame, kDeskbarItemName, resizingMode,
|
: BView(frame, kDeskbarItemName, resizingMode,
|
||||||
B_WILL_DRAW | B_FRAME_EVENTS | B_FULL_UPDATE_ON_RESIZE),
|
B_WILL_DRAW | B_FRAME_EVENTS),
|
||||||
fInDeskbar(inDeskbar),
|
fInDeskbar(inDeskbar),
|
||||||
fStatus(kStatusUnknown)
|
fStatus(kStatusUnknown)
|
||||||
{
|
{
|
||||||
@@ -88,8 +89,14 @@ NetworkStatusView::NetworkStatusView(BRect frame, int32 resizingMode,
|
|||||||
|
|
||||||
|
|
||||||
NetworkStatusView::NetworkStatusView(BMessage* archive)
|
NetworkStatusView::NetworkStatusView(BMessage* archive)
|
||||||
: BView(archive)
|
: BView(archive),
|
||||||
|
fInDeskbar(false)
|
||||||
{
|
{
|
||||||
|
app_info info;
|
||||||
|
if (be_app->GetAppInfo(&info) == B_OK
|
||||||
|
&& !strcasecmp(info.signature, "application/x-vnd.Be-TSKB"))
|
||||||
|
fInDeskbar = true;
|
||||||
|
|
||||||
_Init();
|
_Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -243,6 +250,7 @@ void
|
|||||||
NetworkStatusView::FrameResized(float width, float height)
|
NetworkStatusView::FrameResized(float width, float height)
|
||||||
{
|
{
|
||||||
_UpdateBitmaps();
|
_UpdateBitmaps();
|
||||||
|
Invalidate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user