kill the typedef

This commit is contained in:
Dana Jansens 2003-02-17 12:46:32 +00:00
parent d2adccbe28
commit 361303715b
2 changed files with 18 additions and 19 deletions

View file

@ -254,7 +254,7 @@ void Screen::updateStruts()
for (sit = _struts.begin(); sit != send; ++sit) for (sit = _struts.begin(); sit != send; ++sit)
sit->left = sit->right = sit->top = sit->bottom = 0; sit->left = sit->right = sit->top = sit->bottom = 0;
ClientList::const_iterator it, end = clients.end(); std::list<Client*>::const_iterator it, end = clients.end();
for (it = clients.begin(); it != end; ++it) { for (it = clients.begin(); it != end; ++it) {
if ((*it)->iconic()) continue; // these dont count in the strut if ((*it)->iconic()) continue; // these dont count in the strut
@ -318,7 +318,7 @@ void Screen::changeWorkArea()
*/ */
if (old_area != _area[i]) { if (old_area != _area[i]) {
// the area has changed, adjust all the maximized windows // the area has changed, adjust all the maximized windows
ClientList::iterator it, end = clients.end(); std::list<Client*>::iterator it, end = clients.end();
for (it = clients.begin(); it != end; ++it) for (it = clients.begin(); it != end; ++it)
if (i < _num_desktops) { if (i < _num_desktops) {
if ((*it)->desktop() == i) if ((*it)->desktop() == i)
@ -442,8 +442,8 @@ void Screen::changeClientList()
windows = new Window[size]; windows = new Window[size];
win_it = windows; win_it = windows;
ClientList::const_iterator it = clients.begin(); std::list<Client*>::const_iterator it = clients.begin();
const ClientList::const_iterator end = clients.end(); const std::list<Client*>::const_iterator end = clients.end();
for (; it != end; ++it, ++win_it) for (; it != end; ++it, ++win_it)
*win_it = (*it)->window(); *win_it = (*it)->window();
} else } else
@ -473,8 +473,8 @@ void Screen::changeStackingList()
windows = new Window[size]; windows = new Window[size];
win_it = windows; win_it = windows;
ClientList::const_reverse_iterator it = _stacking.rbegin(); std::list<Client*>::const_reverse_iterator it = _stacking.rbegin();
const ClientList::const_reverse_iterator end = _stacking.rend(); const std::list<Client*>::const_reverse_iterator end = _stacking.rend();
for (; it != end; ++it, ++win_it) for (; it != end; ++it, ++win_it)
*win_it = (*it)->window(); *win_it = (*it)->window();
} else } else
@ -676,8 +676,8 @@ void Screen::lowerWindow(Client *client)
assert(!_stacking.empty()); // this would be bad assert(!_stacking.empty()); // this would be bad
ClientList::iterator it = --_stacking.end(); std::list<Client*>::iterator it = --_stacking.end();
const ClientList::iterator end = _stacking.begin(); const std::list<Client*>::iterator end = _stacking.begin();
if (client->modal() && client->transientFor()) { if (client->modal() && client->transientFor()) {
// don't let a modal window lower below its transient_for // don't let a modal window lower below its transient_for
@ -685,7 +685,8 @@ void Screen::lowerWindow(Client *client)
assert(it != _stacking.end()); assert(it != _stacking.end());
wins[0] = (it == _stacking.begin() ? _focuswindow : wins[0] = (it == _stacking.begin() ? _focuswindow :
((*(--ClientList::const_iterator(it)))->frame->window())); ((*(--std::list<Client*>::const_iterator(it)))->
frame->window()));
wins[1] = client->frame->window(); wins[1] = client->frame->window();
if (wins[0] == wins[1]) return; // already right above the window if (wins[0] == wins[1]) return; // already right above the window
@ -719,8 +720,8 @@ void Screen::raiseWindow(Client *client)
// remove the client before looking so we can't run into ourselves // remove the client before looking so we can't run into ourselves
_stacking.remove(client); _stacking.remove(client);
ClientList::iterator it = _stacking.begin(); std::list<Client*>::iterator it = _stacking.begin();
const ClientList::iterator end = _stacking.end(); const std::list<Client*>::iterator end = _stacking.end();
// the stacking list is from highest to lowest // the stacking list is from highest to lowest
for (; it != end && ((*it)->layer() > client->layer() || m == *it); ++it); for (; it != end && ((*it)->layer() > client->layer() || m == *it); ++it);
@ -730,7 +731,7 @@ void Screen::raiseWindow(Client *client)
otherwise, we want to stack under the previous window in the stack. otherwise, we want to stack under the previous window in the stack.
*/ */
wins[0] = (it == _stacking.begin() ? _focuswindow : wins[0] = (it == _stacking.begin() ? _focuswindow :
((*(--ClientList::const_iterator(it)))->frame->window())); ((*(--std::list<Client*>::const_iterator(it)))->frame->window()));
wins[1] = client->frame->window(); wins[1] = client->frame->window();
_stacking.insert(it, client); _stacking.insert(it, client);
@ -755,7 +756,7 @@ void Screen::changeDesktop(unsigned int desktop)
if (old == _desktop) return; if (old == _desktop) return;
ClientList::iterator it, end = clients.end(); std::list<Client*>::iterator it, end = clients.end();
for (it = clients.begin(); it != end; ++it) for (it = clients.begin(); it != end; ++it)
(*it)->showhide(); (*it)->showhide();
@ -771,7 +772,7 @@ void Screen::changeNumDesktops(unsigned int num)
if (!(num > 0)) return; if (!(num > 0)) return;
// move windows on desktops that will no longer exist! // move windows on desktops that will no longer exist!
ClientList::iterator it, end = clients.end(); std::list<Client*>::iterator it, end = clients.end();
for (it = clients.begin(); it != end; ++it) { for (it = clients.begin(); it != end; ++it) {
unsigned int d = (*it)->desktop(); unsigned int d = (*it)->desktop();
if (d >= num && d != 0xffffffff) { if (d >= num && d != 0xffffffff) {
@ -874,7 +875,7 @@ void Screen::showDesktop(bool show)
_showing_desktop = show; _showing_desktop = show;
ClientList::iterator it, end = clients.end(); std::list<Client*>::iterator it, end = clients.end();
for (it = clients.begin(); it != end; ++it) { for (it = clients.begin(); it != end; ++it) {
if ((*it)->type() == Client::Type_Desktop) { if ((*it)->type() == Client::Type_Desktop) {
if (show) if (show)

View file

@ -54,10 +54,8 @@ public:
ButtonPressMask | ButtonPressMask |
ButtonReleaseMask; ButtonReleaseMask;
//! Holds a list of Clients
typedef std::list<Client*> ClientList;
//! All managed clients on the screen (in order of being mapped) //! All managed clients on the screen (in order of being mapped)
ClientList clients; std::list<Client*> clients;
private: private:
//! Was %Openbox able to manage the screen? //! Was %Openbox able to manage the screen?
@ -88,7 +86,7 @@ private:
Window _supportwindow; Window _supportwindow;
//! A list of all managed clients on the screen, in their stacking order //! A list of all managed clients on the screen, in their stacking order
ClientList _stacking; std::list<Client*> _stacking;
//! The desktop currently being displayed //! The desktop currently being displayed
unsigned int _desktop; unsigned int _desktop;