From 1c4e999ebe7d4979cd1a0a6da9168238b05a4c98 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Sat, 22 Nov 2025 17:57:17 +0900 Subject: [PATCH] format --- CMakeLists.txt | 1 + mauplay/CMakeLists.txt | 10 ++++++++++ mauplay/main.c | 3 +++ mauplay/mauplay.h | 19 +++++++++++++++++++ mbiff/mail.c | 22 +++++++++++----------- mbiff/main.c | 40 ++++++++++++++++++++-------------------- mbiff/mbiff.h | 2 +- 7 files changed, 65 insertions(+), 32 deletions(-) create mode 100644 mauplay/CMakeLists.txt create mode 100644 mauplay/main.c create mode 100644 mauplay/mauplay.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 9dc9784..00bd25c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,3 +4,4 @@ project( ) add_subdirectory(mbiff) +add_subdirectory(mauplay) diff --git a/mauplay/CMakeLists.txt b/mauplay/CMakeLists.txt new file mode 100644 index 0000000..8207d7d --- /dev/null +++ b/mauplay/CMakeLists.txt @@ -0,0 +1,10 @@ +include(MDEBase) +setup_project(mauplay ${CMAKE_INSTALL_BINDIR}) + +target_link_libraries( + mauplay + PRIVATE + MDEAudio +) + +find_package(PkgConfig) diff --git a/mauplay/main.c b/mauplay/main.c new file mode 100644 index 0000000..19482f0 --- /dev/null +++ b/mauplay/main.c @@ -0,0 +1,3 @@ +#include "mauplay.h" + +int main() {} diff --git a/mauplay/mauplay.h b/mauplay/mauplay.h new file mode 100644 index 0000000..5f3a371 --- /dev/null +++ b/mauplay/mauplay.h @@ -0,0 +1,19 @@ +#ifndef __MAUPLAY_H__ +#define __MAUPLAY_H__ + +#include "config.h" + +/* Milsko */ +#include +#include + +/* External */ + +/* Standard */ +#include +#include +#include +#include +#include + +#endif diff --git a/mbiff/mail.c b/mbiff/mail.c index 7479bd5..784a05a 100644 --- a/mbiff/mail.c +++ b/mbiff/mail.c @@ -1,33 +1,33 @@ #include "mbiff.h" static time_t last = 0; -static char* mailpath; +static char* mailpath; -void init_mail(void){ - struct stat s; +void init_mail(void) { + struct stat s; struct passwd* pwd = getpwuid(getuid()); - if(getenv("MAIL") != NULL){ + if(getenv("MAIL") != NULL) { mailpath = malloc(strlen(getenv("MAIL")) + strlen(pwd->pw_name) + 1); sprintf(mailpath, getenv("MAIL"), pwd->pw_name); - }else{ + } else { mailpath = malloc(strlen(_PATH_MAILDIR) + 1 + strlen(pwd->pw_name) + 1); sprintf(mailpath, _PATH_MAILDIR "/%s", pwd->pw_name); } - if(stat(mailpath, &s) == 0){ + if(stat(mailpath, &s) == 0) { last = s.st_mtime; } } -void check_mail(void){ +void check_mail(void) { struct stat s; s.st_mtime = 0; - if(stat(mailpath, &s) == 0 || last != 0){ - if((s.st_mtime == 0 && last != 0) || s.st_mtime > last){ + if(stat(mailpath, &s) == 0 || last != 0) { + if((s.st_mtime == 0 && last != 0) || s.st_mtime > last) { MwVaApply(image, - MwNpixmap, full, - NULL); + MwNpixmap, full, + NULL); } last = s.st_mtime; diff --git a/mbiff/main.c b/mbiff/main.c index 4c9dfda..2dbb656 100644 --- a/mbiff/main.c +++ b/mbiff/main.c @@ -3,47 +3,47 @@ #include "mailempty.xpm" #include "mailfull.xpm" -MwWidget window, image, mail; +MwWidget window, image, mail; MwLLPixmap empty, full; static int waiting = 0; -static void resize(MwWidget handle, void* user, void* client){ - int w = MwGetInteger(handle, MwNwidth); - int h = MwGetInteger(handle, MwNheight); +static void resize(MwWidget handle, void* user, void* client) { + int w = MwGetInteger(handle, MwNwidth); + int h = MwGetInteger(handle, MwNheight); int iw = w < h ? w : h; (void)user; (void)client; MwVaApply(image, - MwNx, (w - iw) / 2, - MwNy, (h - iw) / 2, - MwNwidth, iw, - MwNheight, iw, - NULL); + MwNx, (w - iw) / 2, + MwNy, (h - iw) / 2, + MwNwidth, iw, + MwNheight, iw, + NULL); } -static void tick(MwWidget handle, void* user, void* client){ +static void tick(MwWidget handle, void* user, void* client) { (void)handle; (void)user; (void)client; waiting += MwWaitMS; - if(waiting >= 1000){ + if(waiting >= 1000) { check_mail(); waiting = 0; } } -static void mouseUp(MwWidget handle, void* user, void* client){ +static void mouseUp(MwWidget handle, void* user, void* client) { (void)handle; (void)user; (void)client; MwVaApply(image, - MwNpixmap, empty, - NULL); + MwNpixmap, empty, + NULL); } int main() { @@ -52,12 +52,12 @@ int main() { MwLibraryInit(); window = MwVaCreateWidget(MwWindowClass, "main", NULL, MwDEFAULT, MwDEFAULT, 128, 128, - MwNtitle, "mbiff", - NULL); + MwNtitle, "mbiff", + NULL); empty = MwLoadImage(window, DATADIR "/mde/icons/128x128/mailempty.png"); - full = MwLoadImage(window, DATADIR "/mde/icons/128x128/mailfull.png"); - mail = MwLoadImage(window, DATADIR "/mde/icons/128x128/mail.png"); + full = MwLoadImage(window, DATADIR "/mde/icons/128x128/mailfull.png"); + mail = MwLoadImage(window, DATADIR "/mde/icons/128x128/mail.png"); if(empty == NULL) empty = MwLoadXPM(window, mailempty); if(full == NULL) full = MwLoadXPM(window, mailfull); if(mail == NULL) mail = MwLoadXPM(window, mailempty); @@ -65,8 +65,8 @@ int main() { MwVaApply(window, MwNiconPixmap, mail, NULL); image = MwVaCreateWidget(MwImageClass, "image", window, 0, 0, 128, 128, - MwNpixmap, empty, - NULL); + MwNpixmap, empty, + NULL); MwAddUserHandler(image, MwNmouseUpHandler, mouseUp, NULL); MwAddUserHandler(window, MwNtickHandler, tick, NULL); diff --git a/mbiff/mbiff.h b/mbiff/mbiff.h index da3393a..4d7d9b6 100644 --- a/mbiff/mbiff.h +++ b/mbiff/mbiff.h @@ -25,7 +25,7 @@ #endif /* main.c */ -extern MwWidget window, image; +extern MwWidget window, image; extern MwLLPixmap empty, full; /* mail.c */