Pager Window. More...
#include "config.h"
#include <stdbool.h>
#include <stddef.h>
#include <sys/stat.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 "index/lib.h"
#include "display.h"
#include "private_data.h"
Go to the source code of this file.
Functions | |
static int | config_pager_index_lines (struct MuttWindow *win) |
React to changes to $pager_index_lines. | |
static int | pager_recalc (struct MuttWindow *win) |
Recalculate the Pager display - Implements MuttWindow::recalc() -. | |
static int | pager_repaint (struct MuttWindow *win) |
Repaint the Pager display - Implements MuttWindow::repaint() -. | |
static int | pager_color_observer (struct NotifyCallback *nc) |
Notification that a Color has changed - Implements observer_t -. | |
static int | pager_config_observer (struct NotifyCallback *nc) |
Notification that a Config Variable has changed - Implements observer_t -. | |
static int | pager_global_observer (struct NotifyCallback *nc) |
Notification that a Global Event occurred - Implements observer_t -. | |
static int | pager_index_observer (struct NotifyCallback *nc) |
Notification that the Index has changed - Implements observer_t -. | |
static int | pager_pager_observer (struct NotifyCallback *nc) |
Notification that the Pager has changed - Implements observer_t -. | |
static int | pager_window_observer (struct NotifyCallback *nc) |
Notification that a Window has changed - Implements observer_t -. | |
struct MuttWindow * | pager_window_new (struct IndexSharedData *shared, struct PagerPrivateData *priv) |
Create a new Pager Window (list of Emails) | |
Pager Window.
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 pager.c.
|
static |
React to changes to $pager_index_lines.
win | Pager Window |
0 | Successfully handled |
-1 | Error |
Definition at line 83 of file pager.c.
struct MuttWindow * pager_window_new | ( | struct IndexSharedData * | shared, |
struct PagerPrivateData * | priv | ||
) |
Create a new Pager Window (list of Emails)
shared | Shared Index Data |
priv | Private Pager Data |
ptr | New Window |
Definition at line 418 of file pager.c.