Index Bar (status) More...
#include "config.h"
#include <stdbool.h>
#include "mutt/lib.h"
#include "config/lib.h"
#include "core/lib.h"
#include "gui/lib.h"
#include "lib.h"
#include "color/lib.h"
#include "private_data.h"
#include "shared_data.h"
#include "status.h"
Go to the source code of this file.
Data Structures | |
struct | IBarPrivateData |
Data to draw the Index Bar. More... | |
Functions | |
static int | ibar_recalc (struct MuttWindow *win) |
Recalculate the Window data - Implements MuttWindow::recalc() -. | |
static int | ibar_repaint (struct MuttWindow *win) |
Repaint the Window - Implements MuttWindow::repaint() -. | |
static int | ibar_color_observer (struct NotifyCallback *nc) |
Notification that a Color has changed - Implements observer_t -. | |
static int | ibar_config_observer (struct NotifyCallback *nc) |
Notification that a Config Variable has changed - Implements observer_t -. | |
static int | ibar_index_observer (struct NotifyCallback *nc) |
Notification that the Index has changed - Implements observer_t -. | |
static int | ibar_menu_observer (struct NotifyCallback *nc) |
Notification that a Menu has changed - Implements observer_t -. | |
static int | ibar_window_observer (struct NotifyCallback *nc) |
Notification that a Window has changed - Implements observer_t -. | |
static void | ibar_data_free (struct MuttWindow *win, void **ptr) |
Free the private data - Implements MuttWindow::wdata_free() -. | |
static struct IBarPrivateData * | ibar_data_new (struct IndexSharedData *shared, struct IndexPrivateData *priv) |
Create the private data for the Index Bar (status) | |
struct MuttWindow * | ibar_new (struct MuttWindow *parent, struct IndexSharedData *shared, struct IndexPrivateData *priv) |
Create the Index Bar (status) | |
Index Bar (status)
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file ibar.c.
|
static |
Create the private data for the Index Bar (status)
shared | Shared Index data |
priv | Private Index data |
ptr | New IBarPrivateData |
Definition at line 319 of file ibar.c.
struct MuttWindow * ibar_new | ( | struct MuttWindow * | parent, |
struct IndexSharedData * | shared, | ||
struct IndexPrivateData * | priv | ||
) |
Create the Index Bar (status)
parent | Parent Window |
shared | Shared Index data |
priv | Private Index data |
ptr | New Index Bar |
Definition at line 337 of file ibar.c.