]> granicus.if.org Git - neomutt/commitdiff
Notmuch: move private data
authorRichard Russon <rich@flatcap.org>
Fri, 19 Oct 2018 10:29:34 +0000 (11:29 +0100)
committerRichard Russon <rich@flatcap.org>
Thu, 25 Oct 2018 20:38:43 +0000 (21:38 +0100)
notmuch/mutt_notmuch.c
notmuch/notmuch_private.h [new file with mode: 0644]

index 51b13244131189290306e61ee04217219486e413..b246bdf98b19361968f3fc2541e069af160b8046 100644 (file)
@@ -53,6 +53,7 @@
 #include <sys/types.h>
 #include <time.h>
 #include <unistd.h>
+#include "notmuch_private.h"
 #include "mutt/mutt.h"
 #include "config/lib.h"
 #include "email/lib.h"
@@ -93,60 +94,6 @@ char *NmUnreadTag; ///< Config: (notmuch) Tag to use for unread messages
    (LIBNOTMUCH_MAJOR_VERSION == (major) &&                                        \
     LIBNOTMUCH_MINOR_VERSION == (minor) && LIBNOTMUCH_MICRO_VERSION >= (micro)))
 
-/**
- * struct NmAccountData - Account-specific Notmuch data - @extends Account
- */
-struct NmAccountData
-{
-  int dummy;
-};
-
-/**
- * enum NmQueryType - Notmuch Query Types
- *
- * Read whole-thread or matching messages only?
- */
-enum NmQueryType
-{
-  NM_QUERY_TYPE_MESGS = 1, /**< Default: Messages only */
-  NM_QUERY_TYPE_THREADS    /**< Whole threads */
-};
-
-/**
- * struct NmEmailData - Notmuch data attached to an Email - @extends Email
- */
-struct NmEmailData
-{
-  char *folder; /**< Location of the Email */
-  char *oldpath;
-  char *virtual_id;       /**< Unique Notmuch Id */
-  enum MailboxType magic; /**< Type of Mailbox the Email is in */
-};
-
-/**
- * struct NmMboxData - Mailbox-specific Notmuch data - @extends Mailbox
- */
-struct NmMboxData
-{
-  notmuch_database_t *db;
-
-  struct Url db_url;   /**< Parsed view url of the Notmuch database */
-  char *db_url_holder; /**< The storage string used by db_url, we keep it
-                        *   to be able to free db_url */
-  char *db_query;      /**< Previous query */
-  int db_limit;        /**< Maximum number of results to return */
-  enum NmQueryType query_type; /**< Messages or Threads */
-
-  struct Progress progress; /**< A progress bar */
-  int oldmsgcount;
-  int ignmsgcount; /**< Ignored messages */
-
-  bool noprogress : 1;     /**< Don't show the progress bar */
-  bool longrun : 1;        /**< A long-lived action is in progress */
-  bool trans : 1;          /**< Atomic transaction in progress */
-  bool progress_ready : 1; /**< A progress bar has been initialised */
-};
-
 /**
  * nm_adata_new - Allocate and initialise a new NmAccountData structure
  * @retval ptr New NmAccountData
diff --git a/notmuch/notmuch_private.h b/notmuch/notmuch_private.h
new file mode 100644 (file)
index 0000000..938ed80
--- /dev/null
@@ -0,0 +1,84 @@
+/**
+ * @file
+ * Notmuch private types
+ *
+ * @authors
+ * Copyright (C) 2018 Richard Russon <rich@flatcap.org>
+ *
+ * @copyright
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 2 of the License, or (at your option) any later
+ * version.
+ *
+ * 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/>.
+ */
+
+#include <notmuch.h>
+#include "email/lib.h"
+#include "progress.h"
+
+#ifndef MUTT_NOTMUCH_NOTMUCH_PRIVATE_H
+#define MUTT_NOTMUCH_NOTMUCH_PRIVATE_H
+
+/**
+ * struct NmAccountData - Account-specific Notmuch data - @extends Account
+ */
+struct NmAccountData
+{
+  int dummy;
+};
+
+/**
+ * enum NmQueryType - Notmuch Query Types
+ *
+ * Read whole-thread or matching messages only?
+ */
+enum NmQueryType
+{
+  NM_QUERY_TYPE_MESGS = 1, /**< Default: Messages only */
+  NM_QUERY_TYPE_THREADS    /**< Whole threads */
+};
+
+/**
+ * struct NmMboxData - Mailbox-specific Notmuch data - @extends Mailbox
+ */
+struct NmMboxData
+{
+  notmuch_database_t *db;
+
+  struct Url db_url;   /**< Parsed view url of the Notmuch database */
+  char *db_url_holder; /**< The storage string used by db_url, we keep it
+                        *   to be able to free db_url */
+  char *db_query;      /**< Previous query */
+  int db_limit;        /**< Maximum number of results to return */
+  enum NmQueryType query_type; /**< Messages or Threads */
+
+  struct Progress progress; /**< A progress bar */
+  int oldmsgcount;
+  int ignmsgcount; /**< Ignored messages */
+
+  bool noprogress : 1;     /**< Don't show the progress bar */
+  bool longrun : 1;        /**< A long-lived action is in progress */
+  bool trans : 1;          /**< Atomic transaction in progress */
+  bool progress_ready : 1; /**< A progress bar has been initialised */
+};
+
+/**
+ * struct NmEmailData - Notmuch data attached to an Email - @extends Email
+ */
+struct NmEmailData
+{
+  char *folder; /**< Location of the Email */
+  char *oldpath;
+  char *virtual_id;       /**< Unique Notmuch Id */
+  enum MailboxType magic; /**< Type of Mailbox the Email is in */
+};
+
+#endif /* MUTT_NOTMUCH_NOTMUCH_PRIVATE_H */