2022-01-31 12:41:47 +00:00
|
|
|
|
""" inline section button """
|
|
|
|
|
|
|
|
|
|
from pyrogram.types import (
|
|
|
|
|
CallbackQuery,
|
|
|
|
|
InlineKeyboardButton,
|
|
|
|
|
InlineKeyboardMarkup,
|
|
|
|
|
Message,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def stream_markup(user_id):
|
|
|
|
|
buttons = [
|
|
|
|
|
[
|
2022-02-07 15:06:00 +00:00
|
|
|
|
InlineKeyboardButton(text="• Mᴇɴᴜ", callback_data=f'stream_menu_panel | {user_id}'),
|
2022-02-08 00:01:14 +00:00
|
|
|
|
InlineKeyboardButton(text="• Cʟᴏsᴇ", callback_data=f'set_close'),
|
2022-01-31 12:41:47 +00:00
|
|
|
|
],
|
|
|
|
|
]
|
|
|
|
|
return buttons
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def menu_markup(user_id):
|
|
|
|
|
buttons = [
|
|
|
|
|
[
|
2022-02-07 15:06:00 +00:00
|
|
|
|
InlineKeyboardButton(text="⏹", callback_data=f'set_stop | {user_id}'),
|
|
|
|
|
InlineKeyboardButton(text="⏸", callback_data=f'set_pause | {user_id}'),
|
|
|
|
|
InlineKeyboardButton(text="▶️", callback_data=f'set_resume | {user_id}'),
|
2022-01-31 12:41:47 +00:00
|
|
|
|
],
|
|
|
|
|
[
|
2022-02-07 15:06:00 +00:00
|
|
|
|
InlineKeyboardButton(text="🔇", callback_data=f'set_mute | {user_id}'),
|
|
|
|
|
InlineKeyboardButton(text="🔊", callback_data=f'set_unmute | {user_id}'),
|
2022-01-31 12:41:47 +00:00
|
|
|
|
],
|
|
|
|
|
[
|
2022-02-10 02:21:02 +00:00
|
|
|
|
InlineKeyboardButton(text="🔙 Go Back", callback_data='stream_home_panel'),
|
2022-01-31 12:41:47 +00:00
|
|
|
|
]
|
|
|
|
|
]
|
|
|
|
|
return buttons
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
close_mark = InlineKeyboardMarkup(
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
InlineKeyboardButton(
|
2022-02-08 00:01:14 +00:00
|
|
|
|
"🗑 Close", callback_data="set_close"
|
2022-01-31 12:41:47 +00:00
|
|
|
|
)
|
|
|
|
|
]
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
back_mark = InlineKeyboardMarkup(
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
InlineKeyboardButton(
|
2022-02-07 15:06:00 +00:00
|
|
|
|
"🔙 Go Back", callback_data="stream_menu_panel"
|
2022-01-31 12:41:47 +00:00
|
|
|
|
)
|
|
|
|
|
]
|
|
|
|
|
]
|
|
|
|
|
)
|