s/Window/xcb_window_t/g in workspace.h

icc-effect-5.14.5
Martin Gräßlin 2013-04-30 15:41:59 +02:00
parent ffc0e62f9d
commit 28d7b3c563
4 changed files with 14 additions and 14 deletions

View File

@ -365,7 +365,7 @@ bool Workspace::workspaceEvent(QEvent* e)
// Some events don't have the actual window which caused the event
// as e->xany.window (e.g. ConfigureRequest), but as some other
// field in the XEvent structure.
Window Workspace::findSpecialEventWindow(XEvent* e)
xcb_window_t Workspace::findSpecialEventWindow(XEvent *e)
{
switch(e->type) {
case CreateNotify:

View File

@ -323,7 +323,7 @@ void Group::lostLeader()
// Workspace
//***************************************
Group* Workspace::findGroup(Window leader) const
Group* Workspace::findGroup(xcb_window_t leader) const
{
assert(leader != None);
for (GroupList::ConstIterator it = groups.constBegin();
@ -419,7 +419,7 @@ void Workspace::updateOnAllDesktopsOfTransients(Client* c)
}
// A new window has been mapped. Check if it's not a mainwindow for some already existing transient window.
void Workspace::checkTransients(Window w)
void Workspace::checkTransients(xcb_window_t w)
{
TRANSIENCY_CHECK(NULL);
for (ClientList::ConstIterator it = clients.constBegin();

View File

@ -519,7 +519,7 @@ Workspace::~Workspace()
_self = 0;
}
Client* Workspace::createClient(Window w, bool is_mapped)
Client* Workspace::createClient(xcb_window_t w, bool is_mapped)
{
StackingUpdatesBlocker blocker(this);
Client* c = new Client(this);
@ -540,7 +540,7 @@ Client* Workspace::createClient(Window w, bool is_mapped)
return c;
}
Unmanaged* Workspace::createUnmanaged(Window w)
Unmanaged* Workspace::createUnmanaged(xcb_window_t w)
{
if (m_compositor && m_compositor->checkForOverlayWindow(w))
return NULL;
@ -1331,7 +1331,7 @@ void Workspace::sendClientToScreen(Client* c, int screen)
sendClientToScreen(*it, screen);
}
void Workspace::sendPingToWindow(Window window, Time timestamp)
void Workspace::sendPingToWindow(xcb_window_t window, xcb_timestamp_t timestamp)
{
rootInfo->sendPing(window, timestamp);
}
@ -1367,7 +1367,7 @@ void Workspace::cancelDelayFocus()
delayFocusTimer = 0;
}
bool Workspace::checkStartupNotification(Window w, KStartupInfoId& id, KStartupInfoData& data)
bool Workspace::checkStartupNotification(xcb_window_t w, KStartupInfoId &id, KStartupInfoData &data)
{
return startup->checkStartup(w, id, data) == KStartupInfo::Match;
}

View File

@ -231,7 +231,7 @@ public:
void updateMinimizedOfTransients(Client*);
void updateOnAllDesktopsOfTransients(Client*);
void checkTransients(Window w);
void checkTransients(xcb_window_t w);
void performWindowOperation(Client* c, WindowOperation op);
@ -252,12 +252,12 @@ public:
void resetShowingDesktop(bool keep_hidden);
bool showingDesktop() const;
void sendPingToWindow(Window w, Time timestamp); // Called from Client::pingWindow()
void sendPingToWindow(xcb_window_t w, xcb_timestamp_t timestamp); // Called from Client::pingWindow()
void sendTakeActivity(Client* c, Time timestamp, long flags); // Called from Client::takeActivity()
void removeClient(Client*); // Only called from Client::destroyClient() or Client::releaseWindow()
void setActiveClient(Client*);
Group* findGroup(Window leader) const;
Group* findGroup(xcb_window_t leader) const;
void addGroup(Group* group);
void removeGroup(Group* group);
Group* findClientLeaderGroup(const Client* c) const;
@ -266,7 +266,7 @@ public:
void removeDeleted(Deleted*);
void addDeleted(Deleted*, Toplevel*);
bool checkStartupNotification(Window w, KStartupInfoId& id, KStartupInfoData& data);
bool checkStartupNotification(xcb_window_t w, KStartupInfoId& id, KStartupInfoData& data);
void focusToNull(); // SELI TODO: Public?
@ -446,12 +446,12 @@ private:
void saveOldScreenSizes();
/// This is the right way to create a new client
Client* createClient(Window w, bool is_mapped);
Client* createClient(xcb_window_t w, bool is_mapped);
void addClient(Client* c);
Unmanaged* createUnmanaged(Window w);
Unmanaged* createUnmanaged(xcb_window_t w);
void addUnmanaged(Unmanaged* c);
Window findSpecialEventWindow(XEvent* e);
xcb_window_t findSpecialEventWindow(XEvent* e);
//---------------------------------------------------------------------